<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TechBytes with Ron Nutter</title>
	<atom:link href="http://www.ronnutter.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ronnutter.com</link>
	<description>Your Cisco and Network Technical Reference site</description>
	<lastBuildDate>Sun, 05 Feb 2012 01:44:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>IPv6 &#8211; Setting up a conenction to a Tunnel Broker (Part 5) Firewall</title>
		<link>http://www.ronnutter.com/ipv6-setting-up-a-conenction-to-a-tunnel-broker-part-5-firewall/</link>
		<comments>http://www.ronnutter.com/ipv6-setting-up-a-conenction-to-a-tunnel-broker-part-5-firewall/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 01:33:06 +0000</pubDate>
		<dc:creator>Ronald Nutter</dc:creator>
				<category><![CDATA[Blog Entries]]></category>
		<category><![CDATA[IPv6]]></category>

		<guid isPermaLink="false">http://www.ronnutter.com/?p=821</guid>
		<description><![CDATA[Now that you have a Tunnel Broker connection up and running, you need to put up some type of firewall since you are open to the outside world. The NAT functionality you setup only applies to the IPv4 connection to &#8230; <a href="http://www.ronnutter.com/ipv6-setting-up-a-conenction-to-a-tunnel-broker-part-5-firewall/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Now that you have a Tunnel Broker connection up and running, you need to put up some type of firewall since you are open to the outside world.  The NAT functionality you setup only applies to the IPv4 connection to the ISP.  The first four lines to protocol inspection so that any traffic you generate on IPv6 through the Tunnel is allowed to return from the Internet.  Anything else will be dropped because of the IPv6-FILTER IPv6 ACL that you have in the inbound traffic coming into the Tunnel0 interface.</p>
<p>ipv6 inspect name IPv6-INSPECT tcp<br />
ipv6 inspect name IPv6-INSPECT udp<br />
ipv6 inspect name IPv6-INSPECT ftp<br />
ipv6 inspect name IPv6-INSPECT icmp<br />
!<br />
! Apply the IPv6 inspect to the outbound traffic and allow the return traffic<br />
! to what you originated to pas.  The IPv6-FILTER ACL will block all<br />
! other traffic other than ICMP.<br />
!<br />
interface tunnel0<br />
ipv6 traffic-filter IPv6-FILTER in<br />
ipv6 inspect IPv6-INSPECT out<br />
!<br />
ipv6 access-list IPv6-FILTER<br />
permit icmp any any<br />
deny ipv6 any any log</p>
<p>To look at how the IPv6 inspect is working, you can start with sh ipv6 inspect all.  By doing a debug ipv6 inspect events will show you in realtime the Cisco IOS firewall events.  If you want to see a little more detail, you can use debug ipv6 inspect detailed.  Remember to do a term mon so that you can see the messages on the console as they come in.</p>
<p>This is what the debug output should like -</p>
<p>Feb  4 19:19:05: FIREWALL* FUNC: ipv6_insp_inspect_pak &#8212;  session = 85527CA8, L4 = tcp, L7 =<br />
Feb  4 19:19:05: FIREWALL: Session does not exist, hash now<br />
Feb  4 19:19:05: FIREWALL* FUNC: ipv6_insp_inspect_pak &#8212;  session = 85527CA8, L4 = tcp, L7 =<br />
Feb  4 19:19:05: FIREWALL: Session does not exist, hash now<br />
Feb  4 19:19:05: FIREWALL* FUNC: ipv6_insp_inspect_pak &#8212;  session = 85527CA8, L4 = tcp, L7 =<br />
Feb  4 19:19:05: FIREWALL: Hash Bucket: 73<br />
Feb  4 19:19:05: FIREWALL:Sid matches<br />
Feb  4 19:19:05: FIREWALL: insp_sis already set<br />
Feb  4 19:19:05: FIREWALL* FUNC: ipv6_insp_inspect_pak &#8212;  session = 85527CA8, L4 = tcp, L7 =<br />
Feb  4 19:19:10: FIREWALL: Hash on addresses 22001:0db8:3100:A006:1:: 2001:0db8:1F11:102:5AB0:35FF:FE88:D4C6<br />
Feb  4 19:19:10: FIREWALL: Protocol: tcp Src Hash Bucket: 73</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ronnutter.com/ipv6-setting-up-a-conenction-to-a-tunnel-broker-part-5-firewall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPv6 &#8211; Setting up a connection to a Tunnel Broker (Part 4) DDNS</title>
		<link>http://www.ronnutter.com/ipv6-setting-up-a-connection-to-a-tunnel-broker-part-4-dyndns/</link>
		<comments>http://www.ronnutter.com/ipv6-setting-up-a-connection-to-a-tunnel-broker-part-4-dyndns/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 01:41:05 +0000</pubDate>
		<dc:creator>Ronald Nutter</dc:creator>
				<category><![CDATA[Blog Entries]]></category>
		<category><![CDATA[IPv6]]></category>

		<guid isPermaLink="false">http://www.ronnutter.com/?p=803</guid>
		<description><![CDATA[The next part of setting up a connection to a Tunnel Broker we will deal with is keeping the connection up. There is a little bit of housekeeping that we should do before getting started. One thing that I find &#8230; <a href="http://www.ronnutter.com/ipv6-setting-up-a-connection-to-a-tunnel-broker-part-4-dyndns/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The next part of setting up a connection to a Tunnel Broker we will deal with is keeping the connection up.  There is a little bit of housekeeping that we should do before getting started.  One thing that I find in a lot of routers that I come across and am guilty of is not getting the clock in timesync as often as I should.  In this installment, we will be dealing with automatically reconfiguring your IP6to4 tunnel when the ip address at your end changes because of the DHCP lease replacement process from your ISP.<br />
!<br />
! The first two lines help your logs and debugs a little easier to ready by<br />
! inserting the current date/time at the front of each line<br />
!<br />
service timestamps debug datetime localtime<br />
service timestamps log datetime localtime<br />
!<br />
! This lines will be needed for DDNS to have a chance at working<br />
! Change this to your domain name<br />
!<br />
ip domain-name mydomain.com<br />
!<br />
! You can use any DNS system you want  I usually go with OpenDNS<br />
! as I found them to be very fast and responsive<br />
!<br />
ip name-server 208.67.222.222<br />
ip name-server 208.67.220.220<br />
!<br />
! As a matter of best practice, I use this command to make sure<br />
! that the NTP query goes out the right port<br />
!<br />
ntp source FastEthernet1<br />
!<br />
! I put at least two different time servers in my config<br />
! Check http://www.pool.ntp.org/en/ for the ones for your area<br />
! The prefer keyword selects the one you want to be the primary<br />
!<br />
ntp server 0.north-america.pool.ntp.org prefer<br />
ntp server 1.north-america.pool.ntp.org<br />
!<br />
! Make sure you have the right timezone set as well<br />
!<br />
clock timezone CST -6<br />
clock summer-time CDT recurring<br />
!<br />
!<br />
! The first step we need to take is to setup the cert from Hurricane Electric<br />
! You will need this because they do their DDNS update via HTTPS<br />
!<br />
crypto pki trustpoint HE_tunnelbroker<br />
enrollment terminal pem<br />
revocation-check none<br />
!<br />
crypto pki certificate chain HE_tunnelbroker<br />
 certificate ca 01<br />
  308202E7 30820250 02010130 0D06092A 864886F7 0D010105 05003081 BB312430<br />
  22060355 0407131B 56616C69 43657274 2056616C 69646174 696F6E20 4E657477<br />
  6F726B31 17301506 0355040A 130E5661 6C694365 72742C20 496E632E 31353033<br />
  06035504 0B132C56 616C6943 65727420 436C6173 73203220 506F6C69 63792056<br />
  616C6964 6174696F 6E204175 74686F72 69747931 21301F06 03550403 13186874<br />
  74703A2F 2F777777 2E76616C 69636572 742E636F 6D2F3120 301E0609 2A864886<br />
  F70D0109 01161169 6E666F40 76616C69 63657274 2E636F6D 301E170D 39393036<br />
  32363030 31393534 5A170D31 39303632 36303031 3935345A 3081BB31 24302206<br />
  03550407 131B5661 6C694365 72742056 616C6964 6174696F 6E204E65 74776F72<br />
  6B311730 15060355 040A130E 56616C69 43657274 2C20496E 632E3135 30330603<br />
  55040B13 2C56616C 69436572 7420436C 61737320 3220506F 6C696379 2056616C<br />
  69646174 696F6E20 41757468 6F726974 79312130 1F060355 04031318 68747470<br />
  3A2F2F77 77772E76 616C6963 6572742E 636F6D2F 3120301E 06092A86 4886F70D<br />
  01090116 11696E66 6F407661 6C696365 72742E63 6F6D3081 9F300D06 092A8648<br />
  86F70D01 01010500 03818D00 30818902 818100CE 3A71CAE5 ABC85992 55D7ABD8<br />
  740EF9EE D9F65547 5965470E 0555DCEB 98363C5C 535DD330 CF38ECBD 4189ED25<br />
  4209246B 0A5EB37C DD522D4C E6D4D67D 5A59A965 D449132D 244D1C50 6FB5C185<br />
  543BFE71 E4D35C42 F980E091 1A0A5B39 3667F33F 557C1B3F B45F6473 34E3B412<br />
  BF8764F8 DA12FF37 27C1B343 BBEF7B6E 2E69F702 03010001 300D0609 2A864886<br />
  F70D0101 05050003 8181003B 7F506F6F 50949949 6238381F 4BF8A5C8 3EA78281<br />
  F62BC7E8 C5CEE83A 1082CB18 008E4DBD A8587FA1 7900B5BB E98DAF41 D90F34EE<br />
  218119A0 324928F4 C48E56D5 5233FD50 D57E996C 03E4C94C FCCB6CAB 66B34A21<br />
  8CE5B50C 323E10B2 CC6CA1DC 9A984C02 5BF3CEB9 9EA5720E 4AB73F3C E61668F8<br />
  BEED744C BC5BD562 1F43DD<br />
        quit<br />
!<br />
ip ddns update method HE_Tunnel<br />
HTTP<br />
 add https://USERNAME:PASSWORD@ipv4.tunnelbroker.net/ipv4_end.php?tid=TUNNELID<br />
! (Replace USERNAME, PASSWORD and TUNNELID with the values you use with<br />
! Hurricane Electric<br />
! This next line is good one to have.  How low you need to set this will<br />
! be a bit of trail and error  The longer the update interval, the longer<br />
! the tunnel will be down before Hurricane Electric knows about your WAN<br />
! IP has changed.  The starting value I use is 2 hours.<br />
interval maximum 0 2 0 0<br />
!<br />
! Put this on your WAN Port to make it active<br />
!<br />
Int fa1<br />
ip ddns update HE_Tunnel<br />
ip ddns update hostname IPv6_Tunnel<br />
!<br />
Once you have this in place, you can do a debug ip ddns update to watch the ddns update traffic between your router and the Tunnel Broker for any errors.</p>
<p>I ran into one problem putting in the https lines with the embedded ? on line.  Had to put the following lines into a text file -</p>
<p>ip ddns update method HE_Tunnel<br />
HTTP<br />
 add https://USERNAME:PASSWORD@ipv4.tunnelbroker.net/ipv4_end.php?tid=TUNNELID<br />
interval maximum 0 2 0 0</p>
<p>Since I was using a MacBook Pro, none of my normal tricks worked.  I found a Mac app called Plain Text Editor and created the text file.  I tftp&#8217;d it to the router into the flash memory.  I then did copy filename system:running-config to merge the file into the running config.</p>
<p>Here is what you should see see when doing a debug ip ddns update and all goes well -</p>
<p>.Feb  3 20:10:51: HTTPDNSUPD: DATA END, Status is Response data recieved, successfully<br />
.Feb  3 20:10:51: HTTPDNSUPD: Call returned SUCCESS, update of IPv6_Tunnel.mydomain.com <=> 172.28.141.149 succeeded<br />
.Feb  3 20:10:51: DYNDNSUPD: Another update completed (outstanding=0, total=0)<br />
.Feb  3 20:10:51: HTTPDNSUPD: Clearing all session 3 info</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ronnutter.com/ipv6-setting-up-a-connection-to-a-tunnel-broker-part-4-dyndns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPv6 &#8211; Setting up a connection to a Tunnel Broker (Part 3)</title>
		<link>http://www.ronnutter.com/ipv6-setting-up-a-connection-to-a-tunnel-broker-part-3/</link>
		<comments>http://www.ronnutter.com/ipv6-setting-up-a-connection-to-a-tunnel-broker-part-3/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 01:03:40 +0000</pubDate>
		<dc:creator>Ronald Nutter</dc:creator>
				<category><![CDATA[Blog Entries]]></category>
		<category><![CDATA[IPv6]]></category>

		<guid isPermaLink="false">http://www.ronnutter.com/?p=793</guid>
		<description><![CDATA[Finally got the 2nd ISP connection installed so I could work on this without taking my main connection offline. Here is the configuration that I used on my Cisco 1811W Router. You will see Vlan1 mentioned in the configuration. That &#8230; <a href="http://www.ronnutter.com/ipv6-setting-up-a-connection-to-a-tunnel-broker-part-3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Finally got the 2nd ISP connection installed so I could work on this without taking my main connection offline. Here is the configuration that I used on my Cisco 1811W Router.  You will see Vlan1 mentioned in the configuration.  That is due to the router having an 8 port layer 2 switch built into it along with 2 separate Layer 3 ethernet ports.  The Fa1 port connects directly to the cable modem and the workstations plug into one of the 8 ports that are part of the layer two groups of ports.  This should be viewed as bare bones config since the NAT configuration you see in the lines below, I am working on something additional just for the IPv6 since the NAT in place only functions for IPv6.</p>
<p>A couple of things to remember on putting in the configuration from the HE Tunnel Broker website.  You will want to use the Client IPv6 on the Tunnel interface on your router.  The Client IPv4 address will be for your WAN port on the router.  One of the next things I will be working on will be getting Dynamic DNS updating to work with Hurricane Electric and Tunnel Broker service they have to save on the costs of paying extra each month for a static ip address.  For the Vlan 1 interface, you will use the address range that is assigned to you in the Router IPv6 Prefixes section of the configuration.</p>
<p>In an earlier post, I talked about <a href="http://ipv6.he.net/certification/">Hurricane Electric and the IPv6 certification</a>.  I am working through that process as a way of validating that what I am doing is working.  When I brought up the configuration you see below, the HE IPv6 Certification site automatically sensed that I was talking to them over an IPv6 connection and automatically raised me to IPv6 Explorer.  If you look at my earlier post on this, you will see that the certificate now says Explorer.</p>
<p>!<br />
! Config I used for IP6to4 tunnel to Hurricane.net on 1811W<br />
!<br />
ipv6 unicast-routing<br />
ipv6 cef<br />
!<br />
interface Tunnel0<br />
 description Hurricane Electric IPv6 Tunnel Broker<br />
 no ip address<br />
 !<br />
 ! This will be the client address on the HE Tunnel Broker website<br />
 !<br />
 ipv6 address 2001:0db8:1F10:102::2/64<br />
 ipv6 enable<br />
 tunnel source FastEthernet1<br />
 tunnel destination 209.51.181.2<br />
 tunnel mode ipv6ip<br />
!<br />
interface FastEthernet1<br />
 description WAN<br />
 ip address dhcp<br />
 ip nat outside<br />
 ip virtual-reassembly<br />
 duplex auto<br />
 speed auto<br />
!<br />
interface Vlan1<br />
 description LAN<br />
 ip address 192.168.1.100 255.255.255.0<br />
 ip nat inside<br />
 ip virtual-reassembly<br />
 !<br />
 ! This will be the routable /64 segment on the HE Tunnel Broker site when you have created the Tunnel<br />
 !<br />
 ipv6 address 2001:0db8:1F11:102::1/64<br />
 ipv6 enable<br />
!<br />
ip route 0.0.0.0 0.0.0.0 FastEthernet1<br />
!<br />
ip nat inside source list 1 interface FastEthernet1 overload<br />
!<br />
access-list 1 permit 192.168.1.0 0.0.0.255<br />
ipv6 route ::/0 Tunnel0<br />
!</p>
<p>Once you have the configuration in place, you should be able ping an IPv6 address somewhere on the Internet.  By using the debug command debug tunnel, you will be able to see the traffic going to/from the tunnel broker.  If you only see one way traffic from you to the tunnel broker, that is a pretty good indication of a configuration problem.  Look carefully at the debug output, you will want to see the alternating exchange of encapsulated and decapsulated packets.  This is an indication of good two way traffic between you and the Tunnel Broker.</p>
<p>! Ping outside host on IPv6<br />
!<br />
IPv6_Tunnel#ping ipv6 2001:470:1f10:102::1<br />
!<br />
! do a debug tunnel and term mon to see the following output<br />
!<br />
Type escape sequence to abort.<br />
Sending 5, 100-byte ICMP Echos to 2001:470:1F10:102::1, timeout is 2 seconds:<br />
!!!!!<br />
Success rate is 100 percent (5/5), round-trip min/avg/max = 80/80/80 ms<br />
IPv6_Tunnel#<br />
Feb  1 22:48:42: Tunnel0: IPv6/IP encapsulated 72.128.41.109->209.51.181.2 (linktype=79, len=120)<br />
Feb  1 22:48:42: Tunnel0 count tx, adding 20 encap bytes<br />
Feb  1 22:48:42: Tunnel0: IPv6/IP to classify 209.51.181.2->72.128.41.109 (tbl=0,&#8221;IPv4:Default&#8221; len=120 ttl=247 tos=0&#215;0) ok, oce_rc=0&#215;0<br />
Feb  1 22:48:42: Tunnel0: IPv6/IP (PS) to decaps 209.51.181.2->72.128.41.109 (tbl=0, &#8220;default&#8221;, len=120,ttl=247)<br />
Feb  1 22:48:42: Tunnel0: decapsulated IPv6/IP packet<br />
Feb  1 22:48:42: Tunnel0: IPv6/IP encapsulated 72.128.41.109->209.51.181.2 (linktype=79, len=120)<br />
Feb  1 22:48:42: Tunnel0 count tx, adding 20 encap bytes<br />
Feb  1 22:48:42: Tunnel0: IPv6/IP to classify 209.51.181.2->72.128.41.109 (tbl=0,&#8221;IPv4:Default&#8221; len=120 ttl=247 tos=0&#215;0) ok, oce_rc=0&#215;0<br />
Feb  1 22:48:42: Tunnel0: IPv6/IP (PS) to decaps 209.51.181.2->72.128.41.109 (tbl=0, &#8220;default&#8221;, len=120,ttl=247)<br />
Feb  1 22:48:42: Tunnel0: decapsulated IPv6/IP packet<br />
Feb  1 22:48:42: Tunnel0: IPv6/IP encapsulated 72.128.41.109->209.51.181.2 (linktype=79, len=120)<br />
Feb  1 22:48:42: Tunnel0 count tx, adding 20 encap bytes<br />
Feb  1 22:48:42: Tunnel0: IPv6/IP to classify 209.51.181.2->72.128.41.109 (tbl=0,&#8221;IPv4:Default&#8221; len=120 ttl=247 tos=0&#215;0) ok, oce_rc=0&#215;0<br />
Feb  1 22:48:42: Tunnel0: IPv6/IP (PS) to decaps 209.51.181.2->72.128.41.109 (tbl=0, &#8220;default&#8221;, len=120,ttl=247)<br />
Feb  1 22:48:42: Tunnel0: decapsulated IPv6/IP packet<br />
Feb  1 22:48:42: Tunnel0: IPv6/IP encapsulated 72.128.41.109->209.51.181.2 (linktype=79, len=120)<br />
Feb  1 22:48:42: Tunnel0 count tx, adding 20 encap bytes<br />
Feb  1 22:48:42: Tunnel0: IPv6/IP to classify 209.51.181.2->72.128.41.109 (tbl=0,&#8221;IPv4:Default&#8221; len=120 ttl=247 tos=0&#215;0) ok, oce_rc=0&#215;0<br />
Feb  1 22:48:42: Tunnel0: IPv6/IP (PS) to decaps 209.51.181.2->72.128.41.109 (tbl=0, &#8220;default&#8221;, len=120,ttl=247)<br />
Feb  1 22:48:42: Tunnel0: decapsulated IPv6/IP packet<br />
Feb  1 22:48:42: Tunnel0: IPv6/IP encapsulated 72.128.41.109->209.51.181.2 (linktype=79, len=120)<br />
Feb  1 22:48:42: Tunnel0 count tx, adding 20 encap bytes<br />
Feb  1 22:48:43: Tunnel0: IPv6/IP to classify 209.51.181.2->72.128.41.109 (tbl=0,&#8221;IPv4:Default&#8221; len=120 ttl=247 tos=0&#215;0) ok, oce_rc=0&#215;0<br />
Feb  1 22:48:43: Tunnel0: IPv6/IP (PS) to decaps 209.51.181.2->72.128.41.109 (tbl=0, &#8220;default&#8221;, len=120,ttl=247)<br />
Feb  1 22:48:43: Tunnel0: decapsulated IPv6/IP packet</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ronnutter.com/ipv6-setting-up-a-connection-to-a-tunnel-broker-part-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPad for Engineers &#8211; Ghostwriter</title>
		<link>http://www.ronnutter.com/ipad-for-engineers-ghostwriter/</link>
		<comments>http://www.ronnutter.com/ipad-for-engineers-ghostwriter/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 01:03:37 +0000</pubDate>
		<dc:creator>Ronald Nutter</dc:creator>
				<category><![CDATA[Blog Entries]]></category>
		<category><![CDATA[iPad]]></category>

		<guid isPermaLink="false">http://www.ronnutter.com/?p=775</guid>
		<description><![CDATA[One of the main reasons I migrated to using the iPad is that I ended up having multiple notepads lying around, never had the right one with me or the one I had with me was full I needed to &#8230; <a href="http://www.ronnutter.com/ipad-for-engineers-ghostwriter/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.majorspot.com/"><img src="http://www.ronnutter.com/image/ghostwriter.png" alt="Ghostwriter" class="alignleft"/></a>One of the main reasons I migrated to using the iPad is that I ended up having multiple notepads lying around, never had the right one with me or the one I had with me was full I needed to write something down.  I went through several different note taking apps before I found Ghostwriter.  It has several things going for it.  You can export your notes to Dropbox where they will appear as a PDF.  For those of you who are using Evernote, you also have the ability to export your notes to that application as well. The interface of using a Notebook to keep things organized has been implemented well.  You can change the types of &#8220;paper&#8221; that you can use on demand which is something you can&#8217;t do with a regular notebook.</p>
<p>If you want to be able to markup or make notations beyond with GoodReader, you have the ability with Ghostwriter to import a PDF and make your notations.  Each PDF will be its own notebook and each page in the pdf will become its own page in the notebook.  A challenge with some of the other note taking apps was that you had to be careful where you rested your hand on the screen or you might find that random marks would start appearing in your notes.  Ghostwriter has a wrist guard function built-in that prevents this from happening.</p>
<p><a href="http://www.amazon.com/gp/product/B000BUI76S/ref=as_li_ss_tl?ie=UTF8&#038;tag=ka4kyicom-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B000BUI76S"><img src="http://www.ronnutter.com/image/ipad_stylus.jpg" alt="Stylus" class="alignleft"/></a>You will need one more piece to be able to use Ghostwriter and for now, that is a capacitive stylus.  There are several to choose from.  They all pretty much serve the same function by electrically extending your hand so that ghostwriter sees something that it things is your finger on the screen.  I found several to choose from on <a href="http://www.amazon.com/gp/product/B000BUI76S/ref=as_li_ss_tl?ie=UTF8&#038;tag=ka4kyicom-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B000BUI76S">Amazon&#8217;s site</a> and they are all pretty reasonable priced.  </p>
<p>There is an update that could be coming in the next few days from the folks at <a href="http://www.cregle.com">Cregle</a>.  They have created a product called the iPen that is currently working its way through the hardware approval process at Apple.  From the limited information currently available, you plug-in a small receiver to the serial/sync port on the bottom of the iPad which picks up the signal from the accompanying pen.  No pricing information is currently available but the form factor is very attractive and the much smaller stylus would definitely appear to just the specific area to be worked with instead of having to use the much broader brush stroke that you will find when using a capacitive stylus.  Hopefully I will get a chance to work with one and share with you my findings in a future post.</p>
<p>For those that grew up with the Original Star Trek series in the 60&#8242;s, you have very similar functionality to what were then just wood and plastic props.  By itself, GhostWriter is a very useful application.  When you add the functionality of using either Dropbox or Evernote, you get an almost unbeatable application.  I don&#8217;t use GhostWriter as much as I could because of the sometimes &#8220;clunky&#8221; operation of the capacitive stylus.  That is not the fault of Ghostwriter, just the method of the input.  The new iPen offering has the potential to make quite a difference.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ronnutter.com/ipad-for-engineers-ghostwriter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Book Review &#8211; &#8220;IPv6 Essentials 2nd Edition&#8221; by Silvia Hagen, O&#8217;Reilly Media</title>
		<link>http://www.ronnutter.com/book-review-ipv6-essentials-2nd-edition-by-silvia-hagen-oreilly-media/</link>
		<comments>http://www.ronnutter.com/book-review-ipv6-essentials-2nd-edition-by-silvia-hagen-oreilly-media/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 01:14:46 +0000</pubDate>
		<dc:creator>Ronald Nutter</dc:creator>
				<category><![CDATA[Blog Entries]]></category>
		<category><![CDATA[The Library]]></category>
		<category><![CDATA[IPv6]]></category>

		<guid isPermaLink="false">http://www.ronnutter.com/?p=759</guid>
		<description><![CDATA[As I try to learn more about IPv6, I felt I needed to turn to what books had been released to get a different perspective. One of the first books I came across was &#8220;IPv6 Essentials 2nd Edition&#8221; By Silvia &#8230; <a href="http://www.ronnutter.com/book-review-ipv6-essentials-2nd-edition-by-silvia-hagen-oreilly-media/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.com/gp/product/0596100582/ref=as_li_ss_tl?ie=UTF8&#038;tag=ka4kyicom-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0596100582"><img src="http://www.ronnutter.com/image/IPv6_Essentials.gif" alt="IPv6_Essentials" class="alignleft"/></a>As I try to learn more about IPv6, I felt I needed to turn to what books had been released to get a different perspective.  One of the first books I came across was <a href="http://www.amazon.com/gp/product/0596100582/ref=as_li_ss_tl?ie=UTF8&#038;tag=ka4kyicom-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0596100582">&#8220;IPv6 Essentials 2nd Edition&#8221; By Silvia Hagen</a>.  I had the good fortune to meet Sylvia many years ago at the yearly Novell Brainshare conference.  I remember her then being an early proponent of IPv6.  </p>
<p>The name of this book was a very interesting choice.  There is something in this book for everyone.  The first part of the book goes deep into the background of what led up to IPv6.  There are several case studies how early implementations went as well.  Being a student of history, I was very interested to read this kind of background that I hadnt seen in this detail anywhere else.  To fully appreciate what you are being asked to do and to better understand why things work the way they do.</p>
<p>This is one book that you dont necessarily have to read from the first page to the last.  If this is your first exposure to IPv6, you will probably feel overwhelmed very quickly.  You can pick and choose what to read and help ease your way into increasing your knowledge about IPv6.  For example, reading about the structure of different IPv6 overwhelmed me when I first started reading the book.  I started passing over some of that granular detail to help build the overall platform that I needed.  In time, when I have a better overall understanding of IPv6, I know that knowing more about the making of the different packet structures will mean even more at that point.</p>
<p>There is a lot of information that you wouldn&#8217;t expect to be in such a small book.  The range of topics from ICMPv6, Security with IPv6, and Quality of Service are just a few of the topics that you will be exposed to.  Even if you haven&#8217;t been told that you will be implementing IPv6 in the near future, the more you know about it now will serve you well when the time does come.  Concepts such as Mobile IPv6 and Tunnel Broker are some of the areas where you will need to build your awareness.</p>
<p>With this book, I took a departure from previous books I had acquired in the past.  I received this book in PDF format and was very glad that I did.  Using the GoodReader App on my iPad that you have seen me write about elsewhere on this site, I have the flexibility of marking up/highlighting what initially I decide that is important and have the flexibility of changing those highlights at a later point, something that I wouldnt be able to do with a paper book.  O&#8217;Reilly, to their credit, has released this book on several different ePub platforms.  I also tried this book on the Kindle App on my iPad but kept going back to the GoodReader version because of what I was able to do with marking up the book to help my re-reading of the book over time.  Either way, as you build your IPv6 library, this book should get an early spot on the shelf.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ronnutter.com/book-review-ipv6-essentials-2nd-edition-by-silvia-hagen-oreilly-media/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPad for Engineers &#8211; Cisco Technical Support App</title>
		<link>http://www.ronnutter.com/ipad-for-engineers-cisco-technical-support-app/</link>
		<comments>http://www.ronnutter.com/ipad-for-engineers-cisco-technical-support-app/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 01:14:07 +0000</pubDate>
		<dc:creator>Ronald Nutter</dc:creator>
				<category><![CDATA[Blog Entries]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[iPad]]></category>

		<guid isPermaLink="false">http://www.ronnutter.com/?p=749</guid>
		<description><![CDATA[This is an app that I use frequently. It allows me to watch for replies to questions I have posted in various Cisco Support Community forums. For forums that match the various technologies that I work on, I can &#8220;subscribe&#8221; &#8230; <a href="http://www.ronnutter.com/ipad-for-engineers-cisco-technical-support-app/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href=http://itunes.apple.com/us/app/cisco-technical-support/id398104252><img src="http://www.ronnutter.com/image/iPad-Screen.jpg" alt="Cisco iPad" class="alignleft"/></a>This is an app that I use frequently.  It allows me to watch for replies to questions I have posted in various Cisco Support Community forums.  For forums that match the various technologies that I work on, I can &#8220;subscribe&#8221; to those specific forums without having to continually login the forums and drill down to each of the forums that I want to review.  For those threads that I want to watch before posting my own question that may be very similar to what is being discussed, I can keep up with a discussion that may continue over a period of days/weeks/months depending on the level of interest.</p>
<p>Keeping with various RSS feeds coming out a Cisco used to mean that I had to use yet another App.  With the Cisco Technical Support app, I can now keep up with those and hopefully avoid some of the problems that I see being discussed before they become serious.  If there are documents that you want to keep track of that are posted by others that may be periodically updated, you can keep track of those within this same App.  With Cisco periodically releasing support or instruction videos on YouTube, you have the ability watch those on your iPad/iPhone. </p>
<p>It is hard to give you a sense of what this app can but I think you will find that you will use it more than you might initially anticipate.  Unlike some of the apps where you have to pay for it up front before you really know how useful it will be, this app wont be one of them.  If you dont already have a CCO login account, now would be a good time to get one and be able to reach out to a community of folks that are dealing with some of the same issues you have or have already experienced.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ronnutter.com/ipad-for-engineers-cisco-technical-support-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evernote &#8211; Using Fujitsu ScanSnap scanner to keep track of drawings and other things not written</title>
		<link>http://www.ronnutter.com/evernote-using-fujitsu-scansnap-scanner-to-keep-track-of-drawings-and-other-things-not-written/</link>
		<comments>http://www.ronnutter.com/evernote-using-fujitsu-scansnap-scanner-to-keep-track-of-drawings-and-other-things-not-written/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 14:24:39 +0000</pubDate>
		<dc:creator>Ronald Nutter</dc:creator>
				<category><![CDATA[Blog Entries]]></category>
		<category><![CDATA[Evernote]]></category>

		<guid isPermaLink="false">http://www.ronnutter.com/?p=742</guid>
		<description><![CDATA[My ScanSnap S1300 scanner is probably the thing that I use most with Evernote. There are two choices when you need a portable scanner to take with you, The S1100 is ultraportable and the S1300 has an ADF (Auto Document &#8230; <a href="http://www.ronnutter.com/evernote-using-fujitsu-scansnap-scanner-to-keep-track-of-drawings-and-other-things-not-written/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.com/gp/product/B003990GMQ/ref=as_li_ss_tl?ie=UTF8&#038;tag=ka4kyicom-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B003990GMQ" target="_blank"><img src="http://www.ronnutter.com/image/s1300.jpg" alt="ScanSnap S1300" class="alignleft"/></a>My <a href="http://www.amazon.com/gp/product/B003990GMQ/ref=as_li_ss_tl?ie=UTF8&#038;tag=ka4kyicom-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B003990GMQ" target="_blank">ScanSnap S1300</a> scanner is probably the thing that I use most with Evernote. There are two choices when you need a portable scanner to take with you, The S1100 is ultraportable and the S1300 has an ADF (Auto Document Feeder) that comes as a part of the scanner so that you can put up to 10 pages in the scanner at one time and it has the potential to scan both sides of a sheet of paper at one time without having to reload the paper a second time to capture the information on the other side of the paper.</p>
<p>The power of ScanSnap is that it has the ability to directly send what it is scanning directly directly into your choice of Notebooks in Evernote.  Once the scanned document is in Evernote, all that you need to do is to change the name of the Notebook on the properties page that the output of the scanner will be shown on the screen of the computer the scanner is connected to.  To make things a little faster, you can modify the properties of how the scanner works and have it only scan one side of the paper  or only in black and white if there are no color images present.</p>
<p>To make things are portable as possible, you have the ability with the S1300 to power it from a second USB port instead of using the AC power supply that comes with the scanner.  The trade-off is that the scanner will run a little slower.  If you are scanning a stack of papers, then that may not be an issue but something that you need to keep in mind.  So far, every time I have used the S1300, I have opted to use the external power supply but it is nice to know that I have a backup power option if needed.</p>
<p>I dont know if it is the scanner or the scanning software, but I have had good luck with scanning on the first try.  A few times, I have had problems with the document &#8220;slipping&#8221; or going into the scanner not exactly straight.  During the scanning process, I have noticed that the document appeared to &#8220;straighten up&#8221; for lack of a better phrase much better than I would have expected.  For most of the scans I have used it for so far, I have been able to leave the settings to Auto with the exception of single or double sided scanning and have been pleased with the results.</p>
<p>Having used different scanners over the year, I expected there to be a learning curve.  The surprising thing is that I used it without ever reading the manual.  The only changes I have had to make is enabling or disabling the function that controls if the scanner is scanning one or both sides of the document that is going through the scanner.  There is a profile for each way the scanner can be used (scanning to Evernote, PDF, Email, etc).  This is the easiest scanner to use that I have had so far.  As with Laser Printers, there are &#8220;consumables&#8221; or items that need to be replaced periodically to keep the scanner running at the top of its game but most users wont need to do that kind of replacement for a long time and the kit isnt that expensive.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ronnutter.com/evernote-using-fujitsu-scansnap-scanner-to-keep-track-of-drawings-and-other-things-not-written/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPv6 &#8211; Cheatsheet on identifying valid IPv6 addresses</title>
		<link>http://www.ronnutter.com/ipv6-cheatsheet-on-identifying-valid-ipv6-addresses/</link>
		<comments>http://www.ronnutter.com/ipv6-cheatsheet-on-identifying-valid-ipv6-addresses/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 01:03:35 +0000</pubDate>
		<dc:creator>Ronald Nutter</dc:creator>
				<category><![CDATA[Blog Entries]]></category>
		<category><![CDATA[IPv6]]></category>

		<guid isPermaLink="false">http://www.ronnutter.com/?p=731</guid>
		<description><![CDATA[These are examples of addresses that I have come across while I have been reading about IPv6. Sometimes finding a invalid/bad address will take a bit longer until we all get comfortable with the shorthand and conventions of a properly &#8230; <a href="http://www.ronnutter.com/ipv6-cheatsheet-on-identifying-valid-ipv6-addresses/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>These are examples of addresses that I have come across while I have been reading about IPv6.  Sometimes finding a invalid/bad address will take a bit longer until we all get comfortable with the shorthand and conventions of a properly formatted IPv6 address.  If you have one that you dont see here, email it to me and I will add it.</p>
<table border="1">
<tr>
<td>Address</td>
<td>Valid</td>
<td>Comment</td>
</tr>
<tr>
<td>1200:0000:AB00:1234:0000:2552:7777:1313</td>
<td>Yes</td>
<td>Hex characters are valid in IPv6</td>
</tr>
<tr>
<td>1200::AB00:1234::2552:7777:1313</td>
<td>No</td>
<td>Can only use :: once in an address</td>
</tr>
<tr>
<td>[2001:db8:0:1]:80</td>
<td>Yes</td>
<td>Example of IPv6 address specifying a port number</td>
</tr>
<tr>
<td>http://[2001:db8:0:1]:80</td>
<td>Yes</td>
<td>Example of URL specifying a port number</td>
</tr>
<tr>
<td>21DA:D3:0:2F3B:2AA:FF:FE28:9C5A</td>
<td>Yes</td>
<td>Leading 0&#8242;s can be dropped from each quartet</td>
</tr>
<tr>
<td>1200:0000:AB00:1234:O000:2552:7777:1313</td>
<td>No</td>
<td>Invalid character in field of what looks to be all 0&#8242;s</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.ronnutter.com/ipv6-cheatsheet-on-identifying-valid-ipv6-addresses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPv6 &#8211; Reserved IPv6 Address Ranges</title>
		<link>http://www.ronnutter.com/ipv6-reserved-ipv6-address-ranges/</link>
		<comments>http://www.ronnutter.com/ipv6-reserved-ipv6-address-ranges/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 00:52:08 +0000</pubDate>
		<dc:creator>Ronald Nutter</dc:creator>
				<category><![CDATA[Blog Entries]]></category>
		<category><![CDATA[IPv6]]></category>

		<guid isPermaLink="false">http://www.ronnutter.com/?p=717</guid>
		<description><![CDATA[This is the list of reserved IPv6 address ranges that I have been building since I started reading the IPv6 RFC&#8217;s that I have been going through. As I find others, I will add them to this list. If you &#8230; <a href="http://www.ronnutter.com/ipv6-reserved-ipv6-address-ranges/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is the list of reserved IPv6 address ranges that I have been building since I started reading the IPv6 RFC&#8217;s that I have been going through.  As I find others, I will add them to this list.  If you see one that is missing, please send me the info and support RFC # and I will add it to the list.  My goal is to make this a reliable piece of information that will help all of us.</p>
<table border="1">
<tr>
<td>Address Range</td>
<td>Description</td>
</tr>
<tr>
<td>0000::/8</td>
<td>Reserved by IETF &#8211; RFC4291</td>
</tr>
<tr>
<td>0100::/8</td>
<td>Reserved by IETF &#8211; RFC4291</td>
</tr>
<tr>
<td>0200::/7</td>
<td>Reserved by IETF &#8211; RFC4291</td>
</tr>
<tr>
<td>0400::/6</td>
<td>Reserved by IETF &#8211; RFC4291</td>
</tr>
<tr>
<td>0800::/5</td>
<td>Reserved by IETF &#8211; RFC4291</td>
</tr>
<tr>
<td>1000::/4</td>
<td>Reserved by IETF &#8211; RFC4291</td>
</tr>
<tr>
<td>2000::/3</td>
<td>Global Unicast &#8211; RFC4291</td>
</tr>
<tr>
<td>2001:db8:/32</td>
<td>Documentation &#8211; RFC3849</td>
</tr>
<tr>
<td>2002::/24</td>
<td>6to4 0.0.0.0/8</td>
</tr>
<tr>
<td>2002:0a00::/24</td>
<td>6to4 10.0.0.0/8</td>
</tr>
<tr>
<td>2002:7f00::/24</td>
<td>6to4 127.0.0.0/8</td>
</tr>
<tr>
<td>2002:a9fe::/32</td>
<td>6to4 169.254.0.0/16</td>
</tr>
<tr>
<td>2002:ac10::/28</td>
<td>6to4 172.16.0.0/12</td>
</tr>
<tr>
<td>2002:c000::/40</td>
<td>6to4 192.0.0.0/24</td>
</tr>
<tr>
<td>2002:c0a8::/32</td>
<td>6to4 192.168.0.0/16</td>
</tr>
<tr>
<td>2002:c612::/31</td>
<td>6to4 198.18.0.0/15</td>
</tr>
<tr>
<td>2002:c633:6400::/40</td>
<td>6to4 198.51.100.0/24</td>
</tr>
<tr>
<td>2002:cb00:7100::/40</td>
<td>6to4 203.0.113.0/24</td>
</tr>
<tr>
<td>2002:e000::/20</td>
<td>6to4 224.0.0.0/4</td>
</tr>
<tr>
<td>2002:e000::/20</td>
<td>6to4 224.0.0.0/4</td>
</tr>
<tr>
<td>4000::/3</td>
<td>Reserved by IETF &#8211; RFC4291</td>
</tr>
<tr>
<td>6000::/3</td>
<td>Reserved by IETF &#8211; RFC4291</td>
</tr>
<tr>
<td>8000::/3</td>
<td>Reserved by IETF &#8211; RFC4291</td>
</tr>
<tr>
<td>A000::/3</td>
<td>Reserved by IETF &#8211; RFC4291</td>
</tr>
<tr>
<td>C000::/3</td>
<td>Reserved by IETF &#8211; RFC4291</td>
</tr>
<tr>
<td>E000::/4</td>
<td>Reserved by IETF &#8211; RFC4291</td>
</tr>
<tr>
<td>F000::/5</td>
<td>Reserved by IETF &#8211; RFC4291</td>
</tr>
<tr>
<td>F800::/6</td>
<td>Reserved by IETF &#8211; RFC4291</td>
</tr>
<tr>
<td>FC00::/7</td>
<td>Unique Local Unicast &#8211; RFC4193</td>
</tr>
<tr>
<td>FE00::/9</td>
<td>Reserved by IETF &#8211; RFC4291</td>
</tr>
<tr>
<td>FE80::/10</td>
<td>Link Local Unicast &#8211; RFC4291</td>
</tr>
<tr>
<td>FEC0::/10</td>
<td>Site Local Prefix &#8211; RFC3879</td>
</tr>
<tr>
<td>FF00::/8</td>
<td>Multicast &#8211; RFC4291</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.ronnutter.com/ipv6-reserved-ipv6-address-ranges/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Network Toolkit &#8211; Where to place taps, multiple single taps or a single tap with multiple ports to use</title>
		<link>http://www.ronnutter.com/network-toolkit-where-to-place-taps-multiple-single-taps-or-a-single-tap-with-multiple-ports-to-use/</link>
		<comments>http://www.ronnutter.com/network-toolkit-where-to-place-taps-multiple-single-taps-or-a-single-tap-with-multiple-ports-to-use/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 00:31:52 +0000</pubDate>
		<dc:creator>Ronald Nutter</dc:creator>
				<category><![CDATA[Blog Entries]]></category>
		<category><![CDATA[Cisco]]></category>

		<guid isPermaLink="false">http://www.ronnutter.com/?p=712</guid>
		<description><![CDATA[The downside to using a Ethernet TAP is that you have to have a momentary disruption on a network when you install or remove a TAP. If you need to use one in a longer term situation, an outage shouldnt &#8230; <a href="http://www.ronnutter.com/network-toolkit-where-to-place-taps-multiple-single-taps-or-a-single-tap-with-multiple-ports-to-use/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The downside to using a Ethernet TAP is that you have to have a momentary disruption on a network when you install or remove a TAP.  If you need to use one in a longer term situation, an outage shouldnt be a problem.  For long term situations such as putting in an IDS or IPS you probably wont be moving the tap.  Where to place the TAP will depend on what you need to watch. Monitoring the traffic crossing a Trunk connection may be a bit overwhelming because of the amount of traffic that you will have to filter through.  You will also need a very clean laptop in terms of install applications to keep as much of the CPU free as possible to allow it to capture as efficiently as possible.  If you have to capture large amounts of data and dont have the most powerful of laptops, you may want to look at learning the cli version of Wireshark so you can reduce as much of the overhead normally associated with the GUI so that it can capture as much of the traffic on the wire as possible.</p>
<p>Capturing in front of and behind the router that interfaces to your ISP, in front of and behind your firewall and in front of one or more of the servers in your server farm are just some of the locations that you may need to watch on a periodic basis.  Moving the TAP from place to place is not only a hassle but keeps a series of outages present on your network.  It also draws attention from the users and or management that something is either going on or there is a problem on the network that doesnt seem to go away.  In this case, you either need a series of TAP&#8217;s to so that you can watch at any of the points you need to when you want to which can be very expensive.  If that is the case, you may want to look at a multi-port tap that allows you to watch multiple points on your network without having to move a network cable or a TAP.  With a multi-port TAP, you access the TAP using a console session or management program and logically move the &#8220;monitoring&#8221; port of the TAP to the connection you want to watch without having to be in the room or even in the same building.</p>
<p>When looking at where you may need a TAP, don&#8217;t limit yourself to a TAP that monitors a copper connection and sends the data to a copper based monitoring port.  When TAP&#8217;ing into a fiber port, it isn&#8217;t likely that you will be able to monitor the traffic with a fiber network card.  In this case, you can look at a TAP that is a combination TAP/Media converter.  In this way, you can monitor fiber based connections when you need to but still use a copper based monitoring system.  As with all fiber type connections, you will want to make sure that you have the correct fiber tab for the type of fiber that you want to watch.  Trying to monitor a long haul fiber connect (Cisco switches use a LH type laser SFP with a SX (short haul) capable fiber tap probably wont get you any data that you can use.  If you are surent what type of fiber that you have or what fiber TAP will be best to use, this is a area where the vendor whose fiber TAP&#8217;s you want to buy should be more than glad to help.</p>
<p>If you decide to acquire a multi-port TAP, look thoroughly at all the places where you might want to be able to monitor at some point.  Prioritize all of the locations in one of three categories &#8211; need it now, nice to have and future potential.  Try to equally divide the points in the network that you would like to monitor in the different groups.  This will help you identify the type of multi-port TAP that you may need to acquire.  Another thing to consider is the ability to &#8220;grow&#8221; the TAP you are looking at.  What I mean by that is can you add additional modules or capacity to the multi-port TAP or can you connect an additional chassis to the one that you started out with.  With 10 Gig speeds and higher starting to become common on some networks, does the TAP you are looking at have the ability handle those speeds and what type of filtering ability does it have so that you are trying to shove 10 lanes of network traffic down a one lane country road.  This is where a multi-port tap such as the NetOptics Director will come in handy.  With this type of switch, you can mix and match the types of ports that you need on your network.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ronnutter.com/network-toolkit-where-to-place-taps-multiple-single-taps-or-a-single-tap-with-multiple-ports-to-use/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

