<?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>Router Jockey</title>
	<atom:link href="http://routerjockey.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://routerjockey.com</link>
	<description>a network engineering blog</description>
	<lastBuildDate>Tue, 24 Apr 2012 18:43:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>CCIE Potential</title>
		<link>http://routerjockey.com/2012/04/24/ccie-potential/</link>
		<comments>http://routerjockey.com/2012/04/24/ccie-potential/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 18:43:25 +0000</pubDate>
		<dc:creator>Tony Mattke</dc:creator>
				<category><![CDATA[cisco]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[career]]></category>
		<category><![CDATA[ine]]></category>

		<guid isPermaLink="false">http://routerjockey.com/?p=3405</guid>
		<description><![CDATA[INE published a great info-graphic on the earning potential of Cisco&#8217;s certifications and I felt the need to share it here. It covers a range of topics from average salaries on all three tiers of proficiency, to top locations for positions, always remember that the information included is in no way meant as career advice.]]></description>
			<content:encoded><![CDATA[<p></p><p>INE published a great info-graphic on the earning potential of Cisco&#8217;s certifications and I felt the need to share it here. It covers a range of topics from average salaries on all three tiers of proficiency, to top locations for positions, always remember that the information included is in no way meant as career advice.<br />
<a href="http://routerjockey.com/wp-content/uploads/2012/04/cisco-careers-ine.jpg" rel="lightbox[3405]"><img src="http://routerjockey.com/wp-content/uploads/2012/04/cisco-careers-ine-301x1024.jpg" alt="" title="idea2" width="301" height="1024" class="aligncenter size-large wp-image-3406" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://routerjockey.com/2012/04/24/ccie-potential/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>QinQ: IEEE 802.1Q Tunneling</title>
		<link>http://routerjockey.com/2012/04/19/qinq-ieee-802-1q-tunneling/</link>
		<comments>http://routerjockey.com/2012/04/19/qinq-ieee-802-1q-tunneling/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 15:34:08 +0000</pubDate>
		<dc:creator>Tony Mattke</dc:creator>
				<category><![CDATA[cisco]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[802.1q]]></category>
		<category><![CDATA[qinq]]></category>
		<category><![CDATA[vlan]]></category>

		<guid isPermaLink="false">http://routerjockey.com/?p=2196</guid>
		<description><![CDATA[In situations where service providers want to offer transparent LAN services that preserve a customers VLAN tags across your Layer-2 network, This amendment to the IEEE 802.1q standard allows us to use a single VLAN to transport multiple VLANS across the MAN or WAN. In doing so, we stack on an extra 802.1q tag to [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>In situations where service providers want to offer transparent LAN services that preserve a customers VLAN tags across your Layer-2 network, This amendment to the IEEE 802.1q standard allows us to use a single VLAN to transport multiple VLANS across the MAN or WAN. In doing so, we stack on an extra 802.1q tag to the customer&#8217;s traffic at the provider&#8217;s edge (PE). The original 802.1Q specification allows a single VLAN header to be inserted into an Ethernet frame. QinQ allows multiple VLAN headers to be inserted into a single frame, this is essential when implementing Metro Ethernet networks.</p>
<h4>QinQ Configuration</h4>
<p>First we need to ensure our transport switches can support the baby giant frames. To check the current MTU on the switch you can issue the command <i>show system mtu</i> and in global configuration mode, you can use <i>system mtu 1504</i> to change the switches MTU to the recommended 1504 bytes..</p>
<pre>
SW1# show system mtu
System MTU size is 1500 bytes
SW1# configure terminal
SW1(config)# system mtu 1504
Changes to the System MTU will not take effect until the next reload is done.
</pre>
<p>The actual QinQ configuration takes place entirely on the transport switches, no modifications are required on the customer equipment. The first step is to configure the trunk between our two backbone switches. We&#8217;ll be using VLAN 101 for Customer-A, and 201 for Customer-B. As you will see, the configuration is rather quick and simple.</p>
<pre>
SW1(config)# interface fa1/0/48
SW1(config-if)# switchport trunk encapsulation dot1q
SW1(config-if)# switchport mode trunk
SW1(config-if)# switchport trunk allowed vlan 101,201

SW2(config)# interface fa1/0/48
SW2(config-if)# switchport trunk encapsulation dot1q
SW2(config-if)# switchport mode trunk
SW2(config-if)# switchport trunk allowed vlan 101,201
</pre>
<p><span id="more-2196"></span><br />
Now, on the provider edge (PE) ports, we need to assign the port to the appropriate VLAN, and configure the dot1q-tunnel. This tunnel is what allows us to transport a customer&#8217;s VLANtrunk across our network. The command l2protocol-tunnel allows transportation of Layer-2 protocols such as CDP, LLDP, STP, and VTP. I&#8217;m also turning off CDP here for sanity&#8217;s sake.</p>
<pre>
SW1(config)# interface fa1/0/10
SW1(config-if)# desc Customer-A
SW1(config-if)# switchport access vlan 101
SW1(config-if)# switchport mode dot1q-tunnel
SW1(config-if)# l2protocol-tunnel
SW1(config-if)# no cdp enable
SW1(config-if)# interface fa1/0/20
SW1(config-if)# desc Customer-B
SW1(config-if)# switchport access vlan 201
SW1(config-if)# switchport mode dot1q-tunnel
SW1(config-if)# l2protocol-tunnel
SW1(config-if)# no cdp enable

SW2(config)# interface fa1/0/10
SW2(config-if)# desc Customer-A
SW2(config-if)# switchport access vlan 101
SW2(config-if)# switchport mode dot1q-tunnel
SW2(config-if)# l2protocol-tunnel
SW2(config-if)# no cdp enable
SW2(config-if)# interface fa1/0/20
SW2(config-if)# desc Customer-B
SW2(config-if)# switchport access vlan 201
SW2(config-if)# switchport mode dot1q-tunnel
SW2(config-if)# l2protocol-tunnel
SW2(config-if)# no cdp enable
</pre>
<p>And that&#8217;s it. Each customer has tunneled connectivity between their sites using their own VLAN numbering all encapsulated within their own VLAN on the providers Layer-2 network. In the near future I plan on writting a bit on 802.1Q tunnel termination in regards to the Cisco 10000, aka the BFR. It&#8217;s been a few years since I&#8217;ve done it, but I can still remember the basics.</p>
]]></content:encoded>
			<wfw:commentRss>http://routerjockey.com/2012/04/19/qinq-ieee-802-1q-tunneling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco IPS Fun</title>
		<link>http://routerjockey.com/2012/03/30/cisco-ips-fun/</link>
		<comments>http://routerjockey.com/2012/03/30/cisco-ips-fun/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 13:16:45 +0000</pubDate>
		<dc:creator>Tony Mattke</dc:creator>
				<category><![CDATA[cisco]]></category>
		<category><![CDATA[asa]]></category>
		<category><![CDATA[IPS]]></category>

		<guid isPermaLink="false">http://routerjockey.com/?p=3361</guid>
		<description><![CDATA[Since I&#8217;ve recently had some fun working with the Cisco 5585-X and the IPS blades, I wanted to document some of the information I learned while getting them online. Some of this came from various sources around the &#8216;net including the TAC IPS group, other parts are from consultants, or what we just figured out [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Since I&#8217;ve recently had some fun working with the Cisco 5585-X and the IPS blades, I wanted to document some of the information I learned while getting them online. Some of this came from various sources around the &#8216;net including the TAC IPS group, other parts are from consultants, or what we just figured out on our own while working with it. The first thing you need to understand is how traffic gets to / from the IPS. The easiest way to explain it, is that the IPS sits inside the firewall. It will be sent traffic, from a matched ACL, after the interface has performed it&#8217;s own inbound ACL filtering. In our situation, we simply defined an ACL that stated permit ip any any &#8212; but depending on the application, you may only want to filter traffic in certain directions. Below, we have an example that filters traffic with a destination defined in our object-group. The ACL you defined is matched in a class-map, which is matched in your global_policy policy-map. The command <b>ips inline fail-open sensor vs0</b> actually sends the traffic (via the backplane) to the IPS blade. This command also states, that if the ASA detects an issue with the IPS, to bypass it, and continue to pass traffic as if it was never installed. To cease the flow of traffic to the sensor, remove this command from the policy-map&#8230; This would be rather usefull if a bad set of signatures were deployed and the IPS was erroneously dropping traffic.</p>
<pre>
object-group network IPS-RANGES
 network-object 10.0.0.0 255.0.0.0
 network-object 4.2.2.0 255.255.255.0
!
access-list IPS-ACL permit ip any object-group IPS-RANGES
!
class-map IPS-CLASSMAP
 match access-list IPS-ACL
!
policy-map global_policy
class IPS-CLASSMAP
 ips inline fail-open sensor vs0
</pre>
<p><span id="more-3361"></span><br />
Once traffic is flowing through the IPS, you should take a look at the following command. At the bottom you will see statistics of packets sent to, and receieved from the blade. As well as the number of drops.</p>
<pre>
ASA-FW# sh service-policy  

Global policy:
  Service-policy: global_policy
    Class-map: inspection_default
      Inspect: dns preset_dns_map, packet 14803467, lock fail 0, drop 39, reset-drop 0
      Inspect: ftp, packet 1298420, lock fail 0, drop 0, reset-drop 0
      Inspect: h323 h225 _default_h323_map, packet 0, lock fail 0, drop 0, reset-drop 0
               tcp-proxy: bytes in buffer 0, bytes dropped 0
      Inspect: h323 ras _default_h323_map, packet 0, lock fail 0, drop 0, reset-drop 0
      Inspect: rsh, packet 0, lock fail 0, drop 0, reset-drop 0
      Inspect: rtsp, packet 0, lock fail 0, drop 0, reset-drop 0
               tcp-proxy: bytes in buffer 0, bytes dropped 0
      Inspect: esmtp _default_esmtp_map, packet 31147261, lock fail 2, drop 388, reset-drop 0
      Inspect: sqlnet, packet 0, lock fail 0, drop 0, reset-drop 0
      Inspect: skinny , packet 0, lock fail 0, drop 0, reset-drop 0
               tcp-proxy: bytes in buffer 0, bytes dropped 0
      Inspect: sunrpc, packet 0, lock fail 0, drop 0, reset-drop 0
               tcp-proxy: bytes in buffer 0, bytes dropped 0
      Inspect: xdmcp, packet 0, lock fail 0, drop 0, reset-drop 0
      Inspect: sip , packet 0, lock fail 0, drop 0, reset-drop 0
               tcp-proxy: bytes in buffer 0, bytes dropped 0
      Inspect: netbios, packet 278, lock fail 0, drop 0, reset-drop 0
      Inspect: tftp, packet 0, lock fail 0, drop 0, reset-drop 0
      Inspect: ip-options _default_ip_options_map, packet 0, lock fail 0, drop 0, reset-drop 0
      Inspect: icmp, packet 77268, lock fail 0, drop 832, reset-drop 0
      Inspect: ipsec-pass-thru _default_ipsec_passthru_map, packet 2533443, lock fail 0, drop 0, reset-drop 0
      Inspect: pptp, packet 0, lock fail 0, drop 0, reset-drop 0
<strong>     Class-map: IPS-CLASSMAP
      IPS: card status Up, mode inline fail-open, sensor vs0
        packet input 40316913, packet output 40316927, drop 7, reset-drop 0</strong>
    Class-map: class-default

      Default Queueing      Set connection policy:         drop 0
      Set connection decrement-ttl
</pre>
<h4>Enabling and Configuring Automatic Updates</h4>
<p>The simplest/easiest method to enable and configure the Auto/Cisco.com Update feature is via the sensor GUI (IDM). Once you login, head to Configuration > Sensor Management > Auto/Cisco.com Update. From there, make sure Enable Signature and Engine Updates from Cisco.com is checked, and head into the Cisco.com Server Settings. You must supply a valid CCO username/password, and configured a scheduled start time for the update.. Updates are released once every 1 &#8211; 2 weeks, so hourly checks are overkill. Updates happen over https, and the IPS must have the ability to connect without using a proxy. If you wish to perform a test, simply update the schedule to reflect a time in the near future. The current system time can be obtained from the CLI using the <b>show clock</b> command.</p>
<p class="note" style="font-size:12px">The default update URL https://198.133.219.25//cgi-bin/front.x/ida/locator/locator.pl is currently the only valid source. The double-forward slash following the IP address is expected and required.</p>
<p>After an update attempt has occurred, details can be found in Auto Update Statistics section of the <b>show stat host</b> command. Other than authentication failures, connectivity failures are the most common and are generally due to the IPS being unable to reach the update server on tcp port 443.</p>
<pre>
ASA-IPS# show stat host | begin Auto Update
Auto Update Statistics
   lastDirectoryReadAttempt = 12:20:00 GMT-05:00 Wed May 01 2011
    =   Read directory: http://user@72.163.7.55//swc/esd/guest/
    =   Success
   lastDownloadAttempt = 12:20:00 GMT-05:00 Wed May 01 2011
    =   Download: http://user@72.163.7.55//swc/esd/guest/IPS-sig-S563-req-E4.pkg
    =   Success
   lastInstallAttempt = 12:20:30 GMT-05:00 Wed May 01 2011
    =   IPS-sig-S563-req-E4: Update completed successfully
    =   Success
   nextAttempt = 12:20:00 GMT-05:00 Thu May 02 2011
</pre>
<h4>Signatures</h4>
<p>The nomenclature surrounding IPS Signatures is a bit confusing. For instance  Enable/disable does NOT select/de-select signatures to be used by IPS, that functionality is called Retire/Unretire. When a signature is retired, it means the IPS will NOT compile that signature into memory for scanning. Unretiring a signature instructs the IPS to compile the signature into memory and to use the signature to scan traffic. Enable/disable is to enforce/disregard the action associated with the signatures by the IPS when packets or packet flows match the signature. Therefore in order to perform an action against a packet / packet flow a signature must be unretired AND enabled.</p>
<p>When customizing your signature base there are a number of things to keep in mind. Current IPS signature definition releases contain over 5,000 individual signatures, but only a limited amount are enabled/active by default. The signatures that are enabled/active by default is determined by Cisco&#8217;s IPS Signature development team and changes from release to release as new signatures are added and old signatures become obsolete. </p>
<p>A new user may be inclined to select and enable all or most of the signatures thinking this would provide the most protection possible, however this is not the case. Signatures may have been retired for any number of reasons including large numbers of false positives, the signature being replaced by a newer/better one, the signature being overly complex or causing noticeable performance/stability issues, the threat no longer being relevant, etc&#8230; As such, it is never a good idea to attempt to enable and unretire bulk signatures. Doing so will almost certainly result in some serious issues like legitimate traffic being denied, bad performance, sensor crashes, etc.. Signatures that are manually enabled and/or unretired should always be thoroughly researched and understood prior to doing so.</p>
<p>If you wish to return the sensor&#8217;s current signature policy to default, issue the following commands&#8230;</p>
<pre>
IPS# conf t
IPS(config)# service signature-definition sig0
IPS(config-sig)# default signatures
IPS(config-sig)# exit
Apply Changes?[yes]: yes
</pre>
<h4>SNMP Traps</h4>
<p>The idea behind trap-directed notification is that it is impractical for a server to poll or request information from every SNMP object on every device. The solution is for each device to notify the server of events without solicitation. It does this by sending a message known as a trap of the event. To enable global trap notification configure the following service replacing key bits as necessary.</p>
<pre>
sensor# conf t
sensor(config)# service notification
sensor(config-not)# trap-destination 192.168.69.10
sensor(config-not-tra)# trap-community-name public
sensor(config-not-tra)# trap-port 162
sensor(config-not-tra)# exit
sensor(config-not)# enable-notifications true
sensor(config-not)# exit
Apply Changes?[yes]: yes
</pre>
<p>By default traps are not generated for events, the Request SNMP Trap Action can be added to an EAO (Event Action Override) to add a trap as an Action whenever a signature fires. </p>
<p class="note" style="font-size:12px">In the example provided, all Alerts will generate traps you may instead specify specify a desired Risk Rating range. (100-90 for High, 89-70 for Medium, 69-1 for Low)</p>
<pre>
sensor# conf t
sensor(config)# service event-action-rules rules0
sensor(config-eve)# overrides request-snmp-trap
sensor(config-eve-ove)# override-item-status enabled
sensor(config-eve-ove)# risk-rating-range 1-100
sensor(config-eve-ove)# exit
sensor(config-eve)# exit
Apply Changes?[yes]: yes
</pre>
<p>If you wish these traps may be added to a specific signature (instead of the EAO) by using the Request SNMP Trap Action on a per-signature basis.</p>
]]></content:encoded>
			<wfw:commentRss>http://routerjockey.com/2012/03/30/cisco-ips-fun/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Another Wicked Vim Tip</title>
		<link>http://routerjockey.com/2012/03/28/another-wicked-vim-tip/</link>
		<comments>http://routerjockey.com/2012/03/28/another-wicked-vim-tip/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 19:12:47 +0000</pubDate>
		<dc:creator>Tony Mattke</dc:creator>
				<category><![CDATA[networking]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://routerjockey.com/?p=3366</guid>
		<description><![CDATA[As a follow up to my blog post on the PacketPushers blog, I wanted to share with you another time saving tip for getting our jobs done not only quickly, but helping to remove one of the tedious steps in firewall maintenance. Today, I needed to add a large chunk of ACEs to my INSIDE-IN [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>As a follow up to my blog post on the PacketPushers blog, I wanted to share with you another time saving tip for getting our jobs done not only quickly, but helping to remove one of the tedious steps in firewall maintenance.  Today, I needed to add a large chunk of ACEs to my INSIDE-IN ACL (about 6 times larger than my example here, but spread across a couple devices..) Luckily, I used my head when it came time to start adjusting line numbers. The first thing I did was to write out my ACEs, and instead of filling in the line numbers, I just used XXX. (I would be deploying this in a few places, so I saved a couple versions as well..)</p>
<p>Sample output included below: IP Addresses were changed to protect the innocent&#8230;<br />
<span id="more-3366"></span></p>
<pre>
access-list INSIDE-IN line XXX remark ~
access-list INSIDE-IN line XXX remark - Traffic to SOMETHING via HTTPS
access-list INSIDE-IN line XXX extended permit tcp host 10.10.10.10 1.16.32.0 255.255.255.0 eq 443
access-list INSIDE-IN line XXX extended permit tcp host 10.10.10.10 6.23.86.0 255.255.255.0 eq 443
access-list INSIDE-IN line XXX extended permit tcp host 10.10.10.10 6.31.90.0 255.255.255.0 eq 443
access-list INSIDE-IN line XXX extended permit tcp host 10.10.10.10 6.24.10.0 255.255.255.0 eq 443
access-list INSIDE-IN line XXX extended permit tcp host 10.10.10.10 6.14.32.0 255.255.254.0 eq 443
access-list INSIDE-IN line XXX extended permit tcp host 10.10.10.10 2.51.10.0 255.255.252.0 eq 443
access-list INSIDE-IN line XXX extended permit tcp host 10.10.10.10 2.33.10.0 255.255.254.0 eq 443
access-list INSIDE-IN line XXX extended permit tcp host 10.20.10.10 1.16.32.0 255.255.255.0 eq 443
access-list INSIDE-IN line XXX extended permit tcp host 10.20.10.10 6.23.86.0 255.255.255.0 eq 443
access-list INSIDE-IN line XXX extended permit tcp host 10.20.10.10 6.31.90.0 255.255.255.0 eq 443
access-list INSIDE-IN line XXX extended permit tcp host 10.20.10.10 6.24.10.0 255.255.255.0 eq 443
access-list INSIDE-IN line XXX extended permit tcp host 10.20.10.10 6.14.32.0 255.255.254.0 eq 443
access-list INSIDE-IN line XXX extended permit tcp host 10.20.10.10 2.51.10.0 255.255.252.0 eq 443
access-list INSIDE-IN line XXX extended permit tcp host 10.20.10.10 2.33.10.0 255.255.254.0 eq 443
access-list INSIDE-IN line XXX remark ~
access-list INSIDE-IN line XXX remark - Traffic to SOMETHING via SSH
access-list INSIDE-IN line XXX extended permit tcp host 10.10.10.10 1.16.32.0 255.255.255.0 eq 22
access-list INSIDE-IN line XXX extended permit tcp host 10.10.10.10 6.23.86.0 255.255.255.0 eq 22
access-list INSIDE-IN line XXX extended permit tcp host 10.10.10.10 6.31.90.0 255.255.255.0 eq 22
access-list INSIDE-IN line XXX extended permit tcp host 10.10.10.10 6.24.10.0 255.255.255.0 eq 22
access-list INSIDE-IN line XXX extended permit tcp host 10.10.10.10 6.14.32.0 255.255.254.0 eq 22
access-list INSIDE-IN line XXX extended permit tcp host 10.10.10.10 2.51.10.0 255.255.252.0 eq 22
access-list INSIDE-IN line XXX extended permit tcp host 10.10.10.10 2.33.10.0 255.255.254.0 eq 22
access-list INSIDE-IN line XXX extended permit tcp host 10.20.10.10 1.16.32.0 255.255.255.0 eq 22
access-list INSIDE-IN line XXX extended permit tcp host 10.20.10.10 6.23.86.0 255.255.255.0 eq 22
access-list INSIDE-IN line XXX extended permit tcp host 10.20.10.10 6.31.90.0 255.255.255.0 eq 22
access-list INSIDE-IN line XXX extended permit tcp host 10.20.10.10 6.24.10.0 255.255.255.0 eq 22
access-list INSIDE-IN line XXX extended permit tcp host 10.20.10.10 6.14.32.0 255.255.254.0 eq 22
access-list INSIDE-IN line XXX extended permit tcp host 10.20.10.10 2.51.10.0 255.255.252.0 eq 22
access-list INSIDE-IN line XXX extended permit tcp host 10.20.10.10 2.33.10.0 255.255.254.0 eq 22
</pre>
<p>Next, I had to remember how to do an incremental substitution, luckily the Internet is a wonderful resource. We enter EX mode, and define a function named CountUp() &#8212; to do this, press : and enter the lines below.</p>
<pre>
 fun CountUp()
  let ret = g:i
  let g:i = g:i + 1
  return ret
endf
</pre>
<p>Now, we can perform a search and replacement using the function to fill in the data. We set i= to our first line number and pipe this into our search and replace statement.</p>
<pre>
:let i = 126 | %s/XXX/\=CountUp()/g
</pre>
<p>Instantly our line numbers are populated, and we&#8217;ve saved a substantial amount of time. I <3 Vim</p>
<pre>
access-list INSIDE-IN line 126 remark ~
access-list INSIDE-IN line 127 remark &#8211; Traffic to SOMETHING via HTTPS
access-list INSIDE-IN line 128 extended permit tcp host 10.10.10.10 1.16.32.0 255.255.255.0 eq 443
access-list INSIDE-IN line 129 extended permit tcp host 10.10.10.10 6.23.86.0 255.255.255.0 eq 443
access-list INSIDE-IN line 130 extended permit tcp host 10.10.10.10 6.31.90.0 255.255.255.0 eq 443
access-list INSIDE-IN line 131 extended permit tcp host 10.10.10.10 6.24.10.0 255.255.255.0 eq 443
access-list INSIDE-IN line 132 extended permit tcp host 10.10.10.10 6.14.32.0 255.255.254.0 eq 443
access-list INSIDE-IN line 133 extended permit tcp host 10.10.10.10 2.51.10.0 255.255.252.0 eq 443
access-list INSIDE-IN line 134 extended permit tcp host 10.10.10.10 2.33.10.0 255.255.254.0 eq 443
access-list INSIDE-IN line 135 extended permit tcp host 10.20.10.10 1.16.32.0 255.255.255.0 eq 443
access-list INSIDE-IN line 136 extended permit tcp host 10.20.10.10 6.23.86.0 255.255.255.0 eq 443
access-list INSIDE-IN line 137 extended permit tcp host 10.20.10.10 6.31.90.0 255.255.255.0 eq 443
access-list INSIDE-IN line 138 extended permit tcp host 10.20.10.10 6.24.10.0 255.255.255.0 eq 443
access-list INSIDE-IN line 139 extended permit tcp host 10.20.10.10 6.14.32.0 255.255.254.0 eq 443
access-list INSIDE-IN line 140 extended permit tcp host 10.20.10.10 2.51.10.0 255.255.252.0 eq 443
access-list INSIDE-IN line 141 extended permit tcp host 10.20.10.10 2.33.10.0 255.255.254.0 eq 443
access-list INSIDE-IN line 142 remark ~
access-list INSIDE-IN line 143 remark &#8211; Traffic to SOMETHING via SSH
access-list INSIDE-IN line 144 extended permit tcp host 10.10.10.10 1.16.32.0 255.255.255.0 eq 22
access-list INSIDE-IN line 145 extended permit tcp host 10.10.10.10 6.23.86.0 255.255.255.0 eq 22
access-list INSIDE-IN line 146 extended permit tcp host 10.10.10.10 6.31.90.0 255.255.255.0 eq 22
access-list INSIDE-IN line 147 extended permit tcp host 10.10.10.10 6.24.10.0 255.255.255.0 eq 22
access-list INSIDE-IN line 148 extended permit tcp host 10.10.10.10 6.14.32.0 255.255.254.0 eq 22
access-list INSIDE-IN line 149 extended permit tcp host 10.10.10.10 2.51.10.0 255.255.252.0 eq 22
access-list INSIDE-IN line 150 extended permit tcp host 10.10.10.10 2.33.10.0 255.255.254.0 eq 22
access-list INSIDE-IN line 151 extended permit tcp host 10.20.10.10 1.16.32.0 255.255.255.0 eq 22
access-list INSIDE-IN line 152 extended permit tcp host 10.20.10.10 6.23.86.0 255.255.255.0 eq 22
access-list INSIDE-IN line 153 extended permit tcp host 10.20.10.10 6.31.90.0 255.255.255.0 eq 22
access-list INSIDE-IN line 154 extended permit tcp host 10.20.10.10 6.24.10.0 255.255.255.0 eq 22
access-list INSIDE-IN line 155 extended permit tcp host 10.20.10.10 6.14.32.0 255.255.254.0 eq 22
access-list INSIDE-IN line 156 extended permit tcp host 10.20.10.10 2.51.10.0 255.255.252.0 eq 22
access-list INSIDE-IN line 157 extended permit tcp host 10.20.10.10 2.33.10.0 255.255.254.0 eq 22
</pre>
<p>This is the most versitile solution I could find, as it allows for multiple substitutions per line, another solution that is easier to remember, and quicker to implement, but will only perform one solution per line follows below.</p>
<pre>
:let i=126 | g/XXX/s//\=i/ | let i=i+1
</pre>
]]></content:encoded>
			<wfw:commentRss>http://routerjockey.com/2012/03/28/another-wicked-vim-tip/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MDS Fibre Channel Switching Basics for Network Engineers</title>
		<link>http://routerjockey.com/2011/12/23/mds-fiber-channel-switching-basics-for-network-engineers/</link>
		<comments>http://routerjockey.com/2011/12/23/mds-fiber-channel-switching-basics-for-network-engineers/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 15:05:25 +0000</pubDate>
		<dc:creator>Tony Mattke</dc:creator>
				<category><![CDATA[cisco]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[fiber channel]]></category>
		<category><![CDATA[mds]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://routerjockey.com/?p=3301</guid>
		<description><![CDATA[Recently I&#8217;ve been lucky enough to be challenged with learning a bit about Fibre Channel Switching, but I&#8217;m even luckier in that I&#8217;m getting to know it on a set of MDS switches running NX-OS (previously referred to as SAN-OS). So far, I&#8217;ve learned the basics of getting things to work, but nothing really beyond [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img src="http://routerjockey.com/wp-content/uploads/2011/12/FCB27327-1790-4CF2-A877-55F9D2B83038-300x225.jpg" alt="" title="FCB27327-1790-4CF2-A877-55F9D2B83038" width="300" height="225" class="alignright size-medium wp-image-3306" /><br />
Recently I&#8217;ve been lucky enough to be challenged with learning a bit about Fibre Channel Switching, but I&#8217;m even luckier in that I&#8217;m getting to know it on a set of MDS switches running NX-OS (previously referred to as SAN-OS). So far, I&#8217;ve learned the basics of getting things to work, but nothing really beyond that. As the SAN world has always been a mystery to me, I figured I would share what I&#8217;ve learned with other engineers that are at least looking for a baseline look into the storage network.</p>
<h4>New Terminology</h4>
<p>First, lets familureize ourselves with a few terms that we may run into when dealing with the very basics of FC switching&#8230; </p>
<ul>
<li><strong>WWN</strong>: World Wide Name, think 8-byte MAC address. Also pWWN/sWWN (Port/Switch WWN) &#8212; This is the addressing of the Fibre Channel world. All of our configs are going to use pWWNs (Port World Wide Names, which actually refer to the node, or N_port)</li>
<li><strong>vSAN</strong>: A vSAN is a virtual collection of ports, sort of like a VRF, or even a vDC (but within the same management plane) &#8212; Each port can only be a member of one vSANs. &#8212; From my understanding, This is a Cisco specific technology typically used to create at least one unique vSAN per switch. This defines the two (or more) distinct fabric paths.</li>
<li><strong>Zone</strong>: a Zone is a grouping of ports inside a vSAN used to control which devices can speak with other devices. Devices can be members of multiple zones. Devices in different Zones cannot speak to each other. &#8212; Think VLAN. </li>
<li><strong>N_port</strong>: Node Port &#8212; Could be a Host, or Storage device. </li>
<li><strong>F_port</strong>: Fabric port &#8212; Connects to an N_port</li>
<li><strong>FLOGI</strong>:  Fibre Channel Logins &#8212; Used to exchange device information. Including WWNs</li>
</ul>
<p><span id="more-3301"></span></p>
<h4>Configuration</h4>
<p>First, we&#8217;re going to define the group of ports we&#8217;re using. Descriptions are set, and since the MDS is licensed per port, you have to enable the license for that port. I also ensure that each of these ports are not shutdown.</p>
<pre>
interface fc1/1
  switchport description Controller A
  port-license acquire
  no shutdown

interface fc1/2
  switchport description Controller B
  port-license acquire
  no shutdown

interface fc1/15
  switchport description Blade Server Fabric A
  port-license acquire
  no shutdown

interface fc1/16
  switchport description Blade Server Fabric B
  port-license acquire
  no shutdown

interface fc1/17
  switchport description DMZ Server Fabric A
  port-license acquire
  no shutdown

interface fc1/18
  switchport description DMZ Server Fabric B
  port-license acquire
  no shutdown
</pre>
<p>Next up we&#8217;re going to configure the vSAN for this switch, and add the ports/interfaces to it. (Almost brings me back to configuring VLANS on HP switches&#8230; )</p>
<pre>
vsan database
  vsan 10 name "FABRIC_A"
  vsan 10 interface fc1/1
  vsan 10 interface fc1/2
  vsan 10 interface fc1/15
  vsan 10 interface fc1/16
  vsan 10 interface fc1/17
  vsan 10 interface fc1/18
</pre>
<p>Now that we have our ports inside the vSAN we can discover their PWWNs using the FLOGI database. We will need these for our fcalias groups below.</p>
<pre>
mds# sh flogi database
--------------------------------------------------------------------------------
INTERFACE        VSAN    FCID           PORT NAME               NODE NAME
--------------------------------------------------------------------------------
fc1/1            10    0x0f0100  50:0a:09:81:8d:8f:f8:ca 50:0a:09:80:8d:8f:f8:ca
fc1/2            10    0x0f0200  50:0a:09:81:9d:8f:f8:ca 50:0a:09:80:8d:8f:f8:ca
fc1/15           10    0x0f0300  20:41:00:05:73:e3:56:c0 20:14:00:05:73:e3:56:c1
fc1/15           10    0x0f0301  20:00:00:25:b5:0b:00:df 20:00:00:25:b5:00:00:8f
fc1/15           10    0x0f0302  20:00:00:25:b5:0b:00:ef 20:00:00:25:b5:00:00:9f
fc1/15           10    0x0f0304  20:00:00:25:b5:0b:00:bf 20:00:00:25:b5:00:00:6f
fc1/16           10    0x0f0000  20:42:00:05:73:e3:56:c0 20:14:00:05:73:e3:56:c1
fc1/16           10    0x0f0002  20:00:00:25:b5:0b:00:9f 20:00:00:25:b5:00:00:2f
fc1/16           10    0x0f0004  20:00:00:25:b5:0b:00:6f 20:00:00:25:b5:00:00:3f
fc1/16           10    0x0f0004  20:00:00:25:b5:0b:00:7f 20:00:00:25:b5:00:00:4f
fc1/17           10    0x0f0300  20:41:00:01:73:b3:26:a0 20:14:00:05:73:e3:56:c1
fc1/17           10    0x0f0301  20:00:00:25:b5:0a:00:ef 20:00:00:25:b5:00:00:8f
fc1/17           10    0x0f0302  20:00:00:25:b5:0a:00:df 20:00:00:25:b5:00:00:9f
fc1/17           10    0x0f0304  20:00:00:25:b5:0a:00:cf 20:00:00:25:b5:00:00:6f
fc1/18           10    0x0f0000  20:42:00:01:73:b3:26:a0 20:14:00:05:73:e3:56:c1
fc1/18           10    0x0f0002  20:00:00:25:b5:0a:00:5f 20:00:00:25:b5:00:00:2f
fc1/18           10    0x0f0004  20:00:00:25:b5:0a:00:bf 20:00:00:25:b5:00:00:3f
fc1/18           10    0x0f0004  20:00:00:25:b5:0a:00:8f 20:00:00:25:b5:00:00:4f
</pre>
<p>Here we&#8217;re defining logical groups of devices and identifying their PWWNs. Nothing too scary here.</p>
<pre>
fcalias name STORAGE vsan 10
    member pwwn 50:0a:09:81:8d:8f:f8:ca
    member pwwn 50:0a:09:81:9d:8f:f8:ca

fcalias name BLADE_SERVERS vsan 10
    member pwwn 20:00:00:25:b5:0b:00:df
    member pwwn 20:00:00:25:b5:0b:00:ef
    member pwwn 20:00:00:25:b5:0b:00:bf
    member pwwn 20:00:00:25:b5:0b:00:9f
    member pwwn 20:00:00:25:b5:0b:00:6f
    member pwwn 20:00:00:25:b5:0b:00:7f

fcalias name DMZ_SERVERS vsan 10
    member pwwn 20:00:00:25:b5:0a:00:ef
    member pwwn 20:00:00:25:b5:0a:00:df
    member pwwn 20:00:00:25:b5:0a:00:cf
    member pwwn 20:00:00:25:b5:0a:00:5f
    member pwwn 20:00:00:25:b5:0a:00:bf
    member pwwn 20:00:00:25:b5:0a:00:8f
</pre>
<p>And finally, this is where the proverbial &#8220;magic&#8221; happens. We&#8217;re defining a zone called SERVERS_TO_STORAGE inside vsan 10 and adding our fcalias groups as members of the zone. This allows these group members to communicate with each other. This zone is segmented from our DMZ_SERVERS_TO_STORAGE zone, so that there is no change of communication between our DMZ_SERVERS and BLADE_SERVERS.</p>
<pre>
zone name BLADE_SERVERS_TO_STORAGE vsan 10
    member fcalias STORAGE
    member fcalias BLADE_SERVERS

zone name DMZ_SERVERS_TO_STORAGE vsan 10
    member fcalias STORAGE
    member fcalias DMZ_SERVERS
</pre>
<h4>Verification</h4>
<p>From what I understand the only practical verification you can do is checking your host to ensure you can see the LUNS presented by your storage array. With any luck, everything should show up. If not, double check the PWWNS used in the fcalias groups.</p>
<h4>Conclusion</h4>
<p>While I have given you little more than a 30-second education on fibre channel, I hope it&#8217;s enough that when your storage engineer rambles on endlessly about zoning, you at least have a clue as to what he is actually talking about. And as long as your infrastructure isn&#8217;t too complicated, I&#8217;m sure you could figure out how to connect your new UCS Blades to their storage without their help. That line is getting awful blurred these days, you might find yourself having to learn more about storage because of it.</p>
]]></content:encoded>
			<wfw:commentRss>http://routerjockey.com/2011/12/23/mds-fiber-channel-switching-basics-for-network-engineers/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Brocade and VCS&#8230; quite impressive</title>
		<link>http://routerjockey.com/2011/11/16/brocade-and-vcs-quite-impressive/</link>
		<comments>http://routerjockey.com/2011/11/16/brocade-and-vcs-quite-impressive/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 18:18:33 +0000</pubDate>
		<dc:creator>Tony Mattke</dc:creator>
				<category><![CDATA[networking]]></category>
		<category><![CDATA[brocade]]></category>
		<category><![CDATA[NFD2]]></category>
		<category><![CDATA[TechFieldDay]]></category>
		<category><![CDATA[vcs]]></category>

		<guid isPermaLink="false">http://routerjockey.com/?p=3083</guid>
		<description><![CDATA[Our second visit on day 2 of Network Field day was Brocade, who incidentally supplied us with a great lunch! We spent a little time going through the expected marketing presentation, fortunately they kept it short and to the point&#8230; Next up was another short presentation from Jon Hudson, aka @the_socialist, who started things out [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img src="http://routerjockey.com/wp-content/uploads/2011/10/wakeup.gif" alt="" title="wakeup" width="219" height="165" class="alignright size-full wp-image-3268" style="margin-right:20px" />Our second visit on day 2 of Network Field day was Brocade, who incidentally supplied us with a great lunch! We spent a little time going through the expected marketing presentation, fortunately they kept it short and to the point&#8230; Next up was another short presentation from Jon Hudson, aka <a href="http://twitter.com/the_socialist">@the_socialist</a>, who started things out with a overview of Brocade and their core product line. Fortunately for us, Jon had done his homework and cropped his presentation down to the essentials which aided in keeping our short attention-span on focus. All of this lead up to the surprise they had waiting for us. A live Brocade VCS lab. Yes, you read that correctly. A full, hands on lab. Not a demo, not a video. </p>
<p style="text-align:center"><iframe src="http://player.vimeo.com/video/31288559?byline=0&amp;portrait=0" width="601" height="338" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe></p>
<p><span id="more-3083"></span><br />
For the lab we were broken up into 5 teams of two engineers. Each team had their own switch, with console access, and some OM3 fiber patch cables. They also gave us a packet of information with information about configuring VCS and a list of tasks to accomplish. The icing on the cake was that they wanted us to compete, and allowed us to sabbotage&#8230; Serioulsy? Quite a can of worms to open in a room full of the best and brightest engineers. Luckily enough, my partner was the illustrious Greg Ferro, aka the <a href="http://etherealmind.com/">EtherealMind</a>. Next to us, Tom Hollingsworth (<a href="http://networkingnerd.net/">NetworkingNerd</a>), and Jeff Fry (<a href="http://www.fryguy.net/">FryGuy</a>) joined forces. I knew right out of the gate that they would be our biggest rivals. Once we got started, Greg and I both noted that Brocade&#8217;s CLI was very similar to Cisco&#8217;s IOS. After some basic configuration tasks, we were ready to cable our switch to the core switches. Greg and I headed off with our OM3 patch cables into the data center right on the coat tails of Tom and Jeff. Once they were patched and headed back in, Greg got us patched in, while I trade out their cables&#8230; now, whether or not their LC connectors were slightly tampered with or not is a matter of opinion. Lets just say I was rather tempted to flip send/receive on one of the connectors. Unfortunatley, this is also where things started going downhill. Tom rebooted our switch a couple of times, and ended up changing the password. I chose to bide my time, waiting until we got the password back, and they were on their final configuration steps. Lets just say server was in the middle of a vMotion when it lost connectivity. :) By the time they got things sorted out, we were back up and had already vMotioned our server completing the list of tasks. It was at this point in time that I realized how much entertainment we were providing the team at Brocade, some of which were about to fall out of their chairs.</p>
<p style="text-align:center"><iframe src="http://player.vimeo.com/video/31288654?byline=0&amp;portrait=0" width="601" height="338" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe></p>
<p>After the lab, we started up a Q&#038;A with the Brocade team, to paraphrase a quote from @NetworkingNerd, Ivan Pepelnjak and Jon Hudson put on an impressive sparing match over their TRILL implementation (VCS). During most of this time I was having a realization of how powerful their entire presentation was&#8230; Starting from a quick overview of Brocade, to the lab, and then holding a Q&#038;A&#8230; it was all a very well orchestrated power play on Brocade&#8217;s part. I realized how simple their VCS implementation is, the configuration on the fabric switches is just but a few lines, and can obviously be configured by a bunch of caffeine doped apes. (Please ignore my previous comment regarding the best and brightest engineers.) Brocade has done their homework in many ways&#8230; and it really made me think long and hard about Brocade and where their going. In a matter of speaking, I&#8217;ve had a Brocade wake-up call. (Hence the &#8220;This is Jack sleeping on a plane&#8221; gif at the top of this article.. ) They&#8217;ve made some bold moves in the Ethernet market that will get the attention of engineers around the globe.</p>
]]></content:encoded>
			<wfw:commentRss>http://routerjockey.com/2011/11/16/brocade-and-vcs-quite-impressive/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Juniper QFabric, Junosphere, Automation, and More</title>
		<link>http://routerjockey.com/2011/11/04/juniper-qfabric-junosphere-automation-and-more/</link>
		<comments>http://routerjockey.com/2011/11/04/juniper-qfabric-junosphere-automation-and-more/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 14:08:13 +0000</pubDate>
		<dc:creator>Tony Mattke</dc:creator>
				<category><![CDATA[networking]]></category>
		<category><![CDATA[juniper]]></category>
		<category><![CDATA[junos]]></category>
		<category><![CDATA[OpenFlow]]></category>
		<category><![CDATA[qfabric]]></category>

		<guid isPermaLink="false">http://routerjockey.com/?p=3082</guid>
		<description><![CDATA[The second day of Network Field Day 2 started early at the Juniper EBC, luckily Abner Germanow was prepared with breakfast for the weary and slightly hung over delegates. He gave us an overview of Juniper Networks as a whole including some back history of how they started innovating by putting routing code into ASICs. [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img src="http://routerjockey.com/wp-content/uploads/2011/10/anti-stack-150x150.png" alt="" title="anti-stack" width="150" height="150" class="alignright size-thumbnail wp-image-3085" style="margin-right:20px;" /><br />
The second day of Network Field Day 2 started early at the Juniper EBC, luckily Abner Germanow was prepared with breakfast for the weary and slightly hung over delegates. He gave us an overview of Juniper Networks as a whole including some back history of how they started innovating by putting routing code into ASICs. He quickly handed of to Dan Backman who started off by talking about how Junos has developed itself around workflows. He demonstrated the extensibility of Junos through tools like XML and API calls. Because of the way it was developed, they have the unique ability to provide powerful scripting and automation tools. Dan actually told us that the entire Junos back end is XML, which is VERY interesting. Next he brought up a live Juniper lab to show us the real power of their scripting/automation. This is the first time I&#8217;ve heard of Junos commit scripts, which I now wish I had in IOS. During this entire demonstration all of delegates really seemed to enjoy the flexibility Dan was demonstrating, by the end, he had us all drooling over it. And that was before he dropped the bombshell&#8230; his entire demonstration had been running inside of Junosphere. Before we were able to bombard him with questions about how to get access to it, he showed some a rather impressive demo using Cariden Mate, and an IS-IS db gathered from what appears to be the I2 backbone. Very cool stuff. Cariden was able to generate a topology from the database, and their plugin for Cariden was able to generate the appropriate Junosphere configuration/startup files. Several times during his presentation he made reference to there being &#8220;one more thing&#8221; or some secret he wanted to share. It wasn&#8217;t long before we learned they were going to give us access to Junosphere for testing! Be on the lookout for my Junosphere review once I&#8217;m able to check it out.</p>
<p style="text-align:center">
<iframe src="http://player.vimeo.com/video/31477811?byline=0&amp;portrait=0" width="601" height="338" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe>
</p>
<p><span id="more-3082"></span><br />
Next was &#8220;Shoeless&#8221; Dave Ward CTO of Juniper&#8217;s Platform Division, previously with Cisco Systems for 12 years where he designed little things like the CRS-1, CRS-3, and the ASR 9000 series.. definitely not a light weight. David was also one of the presenters at the Tech Field Day Open Flow Symposium earlier in the week, and as it happens he was back to talk about just that. This is a rather deep dive into Juniper&#8217;s approach for Programmable Networking, and I&#8217;m not sure I truly do it justice. Juniper has developed their controller inside a orchestration platform they&#8217;re calling Junos Space. From the sounds of it, Space is a layer that interacts with a fully comparable OpenFlow controller, David says they even have gear from Big Switch Networks running on their Space platform. He went on to talk about how Juniper has begun to market Service Engineered Paths (SEP), which are simply OpenFlow enabled Traffic Engineered (TE) paths can be programmed with permit/deny statements in front of them for particular service flows. This enables selective traffic path redirection based upon ephemeral data, such as LSPs being requested/configured via the OpenFlow software. This is very cool stuff, auto-magic end-to-end soft MPLS PVCs dynamically configured by the controller! Make sure you watch the video, it&#8217;s definitely worth the time.</p>
<p style="text-align:center">
<iframe src="http://player.vimeo.com/video/31487965?byline=0&amp;portrait=0" width="601" height="338" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe>
</p>
<p>Next up was a presentation from one of Juniper&#8217;s acquisitions, Altor Networks and their virtual firewall appliance, vGW. This is very similar to Cisco&#8217;s VSG in that it enables you to firewall all communications within the VMware cluster including those flows going between VMs. Since this isn&#8217;t exactly anything new, I&#8217;m not going to spend a lot of time covering it. In it&#8217;s simplest form, vGW is a high-performance hypervisor based stateful firewall with an integrated IDS, and AntiVirus protection. <b>Update</b>: Apparently I missed some details during this discussion. Luckily enough, Ivan has come out with <a href="http://blog.ioshints.info/2011/11/junipers-virtual-gateway-virtual.html">another great post</a> letting us know the significance of what Juniper has done with their vGW.</p>
<p style="text-align:center">
<iframe src="http://player.vimeo.com/video/31496293?byline=0&amp;portrait=0" width="601" height="338" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe>
</p>
<p>Last but certainly not least was a presentation on QFabric. Juniper&#8217;s answer to Cisco&#8217;s Fabric Path, Brocade&#8217;s VCS, and of course the industry standard TRILL. It is of course a proprietary solution, but in some cases that can be a non-issue. Of course, at around 5:20 into the vidoe, Juniper presented us with their own version of &#8220;<a href="http://datacenteroverlords.com/2011/11/03/the-problem/">the problem</a>&#8220;, a series of slides that by this point in time we have seen over and over again&#8230; Although once Tony Bourke mentioned that we were well aware of &#8220;the problem&#8221; he recovered quickly and moved on. (Kudos for Tony for quite a tactful engagement and remediation of the situation!) Again, there isn&#8217;t a lot of ground breaking going on during this talk so I wont spend much time here&#8230; But if you&#8217;re dying for more information check out the artciles at <a href="http://blog.ioshints.info/search?q=QFabric">IOShints</a> and the  <a href="http://packetpushers.net/?s=qfabric">Packet Pushers</a> Blog / Podcast.</p>
<p style="text-align:center">
<iframe src="http://player.vimeo.com/video/31507503?byline=0&amp;portrait=0" width="601" height="338" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe>
</p>
<p>The last stop was their proof of concept lab which for a bunch of networking geeks is a great way to earn extra credit. Who doesn&#8217;t love a data center? Even better, the entire data center was a lab! Here are a few photos from the EBC Lab.</p>

<a href='http://routerjockey.com/2011/11/04/juniper-qfabric-junosphere-automation-and-more/img_1092/' title='Behold! QFabric!'><img width="150" height="150" src="http://routerjockey.com/wp-content/uploads/2011/11/IMG_1092-150x150.jpg" class="attachment-thumbnail" alt="Behold! QFabric!" title="Behold! QFabric!" /></a>
<a href='http://routerjockey.com/2011/11/04/juniper-qfabric-junosphere-automation-and-more/img_1095/' title='Some EX Switches.. (IIRC)'><img width="150" height="150" src="http://routerjockey.com/wp-content/uploads/2011/11/IMG_1095-150x150.jpg" class="attachment-thumbnail" alt="Some EX Switches.. (IIRC)" title="Some EX Switches.. (IIRC)" /></a>
<a href='http://routerjockey.com/2011/11/04/juniper-qfabric-junosphere-automation-and-more/img_1102/' title='mmmm lab cabling!'><img width="150" height="150" src="http://routerjockey.com/wp-content/uploads/2011/11/IMG_1102-150x150.jpg" class="attachment-thumbnail" alt="mmmm lab cabling!" title="mmmm lab cabling!" /></a>
<a href='http://routerjockey.com/2011/11/04/juniper-qfabric-junosphere-automation-and-more/img_1104/' title='Kurt asks, &quot;Can I lick it?&quot;'><img width="150" height="150" src="http://routerjockey.com/wp-content/uploads/2011/11/IMG_1104-150x150.jpg" class="attachment-thumbnail" alt="Kurt asks, &quot;Can I lick it?&quot;" title="Kurt asks, &quot;Can I lick it?&quot;" /></a>
<a href='http://routerjockey.com/2011/11/04/juniper-qfabric-junosphere-automation-and-more/img_1107/' title='Cisco CRS-1 -- Trade in'><img width="150" height="150" src="http://routerjockey.com/wp-content/uploads/2011/11/IMG_1107-150x150.jpg" class="attachment-thumbnail" alt="Cisco CRS-1 -- Trade in" title="Cisco CRS-1 -- Trade in" /></a>
<a href='http://routerjockey.com/2011/11/04/juniper-qfabric-junosphere-automation-and-more/img_1108/' title='Cisco 12k BFR '><img width="150" height="150" src="http://routerjockey.com/wp-content/uploads/2011/11/IMG_1108-150x150.jpg" class="attachment-thumbnail" alt="Cisco 12k BFR" title="Cisco 12k BFR" /></a>

]]></content:encoded>
			<wfw:commentRss>http://routerjockey.com/2011/11/04/juniper-qfabric-junosphere-automation-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gigamon and the Great Pumpkin</title>
		<link>http://routerjockey.com/2011/11/03/gigamon-and-the-great-pumpkin/</link>
		<comments>http://routerjockey.com/2011/11/03/gigamon-and-the-great-pumpkin/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 15:13:16 +0000</pubDate>
		<dc:creator>Tony Mattke</dc:creator>
				<category><![CDATA[networking]]></category>
		<category><![CDATA[Gigamon]]></category>
		<category><![CDATA[NFD2]]></category>
		<category><![CDATA[TechFieldDay]]></category>

		<guid isPermaLink="false">http://routerjockey.com/?p=3059</guid>
		<description><![CDATA[I could&#8217;ve just as easily called this article Gigamon&#8230; fixing problems you didn&#8217;t know about or Why Gigamon scares the crap out of me &#8212; but I wont, because they already did! But what I will say, is that Gigamon has become a very interesting product to me&#8230; Gigamon&#8217;s product line-up mainly consists of optical [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://routerjockey.com/wp-content/uploads/2011/10/220px-GreatPumpkin.jpg" rel="lightbox[3059]"><img src="http://routerjockey.com/wp-content/uploads/2011/10/220px-GreatPumpkin.jpg" alt="" title="GreatPumpkin" width="220" height="227" class="alignright size-full wp-image-3078" style="clear:none; margin-right:20px" /></a><br />
I could&#8217;ve just as easily called this article <a href="http://www.standalone-sysadmin.com/blog/2011/10/gigamon-fixing-problems-you-didnt-know-about/">Gigamon&#8230; fixing problems you didn&#8217;t know about</a> or <a href="http://evilrouters.net/2011/10/31/why-gigamon-scares-the-crap-out-of-me/">Why Gigamon scares the crap out of me</a> &#8212; but I wont, because they already did! But what I will say, is that Gigamon has become a very interesting product to me&#8230; </p>
<p>Gigamon&#8217;s product line-up mainly consists of optical fiber and electrical copper taps for network connections, and a series of aggregation taps with the capability to filter traffic being tapped and aggregated. Now, why do I find this interesting? Well, it all goes hand in hand with why your enterprise or ISP may be interested in their products&#8230;<br />
<span id="more-3059"></span></p>
<p style="text-align:center">
<object width="320" height="266" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" id="myFlashContent"><param value="true" name="allowfullscreen"><param value="always" name="allowscriptaccess"><param value="autoplay=false&amp;vid=20965%2F1103420" name="flashvars"><param value="http://www.ustream.tv/flash/viewer.swf" name="src"><embed width="320" height="266" flashvars="autoplay=false&amp;vid=20965%2F1103420" allowscriptaccess="always" allowfullscreen="true" src="http://www.ustream.tv/flash/viewer.swf" type="application/x-shockwave-flash" id="myFlashContent"></object>
</p>
<p>Do you run an IDS? If you&#8217;re not, should you? I&#8217;m guess the answer to one of those is a resounding yes. Well, how are you going to get the data to your IDS? A hub? No, I didn&#8217;t think so. Well, how about a SPAN session? Oh, your span session is flaky, or it can&#8217;t monitor enough source interfaces? Maybe you just want to filter some of the traffic out. Well, now you need Gigamon&#8217;s help. Buy yourself a TAP and feed that into one of their VUE products where you can aggregate and filter the data down to your IDS. Say you want to make a second copy of that traffic, well guess what? You can do that too!</p>
<p><img alt="" src="http://www.gigamon.com/stuff/contentmgr/files/1/fbf188c5444eb58177c8a8db342f4539/misc/hd8_reflection1.jpg" title="Gigamon HD8" class="aligncenter" width="250" height="393" /></p>
<p>At the high end of the spectrum their GigaVUE-HD8 supports a massive 96 10Gb Ethernet ports with a whopping 1Tbps non-blocking backplane. You may of also noticed that this device is actually the name sake of this post&#8230; the Great Pumpkin. As impressive as this is, they also certainly offer smaller devices aimed towards the enterprise market like the <a href="http://www.gigamon.com/gigavue-212-traffic-visibility-network-switch">GigaVUE-212</a> which still offers 8xGigE or SFP, 2x10Gb SFP+ ports, and you can add an additional 4xSFP ports via an expansion module..</p>
<p><img alt="" src="http://www.gigamon.com/stuff/contentmgr/files/1/9c8a61ef1b4e83d3ec5c3969981064ee/image/gigavue_212.png" title="GigaVUE 212" class="aligncenter" width="670" height="125" /></p>
<p>If you&#8217;re still curious about how they work, or what they do, check out this great video on their Flow Mapping technology. It really shows just how powerful their system is and how well it would work in most any scenario you could come up with.</p>
<p style="text-align:center">
<iframe width="560" height="315" src="http://www.youtube.com/embed/iWY-_m2Lx7o" frameborder="0" allowfullscreen></iframe>
</p>
<p>So why does Gigamon scare some people? Well, it may be their bright orange chasssis, or it could be the fact that our government has gone all big brother while trying to protect us from the crazies of the world&#8230; (not that I really blame them) It stands to reason with Gigamon&#8217;s own <a href="http://twitter.com/FedVUE">Gigamon Federal</a> twitter account, you don&#8217;t have to wonder who some of their largest customers are. But honestly, you&#8217;re either going to be scared to death of them, or think that Gigamon is the greatest product that you never knew existed. </p>
<h4>Tech Field Day Disclaimer</h4>
<p>Gigamon was a sponsoring vendor for Network Field Day 2 and as such they my travel expenses were indirectly paid in part by them. They also gave me top notch swag&#8230; However, I was not paid to write about them, nor was I asked to give them special consideration. Any opinion expressed by me is mine and mine alone.</p>
]]></content:encoded>
			<wfw:commentRss>http://routerjockey.com/2011/11/03/gigamon-and-the-great-pumpkin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>NEC and ProgrammableFlow Switching</title>
		<link>http://routerjockey.com/2011/11/02/nec-and-programmableflow-switching/</link>
		<comments>http://routerjockey.com/2011/11/02/nec-and-programmableflow-switching/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 03:07:43 +0000</pubDate>
		<dc:creator>Tony Mattke</dc:creator>
				<category><![CDATA[networking]]></category>
		<category><![CDATA[NEC]]></category>
		<category><![CDATA[NFD2]]></category>
		<category><![CDATA[OpenFlow]]></category>
		<category><![CDATA[TechFieldDay]]></category>

		<guid isPermaLink="false">http://routerjockey.com/?p=3055</guid>
		<description><![CDATA[NEC is currently the only Vendor that is shipping an OpenFlow enabled product today. So naturally, their presentation led off with a message about what they&#8217;re bringing to the market. If you don&#8217;t know anything about OpenFlow, please read my previous post covering the OpenFlow Symposium. Currently, NEC is shipping their OpenFlow implementation as ProgrammableFlow [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img src="http://routerjockey.com/wp-content/uploads/2011/11/nec2.png" alt="" title="NEC" width="300" height="188" class="alignright size-full wp-image-3191" style="clear:none; margin-right:20px"/></p>
<p>NEC is currently the only Vendor that is shipping an OpenFlow enabled product today. So naturally, their presentation led off with a message about what they&#8217;re bringing to the market. If you don&#8217;t know anything about OpenFlow, please read my previous post covering the <a href="http://routerjockey.com/2011/10/30/the-openflow-symposium/">OpenFlow Symposium</a>.</p>
<p>Currently, NEC is shipping their OpenFlow implementation as ProgrammableFlow products which include a ProgrammableFlow Controller (PFC), and a ProgrammableFlow enabled switches. Unfortunately, I&#8217;m unable to find any documentation on these products as NEC&#8217;s actual website was written by someone who enjoys a difficult maze&#8230; (the only page I could find on ProgrammableFlow was <a href="http://www.nec.com/global/solutions/nsp/mwc2010/exhibits_01.html">here</a>) But I digress. The PFC it&#8217;s self is just a Linux box with some custom software implementing the OpenFlow 1.0 standard. In addition to acting as part of your control plane, it can also do topology discovery via LLDP, and perform fault detection and possibly even repair. The graphical representation NEC gives you of your network with their controller software is rather nice, it&#8217;s not just a visualization of your netowrk, but it also provides end to end monitoring of each individual flow transported over the network. As for NEC&#8217;s ProgrammableFlow switch, it is a 48-port GigE switch with 4x 10Gb SFP+ uplink ports providing line rate multi-layer switching, and maintaining up to 160k OpenFlow &#8220;flows&#8221;. The switch itself can operate as a hybrid either allow you to control it via an OpenFlow controller, or operate as a traditional managed switch. NEC has also developed a vSwitch for Windows 8&#8242;s Hyper-V, this alone should prove to be rather interesting as NEC will hit the ground running on virtual switching with the new release of Windows Server 8.<br />
<span id="more-3055"></span></p>
<p style="text-align:center">
<object width="320" height="266" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" id="myFlashContent"><param value="true" name="allowfullscreen"><param value="always" name="allowscriptaccess"><param value="autoplay=false&amp;vid=20965%2F1103407" name="flashvars"><param value="http://www.ustream.tv/flash/viewer.swf" name="src"><embed width="320" height="266" flashvars="autoplay=false&amp;vid=20965%2F1103407" allowscriptaccess="always" allowfullscreen="true" src="http://www.ustream.tv/flash/viewer.swf" type="application/x-shockwave-flash" id="myFlashContent"></object>
</p>
<h4>Conclusion</h4>
<p>So, what&#8217;s with all the OpenFlow hype? The 30-second version is that ProgrammableFlow/OpenFlow-based networks can help streamline network management by supplying automated/programmable services such as automated re-configuration. This programmability not only helps keep your network up, but also decreases the cost to manage the network. Like I said, if you want more go watch the <a href="http://routerjockey.com/2011/10/30/the-openflow-symposium/">Symposium</a>. Honestly, I think time will only tell what the futures holds for NEC and ProgrammableFlow. The adoption of radical new technology can be extremely slow and tedious *cough*<b>IPv6</b>*cough* &#8212; while I am excited about the technology, I am skeptical if it will be adopted. Just because you have the best technology doesn&#8217;t mean you win the war. *cough*<b>BetaMax</b>*cough* &#8212; that said, who has NEC switches in their data center? I know I don&#8217;t, nor have I EVER seen any. Hopefully the future is bright for them, and I certainly wish them luck. But I&#8217;m not holding my breath until I get to put my hands on any NEC ProgrammableFlow gear&#8230; As a matter of fact, as was excitedly going through the details with my boss, he was quick to point out that there was no way we were buying it. I had to chuckle, but I knew he was right. Hopefully I&#8217;m wrong, and there is a huge market out there for them. They&#8217;ve certainly put the right team on developing the product, but now they need to step up and market it properly&#8230;</p>
<h4>Tech Field Day Disclaimer</h4>
<p>NEC was a sponsoring vendor for Network Field Day 2 and as such they my travel expenses were indirectly paid in part by them. They also gave me swag&#8230; However, I was not paid to write about them, nor was I asked to give them special consideration. Any opinion expressed by me is mine and mine alone.</p>
]]></content:encoded>
			<wfw:commentRss>http://routerjockey.com/2011/11/02/nec-and-programmableflow-switching/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Network Field Day 2 &#8212; Comic Edition</title>
		<link>http://routerjockey.com/2011/10/31/network-field-day-2-comic-edition/</link>
		<comments>http://routerjockey.com/2011/10/31/network-field-day-2-comic-edition/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 01:02:29 +0000</pubDate>
		<dc:creator>Tony Mattke</dc:creator>
				<category><![CDATA[none]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[NFD2]]></category>

		<guid isPermaLink="false">http://routerjockey.com/?p=3143</guid>
		<description><![CDATA[During the coarse of NFD2 I found an iPhone app called Halftone, and later, one named ComicStrip that allow you to add some fun effects and speech bubbles to your photos&#8230; So, I started in on some of the photos that I took during the trip. After putting a few of them on twitter they [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>During the coarse of NFD2 I found an iPhone app called Halftone, and later, one named ComicStrip that allow you to add some fun effects and speech bubbles to your photos&#8230; So, I started in on some of the photos that I took during the trip. After putting a few of them on twitter they got some pretty good responses. Earlier today, I asked a couple people if I should put them all up on my blog as a collection, so here it is, all of the images I have created thus far. Some of them may not make much sense unless you were there, but I hope they&#8217;re humorous nonetheless. If you have any questions feel free to ask and I&#8217;ll try to explain&#8230; </p>
<p style="text-align:center">
<a href="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1109.jpg" rel="lightbox[3143]"><img src="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1109-300x230.jpg" alt="" title="Kurt - Licking Juniper" width="300" height="230" class="size-medium wp-image-3151" /></a><br />
<span id="more-3143"></span><br />
<a href="http://routerjockey.com/wp-content/uploads/2011/10/Ac4DZVFCQAIJRI-.jpg" rel="lightbox[3143]"><img src="http://routerjockey.com/wp-content/uploads/2011/10/Ac4DZVFCQAIJRI--300x231.jpg" alt="" title="Tom&#039;s Bald Spot" width="300" height="231" class="size-medium wp-image-3145" /></a><br />
<a href="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1077.jpg" rel="lightbox[3143]"><img src="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1077-300x230.jpg" alt="" title="Seriously - Move on" width="300" height="230" class="size-medium wp-image-3148" /></a><br />
<a href="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1079.jpg" rel="lightbox[3143]"><img src="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1079-300x230.jpg" alt="" title="Unicorns as a Service" width="300" height="230" class="size-medium wp-image-3149" /></a><br />
<a href="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1088.jpg" rel="lightbox[3143]"><img src="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1088-230x300.jpg" alt="" title="Siri -- Unicorn Bacon" width="230" height="300" class="size-medium wp-image-3150" /></a><br />
<a href="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1152.jpg" rel="lightbox[3143]"><img src="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1152-300x200.jpg" alt="" title="Kurt - Bush" width="300" height="200" class="size-medium wp-image-3159" /></a><br />
<a href="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1156.jpg" rel="lightbox[3143]"><img src="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1156-300x230.jpg" alt="" title="Ivan - MPLS" width="300" height="230" class="size-medium wp-image-3162" /></a><br />
<a href="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1154.jpg" rel="lightbox[3143]"><img src="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1154-300x200.jpg" alt="" title="Bacon Bacon Bacon Bacon" width="300" height="200" class="size-medium wp-image-3160" /></a><br />
<a href="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1146.jpg" rel="lightbox[3143]"><img src="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1146-300x200.jpg" alt="" title="Show us something epic" width="300" height="200" class="size-medium wp-image-3156" /></a><br />
<a href="http://routerjockey.com/wp-content/uploads/2011/10/Ac3omtPCEAAuvV9.jpg" rel="lightbox[3143]"><img src="http://routerjockey.com/wp-content/uploads/2011/10/Ac3omtPCEAAuvV9-300x231.jpg" alt="" title="Brocade&#039;s Secret Sauce" width="300" height="231" class="size-medium wp-image-3144" /></a><br />
<a href="http://routerjockey.com/wp-content/uploads/2011/10/Ac4Ep_mCAAAkNVS.jpg" rel="lightbox[3143]"><img src="http://routerjockey.com/wp-content/uploads/2011/10/Ac4Ep_mCAAAkNVS-300x231.jpg" alt="" title="Brocade had the Awesomesauce too" width="300" height="231" class="size-medium wp-image-3146" /></a><br />
<a href="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1121.jpg" rel="lightbox[3143]"><img src="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1121-300x230.jpg" alt="" title="Steven - Camera" width="300" height="230" class="size-medium wp-image-3152" /></a><br />
<a href="http://routerjockey.com/wp-content/uploads/2011/10/Ac45ny1CEAAyLG3.jpg" rel="lightbox[3143]"><img src="http://routerjockey.com/wp-content/uploads/2011/10/Ac45ny1CEAAyLG3-300x231.jpg" alt="" title="Servant Waits" width="300" height="231" class="size-medium wp-image-3147" /></a><br />
<a href="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1143.jpg" rel="lightbox[3143]"><img src="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1143-300x230.jpg" alt="" title="Does it run Java?" width="300" height="230" class="size-medium wp-image-3153" /></a><br />
<a href="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1144.jpg" rel="lightbox[3143]"><img src="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1144-300x230.jpg" alt="" title="Behold Q-Fabric" width="300" height="230" class="size-medium wp-image-3154" /></a><br />
<a href="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1150.jpg" rel="lightbox[3143]"><img src="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1150-300x230.jpg" alt="" title="The last supper" width="300" height="230" class="size-medium wp-image-3157" /></a><br />
<a href="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1155.jpg" rel="lightbox[3143]"><img src="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1155-300x230.jpg" alt="" title="Brandon - Bacon" width="300" height="230" class="size-medium wp-image-3161" /></a><br />
<a href="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1157.jpg" rel="lightbox[3143]"><img src="http://routerjockey.com/wp-content/uploads/2011/10/IMG_1157-300x230.jpg" alt="" title="Car Bombs" width="300" height="230" class="size-medium wp-image-3163" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://routerjockey.com/2011/10/31/network-field-day-2-comic-edition/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

