<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for 6200networks.com</title>
	<atom:link href="http://6200networks.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://6200networks.com</link>
	<description>by Joe Harris, CCIE# 6200</description>
	<pubDate>Thu, 28 Aug 2008 07:36:15 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>Comment on New Cisco Certification Logo&#8217;s? by etherealmind</title>
		<link>http://6200networks.com/2008/08/25/new-cisco-certification-logos/#comment-1795</link>
		<dc:creator>etherealmind</dc:creator>
		<pubDate>Tue, 26 Aug 2008 11:08:13 +0000</pubDate>
		<guid isPermaLink="false">60769630#comment-1795</guid>
		<description>I also agree. I won't be proud of putting that on my resume or web site.

Urh, what are they thinking ?</description>
		<content:encoded><![CDATA[<p>I also agree. I won&#8217;t be proud of putting that on my resume or web site.</p>
<p>Urh, what are they thinking ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Cisco Certification Logo&#8217;s? by Stephen Riddle</title>
		<link>http://6200networks.com/2008/08/25/new-cisco-certification-logos/#comment-1793</link>
		<dc:creator>Stephen Riddle</dc:creator>
		<pubDate>Tue, 26 Aug 2008 10:34:54 +0000</pubDate>
		<guid isPermaLink="false">60769630#comment-1793</guid>
		<description>I'm no fan of the new logos either. Looks like Cisco may be altering the professional level designations in the near future...</description>
		<content:encoded><![CDATA[<p>I&#8217;m no fan of the new logos either. Looks like Cisco may be altering the professional level designations in the near future&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Cisco Certification Logo&#8217;s? by Joe Harris</title>
		<link>http://6200networks.com/2008/08/25/new-cisco-certification-logos/#comment-1792</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Tue, 26 Aug 2008 01:07:14 +0000</pubDate>
		<guid isPermaLink="false">60769630#comment-1792</guid>
		<description>I'm afraid so and I'm no fan of them either :-)</description>
		<content:encoded><![CDATA[<p>I&#8217;m afraid so and I&#8217;m no fan of them either <img src='http://6200networks.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Cisco Certification Logo&#8217;s? by CN7</title>
		<link>http://6200networks.com/2008/08/25/new-cisco-certification-logos/#comment-1791</link>
		<dc:creator>CN7</dc:creator>
		<pubDate>Tue, 26 Aug 2008 00:36:35 +0000</pubDate>
		<guid isPermaLink="false">60769630#comment-1791</guid>
		<description>is CSCO serious with this? these logos are disgustingly ugly..the current logos are just fine.. why does everyone have to go and ruin a good thing!</description>
		<content:encoded><![CDATA[<p>is CSCO serious with this? these logos are disgustingly ugly..the current logos are just fine.. why does everyone have to go and ruin a good thing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone to ISR by Mark Kohlmann</title>
		<link>http://6200networks.com/2008/08/05/iphone-to-isr/#comment-1742</link>
		<dc:creator>Mark Kohlmann</dc:creator>
		<pubDate>Thu, 21 Aug 2008 02:55:29 +0000</pubDate>
		<guid isPermaLink="false">1280950551#comment-1742</guid>
		<description>Modified configuration that works on a 2811 running 12.4(20)T using the Virtual-Template Interface and a split-tunnel.  Fa0/0 is the nat outside interface.  I had trouble getting reverse-route injection to work but this method is working perfectly.

See Apple's Enterprise Deployement Guide for more detailed information on iPhone supported features.

Minimal configuration:

aaa new-model
!
aaa authentication login iphone_vpn_xauth local 
aaa authorization network iphone_vpn_xauth local
!
username iPhone secret 5 ****
!
crypto isakmp policy 2
 encr 3des
 authentication pre-share
 group 2
!
crypto isakmp client configuration group iPhone
 key *********
 dns 172.16.100.1
 pool POOL_VPN
 acl ACL_iPhoneVPN
crypto isakmp profile iPhone-isakmp-profile
   match identity group iPhone
   client authentication list iphone_vpn_xauth
   isakmp authorization list iphone_vpn_xauth
   client configuration address respond
   virtual-template 1
!
crypto ipsec transform-set iphone-transform esp-3des esp-sha-hmac
!
crypto ipsec profile iPhone-vti1
 set transform-set iphone-transform
!
interface Virtual-Template1 type tunnel
 ip unnumbered FastEthernet0/0
 ip nat inside
 ip virtual-reassembly
 tunnel mode ipsec ipv4
 tunnel protection ipsec profile iPhone-vti1
!
ip local pool POOL_VPN 172.16.100.90 172.16.100.99
!
ip access-list extended ACL_iPhoneVPN
 permit ip 172.16.96.0 0.0.15.255 any

Enjoy!
Mark</description>
		<content:encoded><![CDATA[<p>Modified configuration that works on a 2811 running 12.4(20)T using the Virtual-Template Interface and a split-tunnel.  Fa0/0 is the nat outside interface.  I had trouble getting reverse-route injection to work but this method is working perfectly.</p>
<p>See Apple&#8217;s Enterprise Deployement Guide for more detailed information on iPhone supported features.</p>
<p>Minimal configuration:</p>
<p>aaa new-model<br />
!<br />
aaa authentication login iphone_vpn_xauth local<br />
aaa authorization network iphone_vpn_xauth local<br />
!<br />
username iPhone secret 5 ****<br />
!<br />
crypto isakmp policy 2<br />
 encr 3des<br />
 authentication pre-share<br />
 group 2<br />
!<br />
crypto isakmp client configuration group iPhone<br />
 key *********<br />
 dns 172.16.100.1<br />
 pool POOL_VPN<br />
 acl ACL_iPhoneVPN<br />
crypto isakmp profile iPhone-isakmp-profile<br />
   match identity group iPhone<br />
   client authentication list iphone_vpn_xauth<br />
   isakmp authorization list iphone_vpn_xauth<br />
   client configuration address respond<br />
   virtual-template 1<br />
!<br />
crypto ipsec transform-set iphone-transform esp-3des esp-sha-hmac<br />
!<br />
crypto ipsec profile iPhone-vti1<br />
 set transform-set iphone-transform<br />
!<br />
interface Virtual-Template1 type tunnel<br />
 ip unnumbered FastEthernet0/0<br />
 ip nat inside<br />
 ip virtual-reassembly<br />
 tunnel mode ipsec ipv4<br />
 tunnel protection ipsec profile iPhone-vti1<br />
!<br />
ip local pool POOL_VPN 172.16.100.90 172.16.100.99<br />
!<br />
ip access-list extended ACL_iPhoneVPN<br />
 permit ip 172.16.96.0 0.0.15.255 any</p>
<p>Enjoy!<br />
Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco Power Calculator Addition by Olivier Cahagne</title>
		<link>http://6200networks.com/2008/08/20/cisco-power-calculator-addition/#comment-1724</link>
		<dc:creator>Olivier Cahagne</dc:creator>
		<pubDate>Wed, 20 Aug 2008 13:23:48 +0000</pubDate>
		<guid isPermaLink="false">1297258824#comment-1724</guid>
		<description>Thanks, good to know ! I hope they can add 802.11n APs soon.</description>
		<content:encoded><![CDATA[<p>Thanks, good to know ! I hope they can add 802.11n APs soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASA Regular Expressions Files by Wayne Fleenor</title>
		<link>http://6200networks.com/2008/08/06/asa-regular-expressions-files/#comment-1721</link>
		<dc:creator>Wayne Fleenor</dc:creator>
		<pubDate>Wed, 20 Aug 2008 12:47:42 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=653#comment-1721</guid>
		<description>This is a GREAT list of RegEx for the ASA, thank you. 
With a PCI audit around the corner I have the following question: do you have a Regex list for SSN and Credit Card Numbers? 
I have found some expression that include the correct ranges for SSN and major vendors (AMEX, V\MC). But the format must be differnet for the ASA and Cisco IPS because they don't seem to work, thanks again</description>
		<content:encoded><![CDATA[<p>This is a GREAT list of RegEx for the ASA, thank you.<br />
With a PCI audit around the corner I have the following question: do you have a Regex list for SSN and Credit Card Numbers?<br />
I have found some expression that include the correct ranges for SSN and major vendors (AMEX, V\MC). But the format must be differnet for the ASA and Cisco IPS because they don&#8217;t seem to work, thanks again</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SSLVPN Vulnerabilities: Client Certificates offer a superior defense over OTP devices by JVH</title>
		<link>http://6200networks.com/2008/08/18/sslvpn-vulnerabilities-client-certificates-offer-a-superior-defense-over-otp-devices/#comment-1667</link>
		<dc:creator>JVH</dc:creator>
		<pubDate>Tue, 19 Aug 2008 02:24:33 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=708#comment-1667</guid>
		<description>Wow.  All that work just to eliminate a DNS problem.  Why not simply instruct users to type https:// and eliminate ALL potential DNS issues with an SSL VPN and skip the PKI deployment?</description>
		<content:encoded><![CDATA[<p>Wow.  All that work just to eliminate a DNS problem.  Why not simply instruct users to type <a href="https://" rel="nofollow">https://</a> and eliminate ALL potential DNS issues with an SSL VPN and skip the PKI deployment?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on EoL/EoS Announcement by Ramoonus</title>
		<link>http://6200networks.com/2008/01/03/eoleos-announcement-37/#comment-1641</link>
		<dc:creator>Ramoonus</dc:creator>
		<pubDate>Mon, 18 Aug 2008 12:10:24 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=223#comment-1641</guid>
		<description>bugger, there goes support for my 3620 :-(</description>
		<content:encoded><![CDATA[<p>bugger, there goes support for my 3620 <img src='http://6200networks.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using a Customized HTTP Interface for Router Management by Ramoonus</title>
		<link>http://6200networks.com/2008/01/03/using-a-customized-http-interface-for-router-management/#comment-1640</link>
		<dc:creator>Ramoonus</dc:creator>
		<pubDate>Mon, 18 Aug 2008 12:07:43 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=226#comment-1640</guid>
		<description>thank you very much Joe!</description>
		<content:encoded><![CDATA[<p>thank you very much Joe!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco Network Assistant 5.4 on CCO by Ian</title>
		<link>http://6200networks.com/2008/08/13/cisco-network-assistant-54-on-cco/#comment-1565</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Fri, 15 Aug 2008 19:17:15 +0000</pubDate>
		<guid isPermaLink="false">1531687107#comment-1565</guid>
		<description>Hi Joe, 

If this is the last planned major version release do you know what Cisco intend to replace it with (if anything)?

It's a handy little tool for upgrading devices I find although I prefer using CiscoWork LMS for production devices.

Thanks,

Ian</description>
		<content:encoded><![CDATA[<p>Hi Joe, </p>
<p>If this is the last planned major version release do you know what Cisco intend to replace it with (if anything)?</p>
<p>It&#8217;s a handy little tool for upgrading devices I find although I prefer using CiscoWork LMS for production devices.</p>
<p>Thanks,</p>
<p>Ian</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using a Customized HTTP Interface for Router Management by Joe Harris</title>
		<link>http://6200networks.com/2008/01/03/using-a-customized-http-interface-for-router-management/#comment-1551</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Thu, 14 Aug 2008 14:40:36 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=226#comment-1551</guid>
		<description>Hi Ramoonus...Thankfully I had it saved....You can download it from here: http://6200networks.com/wp-content/uploads/docs/command_center.zip</description>
		<content:encoded><![CDATA[<p>Hi Ramoonus&#8230;Thankfully I had it saved&#8230;.You can download it from here: <a href="http://6200networks.com/wp-content/uploads/docs/command_center.zip" rel="nofollow">http://6200networks.com/wp-content/uploads/docs/command_center.zip</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using a Customized HTTP Interface for Router Management by Ramoonus</title>
		<link>http://6200networks.com/2008/01/03/using-a-customized-http-interface-for-router-management/#comment-1549</link>
		<dc:creator>Ramoonus</dc:creator>
		<pubDate>Thu, 14 Aug 2008 11:38:31 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=226#comment-1549</guid>
		<description>the downloadlink on the Cisco page isnt working :(</description>
		<content:encoded><![CDATA[<p>the downloadlink on the Cisco page isnt working <img src='http://6200networks.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Run VMWare as a service by David</title>
		<link>http://6200networks.com/2008/05/29/run-vmware-as-a-service/#comment-1544</link>
		<dc:creator>David</dc:creator>
		<pubDate>Wed, 13 Aug 2008 15:37:37 +0000</pubDate>
		<guid isPermaLink="false">627791048#comment-1544</guid>
		<description>Can't get this working with VMWare Player... Should I be able to?

Seems like the service starts fine but fails to start the VM.  vmplayer.exe -x path\to\vm.vmx works from a command line but not from the service...

Any ideas?</description>
		<content:encoded><![CDATA[<p>Can&#8217;t get this working with VMWare Player&#8230; Should I be able to?</p>
<p>Seems like the service starts fine but fails to start the VM.  vmplayer.exe -x path\to\vm.vmx works from a command line but not from the service&#8230;</p>
<p>Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 8.0.4 Feature: Persistent IPsec Tunneled Flows by René Jorissen</title>
		<link>http://6200networks.com/2008/08/11/804-feature-persistent-ipsec-tunneled-flows/#comment-1543</link>
		<dc:creator>René Jorissen</dc:creator>
		<pubDate>Wed, 13 Aug 2008 14:37:45 +0000</pubDate>
		<guid isPermaLink="false">651153010#comment-1543</guid>
		<description>Hey Joe,

Great post, I haven't looked at the specs for release 8.0(4). But this new feature sounds great, and I will definitely use it in unstable environments.

Do you have any experience with the feature, when looking at the performance when maintaining the connection state?? I guess the state are stored in memory...</description>
		<content:encoded><![CDATA[<p>Hey Joe,</p>
<p>Great post, I haven&#8217;t looked at the specs for release 8.0(4). But this new feature sounds great, and I will definitely use it in unstable environments.</p>
<p>Do you have any experience with the feature, when looking at the performance when maintaining the connection state?? I guess the state are stored in memory&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 8.0.4 ASA Code has posted to CCO by Shiling Ding</title>
		<link>http://6200networks.com/2008/08/11/804-asa-code-has-posted-to-cco/#comment-1536</link>
		<dc:creator>Shiling Ding</dc:creator>
		<pubDate>Tue, 12 Aug 2008 20:22:15 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=663#comment-1536</guid>
		<description>I liked the dynamic access policy featured added in 8.0. It could be used for granular group or user based control. I intend to have many DAP for group locking and network ACL control. Is there any limit on how many DAPR we could have? How about the extensive network ACL performance effect? I remembered that all ACL in ASA are done in software compared with FWSM done in hardware on cisconetworkers, is my memory right? How many ACE could ASA handle?

Also in lua, how to match something like string.find(asa.ldap.grouplist != "null"), basically, how to check one attribute value is not empty?

Thanks.</description>
		<content:encoded><![CDATA[<p>I liked the dynamic access policy featured added in 8.0. It could be used for granular group or user based control. I intend to have many DAP for group locking and network ACL control. Is there any limit on how many DAPR we could have? How about the extensive network ACL performance effect? I remembered that all ACL in ASA are done in software compared with FWSM done in hardware on cisconetworkers, is my memory right? How many ACE could ASA handle?</p>
<p>Also in lua, how to match something like string.find(asa.ldap.grouplist != &#8220;null&#8221;), basically, how to check one attribute value is not empty?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 8.0.4 Feature: Persistent IPsec Tunneled Flows by Joe Harris</title>
		<link>http://6200networks.com/2008/08/11/804-feature-persistent-ipsec-tunneled-flows/#comment-1535</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Tue, 12 Aug 2008 19:50:01 +0000</pubDate>
		<guid isPermaLink="false">651153010#comment-1535</guid>
		<description>Barry, apart from what I documented here, the only other info related to the command can be found here:  http://www.cisco.com/en/US/docs/security/asa/asa80/command/reference/s8.html#wp1361648</description>
		<content:encoded><![CDATA[<p>Barry, apart from what I documented here, the only other info related to the command can be found here:  <a href="http://www.cisco.com/en/US/docs/security/asa/asa80/command/reference/s8.html#wp1361648" rel="nofollow">http://www.cisco.com/en/US/docs/security/asa/asa80/command/reference/s8.html#wp1361648</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 8.0.4 Feature: Persistent IPsec Tunneled Flows by Barry</title>
		<link>http://6200networks.com/2008/08/11/804-feature-persistent-ipsec-tunneled-flows/#comment-1534</link>
		<dc:creator>Barry</dc:creator>
		<pubDate>Tue, 12 Aug 2008 18:34:32 +0000</pubDate>
		<guid isPermaLink="false">651153010#comment-1534</guid>
		<description>Joe,

Thanks, this may resolve a month-long issue I've been experiencing with TCP/UDP traffic across a tunnel from a 2821 router to an ASA 5520.

Do you have any more info or documentation for the 'sysopt connection preserve-vpn-flows' command?</description>
		<content:encoded><![CDATA[<p>Joe,</p>
<p>Thanks, this may resolve a month-long issue I&#8217;ve been experiencing with TCP/UDP traffic across a tunnel from a 2821 router to an ASA 5520.</p>
<p>Do you have any more info or documentation for the &#8217;sysopt connection preserve-vpn-flows&#8217; command?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 8.0.4 ASA Code has posted to CCO by Joe Harris</title>
		<link>http://6200networks.com/2008/08/11/804-asa-code-has-posted-to-cco/#comment-1528</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Tue, 12 Aug 2008 13:17:03 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=663#comment-1528</guid>
		<description>Unfortunately the ASA's roadmap is not publicly available.</description>
		<content:encoded><![CDATA[<p>Unfortunately the ASA&#8217;s roadmap is not publicly available.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 8.0.4 ASA Code has posted to CCO by Lalufu</title>
		<link>http://6200networks.com/2008/08/11/804-asa-code-has-posted-to-cco/#comment-1527</link>
		<dc:creator>Lalufu</dc:creator>
		<pubDate>Tue, 12 Aug 2008 13:09:11 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=663#comment-1527</guid>
		<description>Is there a public roadmap for future features in the ASA code?</description>
		<content:encoded><![CDATA[<p>Is there a public roadmap for future features in the ASA code?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone to ISR by Ronald Johns</title>
		<link>http://6200networks.com/2008/08/05/iphone-to-isr/#comment-1509</link>
		<dc:creator>Ronald Johns</dc:creator>
		<pubDate>Sun, 10 Aug 2008 20:45:15 +0000</pubDate>
		<guid isPermaLink="false">1280950551#comment-1509</guid>
		<description>dope!  That's what the CCO doc was about - my bad...</description>
		<content:encoded><![CDATA[<p>dope!  That&#8217;s what the CCO doc was about - my bad&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone to ISR by Ronald Johns</title>
		<link>http://6200networks.com/2008/08/05/iphone-to-isr/#comment-1508</link>
		<dc:creator>Ronald Johns</dc:creator>
		<pubDate>Sun, 10 Aug 2008 20:43:59 +0000</pubDate>
		<guid isPermaLink="false">1280950551#comment-1508</guid>
		<description>I can confirm it works with ASA 8.0(3)...</description>
		<content:encoded><![CDATA[<p>I can confirm it works with ASA 8.0(3)&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Undocumented 12.4(20)T Feature by Joe Harris</title>
		<link>http://6200networks.com/2008/07/25/new-undocumented-12420t-feature/#comment-1505</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Sun, 10 Aug 2008 15:05:07 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=591#comment-1505</guid>
		<description>That's the correct behavior, this is only available for the onboard built-in interfaces, not for the NM or WIC based interfaces.</description>
		<content:encoded><![CDATA[<p>That&#8217;s the correct behavior, this is only available for the onboard built-in interfaces, not for the NM or WIC based interfaces.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone to ISR by Dave B</title>
		<link>http://6200networks.com/2008/08/05/iphone-to-isr/#comment-1492</link>
		<dc:creator>Dave B</dc:creator>
		<pubDate>Sat, 09 Aug 2008 21:02:14 +0000</pubDate>
		<guid isPermaLink="false">1280950551#comment-1492</guid>
		<description>I can confirm that it works with a VPN 3060 Concentrator as well.</description>
		<content:encoded><![CDATA[<p>I can confirm that it works with a VPN 3060 Concentrator as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone to ISR by Brad Hedlund</title>
		<link>http://6200networks.com/2008/08/05/iphone-to-isr/#comment-1491</link>
		<dc:creator>Brad Hedlund</dc:creator>
		<pubDate>Sat, 09 Aug 2008 20:31:16 +0000</pubDate>
		<guid isPermaLink="false">1280950551#comment-1491</guid>
		<description>Joe,
One of my customers is running iPhones on Cisco IOS in production.  I was not aware this is not TAC supported.  Thanks for the heads up.  Seems odd that TAC would not support this.  After all, the VPN client on iPhone is not much different than the standard Cisco VPN client for a PC/Laptop.

Brad</description>
		<content:encoded><![CDATA[<p>Joe,<br />
One of my customers is running iPhones on Cisco IOS in production.  I was not aware this is not TAC supported.  Thanks for the heads up.  Seems odd that TAC would not support this.  After all, the VPN client on iPhone is not much different than the standard Cisco VPN client for a PC/Laptop.</p>
<p>Brad</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Undocumented 12.4(20)T Feature by test</title>
		<link>http://6200networks.com/2008/07/25/new-undocumented-12420t-feature/#comment-1487</link>
		<dc:creator>test</dc:creator>
		<pubDate>Sat, 09 Aug 2008 14:09:42 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=591#comment-1487</guid>
		<description>fyi
working for Gi intrefaces:
C3845 Mother board 1GE(TX,SFP),1GE(TX) and 
NM-1GE Port adapter;
Unfortunately, it is not working for
NM-2FE2W_V2 Port adapter.

12.4(20+)T</description>
		<content:encoded><![CDATA[<p>fyi<br />
working for Gi intrefaces:<br />
C3845 Mother board 1GE(TX,SFP),1GE(TX) and<br />
NM-1GE Port adapter;<br />
Unfortunately, it is not working for<br />
NM-2FE2W_V2 Port adapter.</p>
<p>12.4(20+)T</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone to ISR by Joe H</title>
		<link>http://6200networks.com/2008/08/05/iphone-to-isr/#comment-1470</link>
		<dc:creator>Joe H</dc:creator>
		<pubDate>Thu, 07 Aug 2008 15:15:37 +0000</pubDate>
		<guid isPermaLink="false">1280950551#comment-1470</guid>
		<description>I've tested it on the VPN 3005 Concentrator and it works as well.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve tested it on the VPN 3005 Concentrator and it works as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASA 5505 Rack Mount by fshields</title>
		<link>http://6200networks.com/2008/02/16/asa-5505-rack-mount/#comment-1462</link>
		<dc:creator>fshields</dc:creator>
		<pubDate>Wed, 06 Aug 2008 20:27:21 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=283#comment-1462</guid>
		<description>It looks like Cisco has removed it from their website.  Not even a global search turns up this product.  In the meantime, many vendors have begun listing it with an out-of-stock notice.  The retail price is $350!!! Although it is usually discounted to a bargain price of $250 ;-)

Instead, you should consider a third-party choice for mounting your ASA 5505.  Check out this solution (http://www.cablesandkits.com/cisco-asa5505-rack-mount-kit-p-1415.html) and CablesAndKits for a much more affordable $69.95.</description>
		<content:encoded><![CDATA[<p>It looks like Cisco has removed it from their website.  Not even a global search turns up this product.  In the meantime, many vendors have begun listing it with an out-of-stock notice.  The retail price is $350!!! Although it is usually discounted to a bargain price of $250 <img src='http://6200networks.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Instead, you should consider a third-party choice for mounting your ASA 5505.  Check out this solution (http://www.cablesandkits.com/cisco-asa5505-rack-mount-kit-p-1415.html) and CablesAndKits for a much more affordable $69.95.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Block IM Traffic on ASA by Joe Harris</title>
		<link>http://6200networks.com/2007/10/31/block-im-traffic-on-asa/#comment-1458</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Wed, 06 Aug 2008 18:18:11 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=105#comment-1458</guid>
		<description>JB,

Google Talk uses tcp/5222. You could apply the following and it should work:

access-list inside_access_in deny tcp any any eq 5222
access-list inside_access_in permit ip any any 
access-group inside_access_in interface outside

But you cannot today use AIC to block it only ACL.</description>
		<content:encoded><![CDATA[<p>JB,</p>
<p>Google Talk uses tcp/5222. You could apply the following and it should work:</p>
<p>access-list inside_access_in deny tcp any any eq 5222<br />
access-list inside_access_in permit ip any any<br />
access-group inside_access_in interface outside</p>
<p>But you cannot today use AIC to block it only ACL.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Apple&#8217;s iPhone 2.0 to Integrate Cisco VPN Client by Joe Harris</title>
		<link>http://6200networks.com/2008/03/14/apples-iphone-20-to-integrate-cisco-vpn-client/#comment-1457</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Wed, 06 Aug 2008 17:59:51 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=329#comment-1457</guid>
		<description>Mike I'm not sure what your config's look like but I've yet to have a single incident when configuration of the ASA is correct...You are correct about the support on the router side but that's not say that it doesn't work ;-) ... see this post http://6200networks.com/2008/08/05/iphone-to-isr/</description>
		<content:encoded><![CDATA[<p>Mike I&#8217;m not sure what your config&#8217;s look like but I&#8217;ve yet to have a single incident when configuration of the ASA is correct&#8230;You are correct about the support on the router side but that&#8217;s not say that it doesn&#8217;t work <img src='http://6200networks.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> &#8230; see this post <a href="http://6200networks.com/2008/08/05/iphone-to-isr/" rel="nofollow">http://6200networks.com/2008/08/05/iphone-to-isr/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Apple&#8217;s iPhone 2.0 to Integrate Cisco VPN Client by Mike Sros</title>
		<link>http://6200networks.com/2008/03/14/apples-iphone-20-to-integrate-cisco-vpn-client/#comment-1456</link>
		<dc:creator>Mike Sros</dc:creator>
		<pubDate>Wed, 06 Aug 2008 17:48:14 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=329#comment-1456</guid>
		<description>The Cisco VPN client feature does not work for a majority of setups on the iPhone v2.0.1.  It is terrible.  None of the Cisco routers (IOS) are supported.  Only newer versions of the PIX/ASA software (on certain models nonetheless) are supported.  And a limited set of other devices/versions as well.  This feature is not ready!</description>
		<content:encoded><![CDATA[<p>The Cisco VPN client feature does not work for a majority of setups on the iPhone v2.0.1.  It is terrible.  None of the Cisco routers (IOS) are supported.  Only newer versions of the PIX/ASA software (on certain models nonetheless) are supported.  And a limited set of other devices/versions as well.  This feature is not ready!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco ASA 5580 beats Check Point, Juniper, and Nokia in 10 Gbps Firewall Bakeoff by JackB</title>
		<link>http://6200networks.com/2008/07/30/cisco-asa-5580-beats-check-point-juniper-and-nokia-in-10-gbps-firewall-bakeoff/#comment-1455</link>
		<dc:creator>JackB</dc:creator>
		<pubDate>Wed, 06 Aug 2008 15:40:58 +0000</pubDate>
		<guid isPermaLink="false">88532791#comment-1455</guid>
		<description>One comment regards to Juniper NS 5200 and 5400 performance. Claiming something on the datasheets and being able to achieve those numbers are two different things. Also look at the connection per second (CPS) numbers. Good Lord! Even at the datasheet numbers ASA 5580 still has 5 times higher connection setup rate
30K CPS (NS 5200/5400) vs. 150K CPS. Not to mention that the Miercom test showed a significantly higher CPS #s (182K cps vs. 14K). In an environment where connections are short-lived (web?), 14K cps just won't cut it.</description>
		<content:encoded><![CDATA[<p>One comment regards to Juniper NS 5200 and 5400 performance. Claiming something on the datasheets and being able to achieve those numbers are two different things. Also look at the connection per second (CPS) numbers. Good Lord! Even at the datasheet numbers ASA 5580 still has 5 times higher connection setup rate<br />
30K CPS (NS 5200/5400) vs. 150K CPS. Not to mention that the Miercom test showed a significantly higher CPS #s (182K cps vs. 14K). In an environment where connections are short-lived (web?), 14K cps just won&#8217;t cut it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco ASA 5580 beats Check Point, Juniper, and Nokia in 10 Gbps Firewall Bakeoff by John D</title>
		<link>http://6200networks.com/2008/07/30/cisco-asa-5580-beats-check-point-juniper-and-nokia-in-10-gbps-firewall-bakeoff/#comment-1452</link>
		<dc:creator>John D</dc:creator>
		<pubDate>Wed, 06 Aug 2008 04:37:01 +0000</pubDate>
		<guid isPermaLink="false">88532791#comment-1452</guid>
		<description>http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/netscreen_5200_slash_netscreen_5400/

Here are Juniper's two competing offerings...  The 5200 is supposed to do 10gbps, and the 5400 is supposed to do 30gbps.  I would base any throughput findings on a YMMV test, performed with your specific traffic flows.

Cisco *has* impressed me in every way, especially with advertised performance.  I used Netscreens for years, since the PIX was getting a little long in the tooth.  I would never go back now, especially since there's finally a standalone ASA that can do more than the meh ~ 1gbps mark.  If you use Catalysts, the ACE module also offers amazing in-chassis firewall performance.  A large content provider I used to work for is deploying standalone ASA 5580 firewalls (20gbps sites), but I would definitely put the ACE module on my shortlist for any similar deployment.

The ACE modules are 16gbps throughput ea., with up to 4 modules per chassis, and also do load balancing.  I knew plenty of people that killed the FWSMs, but I haven't spoken with anyone that has tapped out an ACE-based chassis.</description>
		<content:encoded><![CDATA[<p><a href="http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/netscreen_5200_slash_netscreen_5400/" rel="nofollow">http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/netscreen_5200_slash_netscreen_5400/</a></p>
<p>Here are Juniper&#8217;s two competing offerings&#8230;  The 5200 is supposed to do 10gbps, and the 5400 is supposed to do 30gbps.  I would base any throughput findings on a YMMV test, performed with your specific traffic flows.</p>
<p>Cisco *has* impressed me in every way, especially with advertised performance.  I used Netscreens for years, since the PIX was getting a little long in the tooth.  I would never go back now, especially since there&#8217;s finally a standalone ASA that can do more than the meh ~ 1gbps mark.  If you use Catalysts, the ACE module also offers amazing in-chassis firewall performance.  A large content provider I used to work for is deploying standalone ASA 5580 firewalls (20gbps sites), but I would definitely put the ACE module on my shortlist for any similar deployment.</p>
<p>The ACE modules are 16gbps throughput ea., with up to 4 modules per chassis, and also do load balancing.  I knew plenty of people that killed the FWSMs, but I haven&#8217;t spoken with anyone that has tapped out an ACE-based chassis.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Block IM Traffic on ASA by JB</title>
		<link>http://6200networks.com/2007/10/31/block-im-traffic-on-asa/#comment-1451</link>
		<dc:creator>JB</dc:creator>
		<pubDate>Wed, 06 Aug 2008 04:26:45 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=105#comment-1451</guid>
		<description>Is there a regular expression or anothe mechaism for blocking Google Talk; without actually blocking access to the Google website?</description>
		<content:encoded><![CDATA[<p>Is there a regular expression or anothe mechaism for blocking Google Talk; without actually blocking access to the Google website?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASA - Configure LDAP Authentication for Users by Shiling Ding</title>
		<link>http://6200networks.com/2007/10/02/asa-configure-ldap-authentication-for-users/#comment-1442</link>
		<dc:creator>Shiling Ding</dc:creator>
		<pubDate>Tue, 05 Aug 2008 03:26:01 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=25#comment-1442</guid>
		<description>Hi Joe,

I am interested in Simon's idea too. 



For IPSec RA VPN, 
If I have group = group1, group = group2 in ldap, users with these group attributes can connect with group1 profile or group2 profile, but not group3 profile. This will in some way make the group password less "secret" since we can control who can access which profile in LDAP.

If we can accomplish what Simon was interested in. Which profile the anyconnect on the homepage will be using? Is there any way to specify which tunnel-group the web vpn anyconnect will connect to? Will the similar trick for IPSec VPN be able to used on webvpn anyconnect?

Thanks.

Shiling</description>
		<content:encoded><![CDATA[<p>Hi Joe,</p>
<p>I am interested in Simon&#8217;s idea too. </p>
<p>For IPSec RA VPN,<br />
If I have group = group1, group = group2 in ldap, users with these group attributes can connect with group1 profile or group2 profile, but not group3 profile. This will in some way make the group password less &#8220;secret&#8221; since we can control who can access which profile in LDAP.</p>
<p>If we can accomplish what Simon was interested in. Which profile the anyconnect on the homepage will be using? Is there any way to specify which tunnel-group the web vpn anyconnect will connect to? Will the similar trick for IPSec VPN be able to used on webvpn anyconnect?</p>
<p>Thanks.</p>
<p>Shiling</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tool: Iperf by triegert</title>
		<link>http://6200networks.com/2008/07/28/tool-iperf/#comment-1434</link>
		<dc:creator>triegert</dc:creator>
		<pubDate>Mon, 04 Aug 2008 14:04:42 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=615#comment-1434</guid>
		<description>Not related to throughput testing, but nfdump is a really good netflow tool. We have used it to help create firewall rules for our server networks by querying netflow data with tcpdump-like expressions. Nfsen is a GUI for nfdump for those interested.</description>
		<content:encoded><![CDATA[<p>Not related to throughput testing, but nfdump is a really good netflow tool. We have used it to help create firewall rules for our server networks by querying netflow data with tcpdump-like expressions. Nfsen is a GUI for nfdump for those interested.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco ASA 5580 beats Check Point, Juniper, and Nokia in 10 Gbps Firewall Bakeoff by Ian</title>
		<link>http://6200networks.com/2008/07/30/cisco-asa-5580-beats-check-point-juniper-and-nokia-in-10-gbps-firewall-bakeoff/#comment-1393</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Fri, 01 Aug 2008 18:52:05 +0000</pubDate>
		<guid isPermaLink="false">88532791#comment-1393</guid>
		<description>I think Cisco products are excellent and the ASA has really taken their firewall product to the next level but I'm a bit sceptical at how much it's hammered Checkpoint/Nokia by.  Also, Checkpoints management GUI is far better than ASDM in my opinion and I have plenty experience with both.  For starters you can't drag and drop objects in ASDM, aquire an exclusive lock while configuring which causes problems when you have multiple administrators not to mention the fact that the Java front end eats your machines resources.

The test also doesn't compare the vendors at a suitable level from what I can see.  The IBM hardware that checkpioint has been run in comes in at around $3k whereas the ASA comes in at approx $40k.

I must say I was suprised to see such low performance from the Nokia/Checkpoint combo however.

Cisco will dominate the security market in ten years I think but they need to continue to evolve their products.  ASDM would be a good place to start.  I'm not anti-Cisco, quite the opposite actually, but I do think the test conclusion is very biased.

Thanks for the info, it was a good read!</description>
		<content:encoded><![CDATA[<p>I think Cisco products are excellent and the ASA has really taken their firewall product to the next level but I&#8217;m a bit sceptical at how much it&#8217;s hammered Checkpoint/Nokia by.  Also, Checkpoints management GUI is far better than ASDM in my opinion and I have plenty experience with both.  For starters you can&#8217;t drag and drop objects in ASDM, aquire an exclusive lock while configuring which causes problems when you have multiple administrators not to mention the fact that the Java front end eats your machines resources.</p>
<p>The test also doesn&#8217;t compare the vendors at a suitable level from what I can see.  The IBM hardware that checkpioint has been run in comes in at around $3k whereas the ASA comes in at approx $40k.</p>
<p>I must say I was suprised to see such low performance from the Nokia/Checkpoint combo however.</p>
<p>Cisco will dominate the security market in ten years I think but they need to continue to evolve their products.  ASDM would be a good place to start.  I&#8217;m not anti-Cisco, quite the opposite actually, but I do think the test conclusion is very biased.</p>
<p>Thanks for the info, it was a good read!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco ASA 5580 beats Check Point, Juniper, and Nokia in 10 Gbps Firewall Bakeoff by Frank</title>
		<link>http://6200networks.com/2008/07/30/cisco-asa-5580-beats-check-point-juniper-and-nokia-in-10-gbps-firewall-bakeoff/#comment-1392</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Fri, 01 Aug 2008 15:17:38 +0000</pubDate>
		<guid isPermaLink="false">88532791#comment-1392</guid>
		<description>Well, you cant really compare the Checkpoint management center with ASDM. Checkpoint management needs its own server (ASDM is a small java applet :) and is more comparable to a CSM+MARS combo thats in my opinion a better solution overall.  Its roughly the same price in some installations and the benefit of MARS included for "free".</description>
		<content:encoded><![CDATA[<p>Well, you cant really compare the Checkpoint management center with ASDM. Checkpoint management needs its own server (ASDM is a small java applet <img src='http://6200networks.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> and is more comparable to a CSM+MARS combo thats in my opinion a better solution overall.  Its roughly the same price in some installations and the benefit of MARS included for &#8220;free&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco ASA 5580 beats Check Point, Juniper, and Nokia in 10 Gbps Firewall Bakeoff by JVH</title>
		<link>http://6200networks.com/2008/07/30/cisco-asa-5580-beats-check-point-juniper-and-nokia-in-10-gbps-firewall-bakeoff/#comment-1386</link>
		<dc:creator>JVH</dc:creator>
		<pubDate>Fri, 01 Aug 2008 13:58:46 +0000</pubDate>
		<guid isPermaLink="false">88532791#comment-1386</guid>
		<description>I agree with Plasma.  I haven't used ASDM in a version or two, but I know at that time the Checkpoint interface was much more intuitive to use.  IDS/IPS was clearly an afterthought requiring a completely separate interface.  Similarly, the log search and filtering functionality in Checkpoint was straightforward whereas ASDM was somewhat more limited.  I hope it's gotten better.  Obviously Miercom thinks it has.</description>
		<content:encoded><![CDATA[<p>I agree with Plasma.  I haven&#8217;t used ASDM in a version or two, but I know at that time the Checkpoint interface was much more intuitive to use.  IDS/IPS was clearly an afterthought requiring a completely separate interface.  Similarly, the log search and filtering functionality in Checkpoint was straightforward whereas ASDM was somewhat more limited.  I hope it&#8217;s gotten better.  Obviously Miercom thinks it has.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco ASA 5580 beats Check Point, Juniper, and Nokia in 10 Gbps Firewall Bakeoff by Joe Harris</title>
		<link>http://6200networks.com/2008/07/30/cisco-asa-5580-beats-check-point-juniper-and-nokia-in-10-gbps-firewall-bakeoff/#comment-1385</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Fri, 01 Aug 2008 12:56:10 +0000</pubDate>
		<guid isPermaLink="false">88532791#comment-1385</guid>
		<description>"but for others a lot of improvement is needed." and what types of improvements would you suggest?</description>
		<content:encoded><![CDATA[<p>&#8220;but for others a lot of improvement is needed.&#8221; and what types of improvements would you suggest?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco ASA 5580 beats Check Point, Juniper, and Nokia in 10 Gbps Firewall Bakeoff by Plasma</title>
		<link>http://6200networks.com/2008/07/30/cisco-asa-5580-beats-check-point-juniper-and-nokia-in-10-gbps-firewall-bakeoff/#comment-1384</link>
		<dc:creator>Plasma</dc:creator>
		<pubDate>Fri, 01 Aug 2008 12:47:08 +0000</pubDate>
		<guid isPermaLink="false">88532791#comment-1384</guid>
		<description>Any time I see a test report that says, management tools for anything cisco are better than the competitors I am suspect. I will admit and agree the admin interfaces are good for a certain range of customers, but for others a lot of improvement is needed.</description>
		<content:encoded><![CDATA[<p>Any time I see a test report that says, management tools for anything cisco are better than the competitors I am suspect. I will admit and agree the admin interfaces are good for a certain range of customers, but for others a lot of improvement is needed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco ASA 5580 beats Check Point, Juniper, and Nokia in 10 Gbps Firewall Bakeoff by Frank</title>
		<link>http://6200networks.com/2008/07/30/cisco-asa-5580-beats-check-point-juniper-and-nokia-in-10-gbps-firewall-bakeoff/#comment-1378</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Fri, 01 Aug 2008 03:37:49 +0000</pubDate>
		<guid isPermaLink="false">88532791#comment-1378</guid>
		<description>Actually, this time they dont have anything that compares. A couple of my larger customers considering the 5580 as a replacement for existing installations has been told by CheckPoint/Nokia to wait until "Christmas/Spring" timeframe before deciding as they will have new products out by then. As Cisco says though, the 5580 is here now, not in a year or so.</description>
		<content:encoded><![CDATA[<p>Actually, this time they dont have anything that compares. A couple of my larger customers considering the 5580 as a replacement for existing installations has been told by CheckPoint/Nokia to wait until &#8220;Christmas/Spring&#8221; timeframe before deciding as they will have new products out by then. As Cisco says though, the 5580 is here now, not in a year or so.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco ASA 5580 beats Check Point, Juniper, and Nokia in 10 Gbps Firewall Bakeoff by George Murage</title>
		<link>http://6200networks.com/2008/07/30/cisco-asa-5580-beats-check-point-juniper-and-nokia-in-10-gbps-firewall-bakeoff/#comment-1374</link>
		<dc:creator>George Murage</dc:creator>
		<pubDate>Thu, 31 Jul 2008 07:51:30 +0000</pubDate>
		<guid isPermaLink="false">88532791#comment-1374</guid>
		<description>i always wonder about the objectivity of Miercom tests. i am pretty sure that Juniper, Checkpoint and Nokia have their own 'independent tests' that show that the converse is also true.... which ends up being very confusing..</description>
		<content:encoded><![CDATA[<p>i always wonder about the objectivity of Miercom tests. i am pretty sure that Juniper, Checkpoint and Nokia have their own &#8216;independent tests&#8217; that show that the converse is also true&#8230;. which ends up being very confusing..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco ASA 5580 beats Check Point, Juniper, and Nokia in 10 Gbps Firewall Bakeoff by Frank</title>
		<link>http://6200networks.com/2008/07/30/cisco-asa-5580-beats-check-point-juniper-and-nokia-in-10-gbps-firewall-bakeoff/#comment-1372</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Wed, 30 Jul 2008 23:58:17 +0000</pubDate>
		<guid isPermaLink="false">88532791#comment-1372</guid>
		<description>Not so well? :) Use the "model comparisation" @ cisco.com to see how they compare in performance.</description>
		<content:encoded><![CDATA[<p>Not so well? <img src='http://6200networks.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Use the &#8220;model comparisation&#8221; @ cisco.com to see how they compare in performance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tool: Iperf by pello</title>
		<link>http://6200networks.com/2008/07/28/tool-iperf/#comment-1371</link>
		<dc:creator>pello</dc:creator>
		<pubDate>Wed, 30 Jul 2008 17:57:43 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=615#comment-1371</guid>
		<description>Hi Joe,

How are you ?

Here's my list which complete input of others:

- tfgen
- netcps
- pcausa test tcp
- openwebload - http testing
- sipp - sip testing
- DPT - dns testing

Francois</description>
		<content:encoded><![CDATA[<p>Hi Joe,</p>
<p>How are you ?</p>
<p>Here&#8217;s my list which complete input of others:</p>
<p>- tfgen<br />
- netcps<br />
- pcausa test tcp<br />
- openwebload - http testing<br />
- sipp - sip testing<br />
- DPT - dns testing</p>
<p>Francois</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco ASA 5580 beats Check Point, Juniper, and Nokia in 10 Gbps Firewall Bakeoff by Alan</title>
		<link>http://6200networks.com/2008/07/30/cisco-asa-5580-beats-check-point-juniper-and-nokia-in-10-gbps-firewall-bakeoff/#comment-1370</link>
		<dc:creator>Alan</dc:creator>
		<pubDate>Wed, 30 Jul 2008 15:51:00 +0000</pubDate>
		<guid isPermaLink="false">88532791#comment-1370</guid>
		<description>I wonder how's the performance for ASA5520 comparing to ASA5580?</description>
		<content:encoded><![CDATA[<p>I wonder how&#8217;s the performance for ASA5520 comparing to ASA5580?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on IOS Zone Based Firewall Configuration by Joe Harris</title>
		<link>http://6200networks.com/2007/12/05/ios-zone-based-firewall-configuration/#comment-1368</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Wed, 30 Jul 2008 12:50:10 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=189#comment-1368</guid>
		<description>Hi Rich, no my CCIE SP took over and I just forgot to write the follow up article. I will start writing the follow up in the next day or so and hope to get it posted soon. Thanks for reminding me ;-)</description>
		<content:encoded><![CDATA[<p>Hi Rich, no my CCIE SP took over and I just forgot to write the follow up article. I will start writing the follow up in the next day or so and hope to get it posted soon. Thanks for reminding me <img src='http://6200networks.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco IOS Auto-Upgrade Manager by Joe Harris</title>
		<link>http://6200networks.com/2008/06/13/cisco-ios-auto-upgrade-manager/#comment-1362</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Tue, 29 Jul 2008 20:38:05 +0000</pubDate>
		<guid isPermaLink="false">998612945#comment-1362</guid>
		<description>Hi Mlitka, your correct the documentation is wrong here again however the command reference has the correct URL listed: http://www.cisco.com/en/US/docs/ios/fundamentals/command/reference/cf_a1.html#wp1014042</description>
		<content:encoded><![CDATA[<p>Hi Mlitka, your correct the documentation is wrong here again however the command reference has the correct URL listed: <a href="http://www.cisco.com/en/US/docs/ios/fundamentals/command/reference/cf_a1.html#wp1014042" rel="nofollow">http://www.cisco.com/en/US/docs/ios/fundamentals/command/reference/cf_a1.html#wp1014042</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco IOS Auto-Upgrade Manager by mlitka</title>
		<link>http://6200networks.com/2008/06/13/cisco-ios-auto-upgrade-manager/#comment-1361</link>
		<dc:creator>mlitka</dc:creator>
		<pubDate>Tue, 29 Jul 2008 20:28:33 +0000</pubDate>
		<guid isPermaLink="false">998612945#comment-1361</guid>
		<description>Just thought I would pass this along.  I was labbing this up this afternoon and the ida url referenced in the CCO instructions apparently has changed.  I took a stab at the following at it worked:

https://www.cisco.com/cgi-bin/ida/locator/locator.pl

I removed the 'new-' in front of 'ida'.</description>
		<content:encoded><![CDATA[<p>Just thought I would pass this along.  I was labbing this up this afternoon and the ida url referenced in the CCO instructions apparently has changed.  I took a stab at the following at it worked:</p>
<p><a href="https://www.cisco.com/cgi-bin/ida/locator/locator.pl" rel="nofollow">https://www.cisco.com/cgi-bin/ida/locator/locator.pl</a></p>
<p>I removed the &#8216;new-&#8217; in front of &#8216;ida&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tool: Iperf by Joe Harris</title>
		<link>http://6200networks.com/2008/07/28/tool-iperf/#comment-1358</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Tue, 29 Jul 2008 15:54:44 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=615#comment-1358</guid>
		<description>Guys thank you for the additional tools, when I get a little more free time I will be more than happy to test them out. Please keep the list of tools coming, this only helps us all. Thanks again.</description>
		<content:encoded><![CDATA[<p>Guys thank you for the additional tools, when I get a little more free time I will be more than happy to test them out. Please keep the list of tools coming, this only helps us all. Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tool: Iperf by slwkk</title>
		<link>http://6200networks.com/2008/07/28/tool-iperf/#comment-1356</link>
		<dc:creator>slwkk</dc:creator>
		<pubDate>Tue, 29 Jul 2008 08:38:49 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=615#comment-1356</guid>
		<description>There is kernel space packet generator... you should take a look at:

http://www.mjmwired.net/kernel/Documentation/networking/pktgen.txt

in theory this is the most powerful traffic generator for linux... user space tools will always be slower.</description>
		<content:encoded><![CDATA[<p>There is kernel space packet generator&#8230; you should take a look at:</p>
<p><a href="http://www.mjmwired.net/kernel/Documentation/networking/pktgen.txt" rel="nofollow">http://www.mjmwired.net/kernel/Documentation/networking/pktgen.txt</a></p>
<p>in theory this is the most powerful traffic generator for linux&#8230; user space tools will always be slower.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tool: Iperf by Joe</title>
		<link>http://6200networks.com/2008/07/28/tool-iperf/#comment-1354</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Tue, 29 Jul 2008 05:53:47 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=615#comment-1354</guid>
		<description>Take a look at tcpbench from OpenBSD.

http://www.openbsd.org/cgi-bin/man.cgi?query=tcpbench&#38;apropos=0&#38;sektion=1&#38;manpath=OpenBSD+Current&#38;arch=i386&#38;format=html</description>
		<content:encoded><![CDATA[<p>Take a look at tcpbench from OpenBSD.</p>
<p><a href="http://www.openbsd.org/cgi-bin/man.cgi?query=tcpbench&amp;apropos=0&amp;sektion=1&amp;manpath=OpenBSD+Current&amp;arch=i386&amp;format=html" rel="nofollow">http://www.openbsd.org/cgi-bin/man.cgi?query=tcpbench&amp;apropos=0&amp;sektion=1&amp;manpath=OpenBSD+Current&amp;arch=i386&amp;format=html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tool: Iperf by Joe Harris</title>
		<link>http://6200networks.com/2008/07/28/tool-iperf/#comment-1351</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Mon, 28 Jul 2008 23:33:55 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=615#comment-1351</guid>
		<description>Peter my good man, you beat me to the punch!! That was to be my follow-up post ;-) ... Your right jperf is the nice GUI front-end that really brings it all together.</description>
		<content:encoded><![CDATA[<p>Peter my good man, you beat me to the punch!! That was to be my follow-up post <img src='http://6200networks.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> &#8230; Your right jperf is the nice GUI front-end that really brings it all together.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tool: Iperf by Peter</title>
		<link>http://6200networks.com/2008/07/28/tool-iperf/#comment-1350</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Mon, 28 Jul 2008 22:55:24 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=615#comment-1350</guid>
		<description>Check out Jperf on the same sourceforge page - it is a java front end for Iperf and shows a graph of the throughput per second.</description>
		<content:encoded><![CDATA[<p>Check out Jperf on the same sourceforge page - it is a java front end for Iperf and shows a graph of the throughput per second.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Listening to EIGRP by Josh Horton</title>
		<link>http://6200networks.com/2007/11/09/listening-to-eigrp/#comment-1348</link>
		<dc:creator>Josh Horton</dc:creator>
		<pubDate>Mon, 28 Jul 2008 20:13:41 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=126#comment-1348</guid>
		<description>Thanks Joe! That's a new one for the tool belt.</description>
		<content:encoded><![CDATA[<p>Thanks Joe! That&#8217;s a new one for the tool belt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on IOS Zone Based Firewall Configuration by Rich</title>
		<link>http://6200networks.com/2007/12/05/ios-zone-based-firewall-configuration/#comment-1345</link>
		<dc:creator>Rich</dc:creator>
		<pubDate>Mon, 28 Jul 2008 15:31:27 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=189#comment-1345</guid>
		<description>I can't find the follow-on post mentioned at the end of this post.  Did it ever get written?</description>
		<content:encoded><![CDATA[<p>I can&#8217;t find the follow-on post mentioned at the end of this post.  Did it ever get written?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 6200networks on your iPhone or iPod Touch by Binh</title>
		<link>http://6200networks.com/2008/07/10/6200networks-on-your-iphone-or-ipod-touch/#comment-1321</link>
		<dc:creator>Binh</dc:creator>
		<pubDate>Sat, 26 Jul 2008 11:33:11 +0000</pubDate>
		<guid isPermaLink="false">1181104035#comment-1321</guid>
		<description>Hey Joe ,

Posting from my iPhone. Looks perfectly fine to me.

Binh</description>
		<content:encoded><![CDATA[<p>Hey Joe ,</p>
<p>Posting from my iPhone. Looks perfectly fine to me.</p>
<p>Binh</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Introduction to Cisco IOS Software Activation and Licensing Workflows by Ferret999</title>
		<link>http://6200networks.com/2008/07/17/introduction-to-cisco-ios-software-activation-and-licensing-workflows/#comment-1311</link>
		<dc:creator>Ferret999</dc:creator>
		<pubDate>Fri, 25 Jul 2008 22:08:30 +0000</pubDate>
		<guid isPermaLink="false">683357492#comment-1311</guid>
		<description>Cheers for the reply Joe. Would be good if Cisco release some tool out there although I hope release is not to controlled. Some of us work for companies that do not pay for our training so we have to pay for it all off our own back and so if they could bear people in my position in mind if they do decide to release the emulator that would be great.</description>
		<content:encoded><![CDATA[<p>Cheers for the reply Joe. Would be good if Cisco release some tool out there although I hope release is not to controlled. Some of us work for companies that do not pay for our training so we have to pay for it all off our own back and so if they could bear people in my position in mind if they do decide to release the emulator that would be great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Undocumented 12.4(20)T Feature by Nikolay Shopik</title>
		<link>http://6200networks.com/2008/07/25/new-undocumented-12420t-feature/#comment-1308</link>
		<dc:creator>Nikolay Shopik</dc:creator>
		<pubDate>Fri, 25 Jul 2008 16:15:25 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=591#comment-1308</guid>
		<description>Pretty interested findings. I wounder about jumbo frames (never used it still though). Its only supported on Gigabit links with routers?</description>
		<content:encoded><![CDATA[<p>Pretty interested findings. I wounder about jumbo frames (never used it still though). Its only supported on Gigabit links with routers?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Introduction to Cisco IOS Software Activation and Licensing Workflows by Joe Harris</title>
		<link>http://6200networks.com/2008/07/17/introduction-to-cisco-ios-software-activation-and-licensing-workflows/#comment-1306</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Fri, 25 Jul 2008 14:33:29 +0000</pubDate>
		<guid isPermaLink="false">683357492#comment-1306</guid>
		<description>I won't comment on Dynamips, but we do have an internal tool and it's my understanding based on some emails I see flying around as of late that we will be releasing this tool to customers and partners alike in the coming months in a controlled manner like via Cisco Academies and such.</description>
		<content:encoded><![CDATA[<p>I won&#8217;t comment on Dynamips, but we do have an internal tool and it&#8217;s my understanding based on some emails I see flying around as of late that we will be releasing this tool to customers and partners alike in the coming months in a controlled manner like via Cisco Academies and such.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASA Compatible with EIGRP Version 3 by priyant</title>
		<link>http://6200networks.com/2008/06/18/asa-compatible-with-eigrp-version-3/#comment-1301</link>
		<dc:creator>priyant</dc:creator>
		<pubDate>Fri, 25 Jul 2008 09:17:02 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=483#comment-1301</guid>
		<description>Any good explanation ?? is there BIG difference between ASA and IOS security ? Why to implement Firewall if router can work as Firewall with security IOS</description>
		<content:encoded><![CDATA[<p>Any good explanation ?? is there BIG difference between ASA and IOS security ? Why to implement Firewall if router can work as Firewall with security IOS</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Introduction to Cisco IOS Software Activation and Licensing Workflows by Ferret999</title>
		<link>http://6200networks.com/2008/07/17/introduction-to-cisco-ios-software-activation-and-licensing-workflows/#comment-1292</link>
		<dc:creator>Ferret999</dc:creator>
		<pubDate>Thu, 24 Jul 2008 21:24:22 +0000</pubDate>
		<guid isPermaLink="false">683357492#comment-1292</guid>
		<description>Hi Joe,

What does the new license software mean for Dynamips? Also is it true that Cisco has their own internal emulation software?</description>
		<content:encoded><![CDATA[<p>Hi Joe,</p>
<p>What does the new license software mean for Dynamips? Also is it true that Cisco has their own internal emulation software?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Service Interruption by Binh</title>
		<link>http://6200networks.com/2008/07/24/service-interruption/#comment-1291</link>
		<dc:creator>Binh</dc:creator>
		<pubDate>Thu, 24 Jul 2008 19:02:35 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=569#comment-1291</guid>
		<description>Another recommendation for folks out there is to use opendns as DNS servers for now. More details can be found at http://www.opendns.com/.
Just because you are able to get to the proper sites now doesn't mean that your provider's DNS servers are NOT vulnerable/patched.

Joe,
Glad that I was browsing through ur site yesterday. Just tried to increase my chance to win your monthly drawing here!

--Binh</description>
		<content:encoded><![CDATA[<p>Another recommendation for folks out there is to use opendns as DNS servers for now. More details can be found at <a href="http://www.opendns.com/" rel="nofollow">http://www.opendns.com/</a>.<br />
Just because you are able to get to the proper sites now doesn&#8217;t mean that your provider&#8217;s DNS servers are NOT vulnerable/patched.</p>
<p>Joe,<br />
Glad that I was browsing through ur site yesterday. Just tried to increase my chance to win your monthly drawing here!</p>
<p>&#8211;Binh</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Block IM Traffic on ASA by Joe Harris</title>
		<link>http://6200networks.com/2007/10/31/block-im-traffic-on-asa/#comment-1290</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Thu, 24 Jul 2008 18:44:09 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=105#comment-1290</guid>
		<description>This could be done if you were allowed to match upon a time-based acl inside the class-map or policy-map however this is not allowed for a type inspect map. We have some newer features that are on the radar that will solve this issue so I'll keep you posted ;-)</description>
		<content:encoded><![CDATA[<p>This could be done if you were allowed to match upon a time-based acl inside the class-map or policy-map however this is not allowed for a type inspect map. We have some newer features that are on the radar that will solve this issue so I&#8217;ll keep you posted <img src='http://6200networks.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Service Interruption by Nikolay Shopik</title>
		<link>http://6200networks.com/2008/07/24/service-interruption/#comment-1289</link>
		<dc:creator>Nikolay Shopik</dc:creator>
		<pubDate>Thu, 24 Jul 2008 17:12:51 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=569#comment-1289</guid>
		<description>Welcome back online!
And this is one of proof concept to inject some malware to users computer!</description>
		<content:encoded><![CDATA[<p>Welcome back online!<br />
And this is one of proof concept to inject some malware to users computer!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Introduction to Cisco IOS Software Activation and Licensing Workflows by Lalufu</title>
		<link>http://6200networks.com/2008/07/17/introduction-to-cisco-ios-software-activation-and-licensing-workflows/#comment-1287</link>
		<dc:creator>Lalufu</dc:creator>
		<pubDate>Thu, 24 Jul 2008 10:35:37 +0000</pubDate>
		<guid isPermaLink="false">683357492#comment-1287</guid>
		<description>I just hope that getting licenses for IOS will be a faster process than getting licenses for PIX/ASA devices (which could take several weeks in my experience, but I may be doing things wrong).</description>
		<content:encoded><![CDATA[<p>I just hope that getting licenses for IOS will be a faster process than getting licenses for PIX/ASA devices (which could take several weeks in my experience, but I may be doing things wrong).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Introduction to Cisco IOS Software Activation and Licensing Workflows by Tassos</title>
		<link>http://6200networks.com/2008/07/17/introduction-to-cisco-ios-software-activation-and-licensing-workflows/#comment-1275</link>
		<dc:creator>Tassos</dc:creator>
		<pubDate>Tue, 22 Jul 2008 06:58:17 +0000</pubDate>
		<guid isPermaLink="false">683357492#comment-1275</guid>
		<description>Thanks for the explanation Joe.

I understand that Cisco needs to take care of its IOS intellectual rights, but i don't find all this IOS activation/licensing easy.

"Cisco makes it easier for customers to deploy, manage, and upgrade their Cisco IOS Software assets".

I still haven't tried it, but by only reading/watching it, i felt "tired". For me it doesn't seem as easy 'n' simple as downloading an IOS from CCO and uploading it on a router. 

Let's hope it's a move to the correct direction and not something that will be abandoned after 2-3 years...having put into bedevilment a lot of customers.

Btw, does the "sh ver" output display somehow the actual activated feature set?</description>
		<content:encoded><![CDATA[<p>Thanks for the explanation Joe.</p>
<p>I understand that Cisco needs to take care of its IOS intellectual rights, but i don&#8217;t find all this IOS activation/licensing easy.</p>
<p>&#8220;Cisco makes it easier for customers to deploy, manage, and upgrade their Cisco IOS Software assets&#8221;.</p>
<p>I still haven&#8217;t tried it, but by only reading/watching it, i felt &#8220;tired&#8221;. For me it doesn&#8217;t seem as easy &#8216;n&#8217; simple as downloading an IOS from CCO and uploading it on a router. </p>
<p>Let&#8217;s hope it&#8217;s a move to the correct direction and not something that will be abandoned after 2-3 years&#8230;having put into bedevilment a lot of customers.</p>
<p>Btw, does the &#8220;sh ver&#8221; output display somehow the actual activated feature set?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tool - Xobni by jelandry</title>
		<link>http://6200networks.com/2008/05/05/tool-xobni/#comment-1243</link>
		<dc:creator>jelandry</dc:creator>
		<pubDate>Sat, 19 Jul 2008 05:38:10 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=379#comment-1243</guid>
		<description>Hey Joe,

I love Xobni...been using it for a while now.  Have you seen Launchy?  http://www.launchy.net/  Between Launchy and Xobni I no longer run Google Desktop or X1.</description>
		<content:encoded><![CDATA[<p>Hey Joe,</p>
<p>I love Xobni&#8230;been using it for a while now.  Have you seen Launchy?  <a href="http://www.launchy.net/" rel="nofollow">http://www.launchy.net/</a>  Between Launchy and Xobni I no longer run Google Desktop or X1.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Introduction to Cisco IOS Software Activation and Licensing Workflows by Joe Harris</title>
		<link>http://6200networks.com/2008/07/17/introduction-to-cisco-ios-software-activation-and-licensing-workflows/#comment-1241</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Sat, 19 Jul 2008 00:28:50 +0000</pubDate>
		<guid isPermaLink="false">683357492#comment-1241</guid>
		<description>Tassos that's a very good question because this could even happen accidentally (more on this in a sec), if the license is not valid it will fall back to the base level which is IP Base.  The switch/router will still boot and function but with only IP Base level features.

There is a new command introduced in 12.4(20)T 'license expand nvram' command. Now if you use this command what do think will happen if you hit a bug and downgrade code to a version of code that doesn't support that command? If a user downgrades to a Cisco IOS image that does not support the licenses or the expand nvram command, all licenses stored in NVRAM will be lost. This will happen even if the image stores licenses in NVRAM and thus you would lose your licensed features which could be advanced ip services or whatever because you'll back down to IP Base code which doesn't support the feature...Bottom line...keep a copy of the .lic file :-)</description>
		<content:encoded><![CDATA[<p>Tassos that&#8217;s a very good question because this could even happen accidentally (more on this in a sec), if the license is not valid it will fall back to the base level which is IP Base.  The switch/router will still boot and function but with only IP Base level features.</p>
<p>There is a new command introduced in 12.4(20)T &#8216;license expand nvram&#8217; command. Now if you use this command what do think will happen if you hit a bug and downgrade code to a version of code that doesn&#8217;t support that command? If a user downgrades to a Cisco IOS image that does not support the licenses or the expand nvram command, all licenses stored in NVRAM will be lost. This will happen even if the image stores licenses in NVRAM and thus you would lose your licensed features which could be advanced ip services or whatever because you&#8217;ll back down to IP Base code which doesn&#8217;t support the feature&#8230;Bottom line&#8230;keep a copy of the .lic file <img src='http://6200networks.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Daily Trivia - 7/16 by Binh Phan</title>
		<link>http://6200networks.com/2008/07/16/daily-trivia-616/#comment-1237</link>
		<dc:creator>Binh Phan</dc:creator>
		<pubDate>Fri, 18 Jul 2008 21:27:31 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=533#comment-1237</guid>
		<description>Hey Joe,

I'll take a wild guess here.
"ppp loopback ignore"?
Haven't configured PPP for the longest time now!
--Binh</description>
		<content:encoded><![CDATA[<p>Hey Joe,</p>
<p>I&#8217;ll take a wild guess here.<br />
&#8220;ppp loopback ignore&#8221;?<br />
Haven&#8217;t configured PPP for the longest time now!<br />
&#8211;Binh</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 12.4(15)T is last Cisco IOS T Release for Select Cisco Router Platforms by Joe Harris</title>
		<link>http://6200networks.com/2008/07/14/12415t-is-last-cisco-ios-t-release-for-select-cisco-router-platforms/#comment-1236</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Fri, 18 Jul 2008 20:17:25 +0000</pubDate>
		<guid isPermaLink="false">2011700083#comment-1236</guid>
		<description>Nikolay, 12.5(anything) code will be a while before hitting CCO...Please ask your Cisco SE for further details. IOS Release 12.4(15)T will be a long-lived stability release where regularly scheduled software maintenance rebuilds are planned. So the current recommended release for you would be 12.4T up to 12.4(15)T for new features and hardware support. Again ask your SE for further details.</description>
		<content:encoded><![CDATA[<p>Nikolay, 12.5(anything) code will be a while before hitting CCO&#8230;Please ask your Cisco SE for further details. IOS Release 12.4(15)T will be a long-lived stability release where regularly scheduled software maintenance rebuilds are planned. So the current recommended release for you would be 12.4T up to 12.4(15)T for new features and hardware support. Again ask your SE for further details.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Apple iPhone VPN to Cisco ASA by Rodney Jackson</title>
		<link>http://6200networks.com/2008/02/21/apple-iphone-vpn-to-cisco-asa/#comment-1235</link>
		<dc:creator>Rodney Jackson</dc:creator>
		<pubDate>Fri, 18 Jul 2008 19:54:58 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=289#comment-1235</guid>
		<description>I have successfully connected the iPhone to our ASA 5520. The iPhone sync' with Exchange correctly, however once we connect another iPhone while the other still has a connection then the traffic will only flow in one direction (from the iphone to the ASA). If I disconnect the first iphone then the traffic will start to flow correctly and any iphone I connect afterward will only communicate in one direction.</description>
		<content:encoded><![CDATA[<p>I have successfully connected the iPhone to our ASA 5520. The iPhone sync&#8217; with Exchange correctly, however once we connect another iPhone while the other still has a connection then the traffic will only flow in one direction (from the iphone to the ASA). If I disconnect the first iphone then the traffic will start to flow correctly and any iphone I connect afterward will only communicate in one direction.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Securing Cisco Unified Communications - Free Computer Based Training by Erin</title>
		<link>http://6200networks.com/2008/07/15/securing-cisco-unified-communications-free-computer-based-training/#comment-1221</link>
		<dc:creator>Erin</dc:creator>
		<pubDate>Thu, 17 Jul 2008 22:14:19 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/2008/07/15/securing-cisco-unified-communications-free-computer-based-training/#comment-1221</guid>
		<description>This course sounds really helpful, but I also suggest using the Cisco learning network while you're studying for the certifications. It's got a lot of up-to-date information and general news about the IT industry which is really usefull even for seasoned professionals. The community forum is a relaly great resource, too. 
Check it out:
https://cisco.hosted.jivesoftware.com/index.jspa?ciscoHome=true?utm_source=blog+commenting&#38;utm_medium=media&#38;utm_content=Google&#38;utm_campaign=Domestic</description>
		<content:encoded><![CDATA[<p>This course sounds really helpful, but I also suggest using the Cisco learning network while you&#8217;re studying for the certifications. It&#8217;s got a lot of up-to-date information and general news about the IT industry which is really usefull even for seasoned professionals. The community forum is a relaly great resource, too.<br />
Check it out:<br />
<a href="https://cisco.hosted.jivesoftware.com/index.jspa?ciscoHome=true?utm_source=blog+commenting&amp;utm_medium=media&amp;utm_content=Google&amp;utm_campaign=Domestic" rel="nofollow">https://cisco.hosted.jivesoftware.com/index.jspa?ciscoHome=true?utm_source=blog+commenting&amp;utm_medium=media&amp;utm_content=Google&amp;utm_campaign=Domestic</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Block IM Traffic on ASA by quocle</title>
		<link>http://6200networks.com/2007/10/31/block-im-traffic-on-asa/#comment-1219</link>
		<dc:creator>quocle</dc:creator>
		<pubDate>Thu, 17 Jul 2008 17:14:37 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=105#comment-1219</guid>
		<description>how to block yahoo from 12h to 13h by ASA? thanks!!!!</description>
		<content:encoded><![CDATA[<p>how to block yahoo from 12h to 13h by ASA? thanks!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Introduction to Cisco IOS Software Activation and Licensing Workflows by Tassos</title>
		<link>http://6200networks.com/2008/07/17/introduction-to-cisco-ios-software-activation-and-licensing-workflows/#comment-1218</link>
		<dc:creator>Tassos</dc:creator>
		<pubDate>Thu, 17 Jul 2008 15:52:41 +0000</pubDate>
		<guid isPermaLink="false">683357492#comment-1218</guid>
		<description>From http://www.cisco.com/en/US/prod/collateral/iosswrel/ps6537/ps9677/whitepaper_cisco_sw_license.html

"When the device is first powered on, the Software Activation License is examined by Cisco IOS Software, which activates the appropriate feature sets."

What will happen if the License is not valid?

Does this mean the end of dynamips?</description>
		<content:encoded><![CDATA[<p>From <a href="http://www.cisco.com/en/US/prod/collateral/iosswrel/ps6537/ps9677/whitepaper_cisco_sw_license.html" rel="nofollow">http://www.cisco.com/en/US/prod/collateral/iosswrel/ps6537/ps9677/whitepaper_cisco_sw_license.html</a></p>
<p>&#8220;When the device is first powered on, the Software Activation License is examined by Cisco IOS Software, which activates the appropriate feature sets.&#8221;</p>
<p>What will happen if the License is not valid?</p>
<p>Does this mean the end of dynamips?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 12.4(15)T is last Cisco IOS T Release for Select Cisco Router Platforms by Nikolay Shopik</title>
		<link>http://6200networks.com/2008/07/14/12415t-is-last-cisco-ios-t-release-for-select-cisco-router-platforms/#comment-1212</link>
		<dc:creator>Nikolay Shopik</dc:creator>
		<pubDate>Thu, 17 Jul 2008 07:14:35 +0000</pubDate>
		<guid isPermaLink="false">2011700083#comment-1212</guid>
		<description>Thanks Joe, still think its kind unfair for 850 series(introduced in same time as 870). Will wait 12.5M because 12.4(20)T have big amount of bug fixes we are need to.</description>
		<content:encoded><![CDATA[<p>Thanks Joe, still think its kind unfair for 850 series(introduced in same time as 870). Will wait 12.5M because 12.4(20)T have big amount of bug fixes we are need to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 12.4(15)T is last Cisco IOS T Release for Select Cisco Router Platforms by Joe Harris</title>
		<link>http://6200networks.com/2008/07/14/12415t-is-last-cisco-ios-t-release-for-select-cisco-router-platforms/#comment-1206</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Wed, 16 Jul 2008 22:52:59 +0000</pubDate>
		<guid isPermaLink="false">2011700083#comment-1206</guid>
		<description>Nikolay,

The 850's are in the same boat as the other routers listed in the product bulletin they were just left off the list by accident: 

http://www.cisco.com/en/US/prod/collateral/iosswrel/ps8802/ps6968/ps6441/product_bulletin_c25_466578.html</description>
		<content:encoded><![CDATA[<p>Nikolay,</p>
<p>The 850&#8217;s are in the same boat as the other routers listed in the product bulletin they were just left off the list by accident: </p>
<p><a href="http://www.cisco.com/en/US/prod/collateral/iosswrel/ps8802/ps6968/ps6441/product_bulletin_c25_466578.html" rel="nofollow">http://www.cisco.com/en/US/prod/collateral/iosswrel/ps8802/ps6968/ps6441/product_bulletin_c25_466578.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASA - Configure LDAP Authentication for Users by Joe Harris</title>
		<link>http://6200networks.com/2007/10/02/asa-configure-ldap-authentication-for-users/#comment-1205</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Wed, 16 Jul 2008 21:47:55 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=25#comment-1205</guid>
		<description>Hi Simon,

I recently configured this up for a customer, give me a couple of days to put everything into a post and I will put a sample of how you can get it done. I'm just VERY busy this week for some reason ;-) ... Joe</description>
		<content:encoded><![CDATA[<p>Hi Simon,</p>
<p>I recently configured this up for a customer, give me a couple of days to put everything into a post and I will put a sample of how you can get it done. I&#8217;m just VERY busy this week for some reason <img src='http://6200networks.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> &#8230; Joe</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on IOS 12.4(20)T Released by Mike M.</title>
		<link>http://6200networks.com/2008/07/14/ios-12420t-released/#comment-1198</link>
		<dc:creator>Mike M.</dc:creator>
		<pubDate>Wed, 16 Jul 2008 08:52:27 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/2008/07/14/ios-12420t-released/#comment-1198</guid>
		<description>What's even more important, it has CME 7.0 inside :)

With just released UCM, UPS, CCX 7.0 beta softwate 
we can now upgrade our demo labs SW versions to 7.0 :)</description>
		<content:encoded><![CDATA[<p>What&#8217;s even more important, it has CME 7.0 inside <img src='http://6200networks.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>With just released UCM, UPS, CCX 7.0 beta softwate<br />
we can now upgrade our demo labs SW versions to 7.0 <img src='http://6200networks.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 12.4(15)T is last Cisco IOS T Release for Select Cisco Router Platforms by Joe Harris</title>
		<link>http://6200networks.com/2008/07/14/12415t-is-last-cisco-ios-t-release-for-select-cisco-router-platforms/#comment-1192</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Tue, 15 Jul 2008 22:49:06 +0000</pubDate>
		<guid isPermaLink="false">2011700083#comment-1192</guid>
		<description>Sure you can view it from there, it's issuing the 'show' command from the CLI of the ASA...however try and view it from the Configuration -&gt; Remote Access VPN -&gt; Network (Client) Access -&gt; IPSec Connection profiles page and you will be unable to view it or anywhere else a pre-shared key is listed...I even double checked with the ASDM dev group and they confirmed.</description>
		<content:encoded><![CDATA[<p>Sure you can view it from there, it&#8217;s issuing the &#8217;show&#8217; command from the CLI of the ASA&#8230;however try and view it from the Configuration -> Remote Access VPN -> Network (Client) Access -> IPSec Connection profiles page and you will be unable to view it or anywhere else a pre-shared key is listed&#8230;I even double checked with the ASDM dev group and they confirmed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 12.4(15)T is last Cisco IOS T Release for Select Cisco Router Platforms by FCA</title>
		<link>http://6200networks.com/2008/07/14/12415t-is-last-cisco-ios-t-release-for-select-cisco-router-platforms/#comment-1191</link>
		<dc:creator>FCA</dc:creator>
		<pubDate>Tue, 15 Jul 2008 21:03:23 +0000</pubDate>
		<guid isPermaLink="false">2011700083#comment-1191</guid>
		<description>Joe, are you sure?
Try starting ASDM then click Tools, then select Command Line Interface, then type 
more system:running-config &#124; include key
then click button labelled Send.
Now you can see preshared keys in ASDM.</description>
		<content:encoded><![CDATA[<p>Joe, are you sure?<br />
Try starting ASDM then click Tools, then select Command Line Interface, then type<br />
more system:running-config | include key<br />
then click button labelled Send.<br />
Now you can see preshared keys in ASDM.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 12.4(15)T is last Cisco IOS T Release for Select Cisco Router Platforms by Nikolay Shopik</title>
		<link>http://6200networks.com/2008/07/14/12415t-is-last-cisco-ios-t-release-for-select-cisco-router-platforms/#comment-1190</link>
		<dc:creator>Nikolay Shopik</dc:creator>
		<pubDate>Tue, 15 Jul 2008 20:03:59 +0000</pubDate>
		<guid isPermaLink="false">2011700083#comment-1190</guid>
		<description>strangely 12.4(20)T still unavailable for 850 series.</description>
		<content:encoded><![CDATA[<p>strangely 12.4(20)T still unavailable for 850 series.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 12.4(15)T is last Cisco IOS T Release for Select Cisco Router Platforms by Gjeme Markaj</title>
		<link>http://6200networks.com/2008/07/14/12415t-is-last-cisco-ios-t-release-for-select-cisco-router-platforms/#comment-1189</link>
		<dc:creator>Gjeme Markaj</dc:creator>
		<pubDate>Tue, 15 Jul 2008 17:50:40 +0000</pubDate>
		<guid isPermaLink="false">2011700083#comment-1189</guid>
		<description>Thanks for the tips!</description>
		<content:encoded><![CDATA[<p>Thanks for the tips!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASA Interim Code by Joe Harris</title>
		<link>http://6200networks.com/2008/07/09/asa-interim-code/#comment-1182</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Tue, 15 Jul 2008 03:40:58 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=520#comment-1182</guid>
		<description>You are running into an active and assigned bug. I verified this earlier...The bug was found internally in 8.0(3)15 by one of our ASA TME's....Please downgrade to 8.0(3) no Interim Release....I have 8.0(3) running on my ASA's and I tested, no issue.</description>
		<content:encoded><![CDATA[<p>You are running into an active and assigned bug. I verified this earlier&#8230;The bug was found internally in 8.0(3)15 by one of our ASA TME&#8217;s&#8230;.Please downgrade to 8.0(3) no Interim Release&#8230;.I have 8.0(3) running on my ASA&#8217;s and I tested, no issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASA - Configure LDAP Authentication for Users by Simon O'Sullivan</title>
		<link>http://6200networks.com/2007/10/02/asa-configure-ldap-authentication-for-users/#comment-1181</link>
		<dc:creator>Simon O'Sullivan</dc:creator>
		<pubDate>Tue, 15 Jul 2008 03:40:21 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=25#comment-1181</guid>
		<description>Hello guys,

I'm new to Cisco ASA.

I have been looking a similar project as you are working on Matt. I have dual redundant ASA 5510's ver 8.02, and would like to create a SSLVPN with Bookmarks that would be assigned depending on Active Directoy Group membership. 

I.E. the user would logon to the ASA SSVPN web site, the ASA would enumerate the AD groups that user belonged to and if the user was a member of the "RDP to server X" group they would get the bookmark for that (and any other bookmarks that matched a relevant group that the user was a member of)

Has anyone had any luck setting up something like this with ASA?

Cheers Simon.</description>
		<content:encoded><![CDATA[<p>Hello guys,</p>
<p>I&#8217;m new to Cisco ASA.</p>
<p>I have been looking a similar project as you are working on Matt. I have dual redundant ASA 5510&#8217;s ver 8.02, and would like to create a SSLVPN with Bookmarks that would be assigned depending on Active Directoy Group membership. </p>
<p>I.E. the user would logon to the ASA SSVPN web site, the ASA would enumerate the AD groups that user belonged to and if the user was a member of the &#8220;RDP to server X&#8221; group they would get the bookmark for that (and any other bookmarks that matched a relevant group that the user was a member of)</p>
<p>Has anyone had any luck setting up something like this with ASA?</p>
<p>Cheers Simon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASA Interim Code by FCA</title>
		<link>http://6200networks.com/2008/07/09/asa-interim-code/#comment-1179</link>
		<dc:creator>FCA</dc:creator>
		<pubDate>Tue, 15 Jul 2008 01:09:05 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=520#comment-1179</guid>
		<description>Joe, many thanks for explain.

My ASA5505 do it as follow:
asa# show parser dump all

 Mode Name :exec
15 client-update tunnel-group 
15 client-update all
0 help enable
0 help login
[then many other items 0 help ]
0 help import
1 no
1 no debug
1 no debug all
[then many other items 1 no debug ]
[then many other items]
15 debug
0 exit
0 quit
0 logout
0 login

and my ssh session is hung then disconnected.

After that when I log in again command show crashinfo gives to me many pages of text like the following fragment:

asa# show crashinfo
: Saved_Crash

Thread Name: ssh (Old pc 0x08a8bacc ebp 0xd51b9ad8)
Page fault: Address not mapped
    vector 0x0000000e
       edi 0x092adab2
       esi 0xd4c59140
       ebp 0xd51b9da8
       esp 0xd51b9d90
       ebx 0xd4c58970
       edx 0xd4c4f660
       ecx 0x0878ccb0
       eax 0x00000000
error code 0x00000004
       eip 0x0879e91a
        cs 0x00000073
    eflags 0x00013292
       CR2 0x00000004

Cisco Adaptive Security Appliance Software Version 8.0(3)19

Compiled on Mon 16-Jun-08 12:38 by builders
Hardware:   ASA5505
Crashinfo collected on 02:53:05.494 CEST Tue Jul 15 2008

Traceback:
0: 0805876e
1: 0805a4a9
2: 0892a4e9
3: dd7a76d5
4: dd6a61e0
5: 087a11b3
6: 08789136
7: 0878a0a3
8: 080acff0
9: 080ae24e
10: 080aece9
11: 0805e943
Stack dump: base:0xd51b9ca8 size:1168, active:1168


I presumed that this behaviour is reserved for crashinfo force page-fault. Is this then fault on my hardware?</description>
		<content:encoded><![CDATA[<p>Joe, many thanks for explain.</p>
<p>My ASA5505 do it as follow:<br />
asa# show parser dump all</p>
<p> Mode Name :exec<br />
15 client-update tunnel-group<br />
15 client-update all<br />
0 help enable<br />
0 help login<br />
[then many other items 0 help ]<br />
0 help import<br />
1 no<br />
1 no debug<br />
1 no debug all<br />
[then many other items 1 no debug ]<br />
[then many other items]<br />
15 debug<br />
0 exit<br />
0 quit<br />
0 logout<br />
0 login</p>
<p>and my ssh session is hung then disconnected.</p>
<p>After that when I log in again command show crashinfo gives to me many pages of text like the following fragment:</p>
<p>asa# show crashinfo<br />
: Saved_Crash</p>
<p>Thread Name: ssh (Old pc 0&#215;08a8bacc ebp 0xd51b9ad8)<br />
Page fault: Address not mapped<br />
    vector 0&#215;0000000e<br />
       edi 0&#215;092adab2<br />
       esi 0xd4c59140<br />
       ebp 0xd51b9da8<br />
       esp 0xd51b9d90<br />
       ebx 0xd4c58970<br />
       edx 0xd4c4f660<br />
       ecx 0&#215;0878ccb0<br />
       eax 0&#215;00000000<br />
error code 0&#215;00000004<br />
       eip 0&#215;0879e91a<br />
        cs 0&#215;00000073<br />
    eflags 0&#215;00013292<br />
       CR2 0&#215;00000004</p>
<p>Cisco Adaptive Security Appliance Software Version 8.0(3)19</p>
<p>Compiled on Mon 16-Jun-08 12:38 by builders<br />
Hardware:   ASA5505<br />
Crashinfo collected on 02:53:05.494 CEST Tue Jul 15 2008</p>
<p>Traceback:<br />
0: 0805876e<br />
1: 0805a4a9<br />
2: 0892a4e9<br />
3: dd7a76d5<br />
4: dd6a61e0<br />
5: 087a11b3<br />
6: 08789136<br />
7: 0878a0a3<br />
8: 080acff0<br />
9: 080ae24e<br />
10: 080aece9<br />
11: 0805e943<br />
Stack dump: base:0xd51b9ca8 size:1168, active:1168</p>
<p>I presumed that this behaviour is reserved for crashinfo force page-fault. Is this then fault on my hardware?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 12.4(15)T is last Cisco IOS T Release for Select Cisco Router Platforms by Joe Harris</title>
		<link>http://6200networks.com/2008/07/14/12415t-is-last-cisco-ios-t-release-for-select-cisco-router-platforms/#comment-1177</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Mon, 14 Jul 2008 23:28:05 +0000</pubDate>
		<guid isPermaLink="false">2011700083#comment-1177</guid>
		<description>True, but keep in mind there is no way to see them from the ASDM interface which I think is his issue. :-)</description>
		<content:encoded><![CDATA[<p>True, but keep in mind there is no way to see them from the ASDM interface which I think is his issue. <img src='http://6200networks.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASA Interim Code by Joe Harris</title>
		<link>http://6200networks.com/2008/07/09/asa-interim-code/#comment-1176</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Mon, 14 Jul 2008 23:12:29 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=520#comment-1176</guid>
		<description>Are you sure because they are very much different...The show parser dump all command is explained here: 

http://6200networks.com/2007/11/01/how-to-determine-all-available-commands-available-on-the-asa/

and the crashinfo force page-fault command actually causes the box to forces a crash of the box as a result of a page fault. Here's the example of the two from my box:

CCIE6200-ASA# sh parser dump all

 Mode Name :exec
15 client-update tunnel-group  
15 client-update all 
0 help enable 

....

CCIE6200-ASA# crashinfo force page-fault 
WARNING: This command will force a crash and cause a
         reboot. Do you wish to proceed? [confirm]: 
CCIE6200-ASA#</description>
		<content:encoded><![CDATA[<p>Are you sure because they are very much different&#8230;The show parser dump all command is explained here: </p>
<p><a href="http://6200networks.com/2007/11/01/how-to-determine-all-available-commands-available-on-the-asa/" rel="nofollow">http://6200networks.com/2007/11/01/how-to-determine-all-available-commands-available-on-the-asa/</a></p>
<p>and the crashinfo force page-fault command actually causes the box to forces a crash of the box as a result of a page fault. Here&#8217;s the example of the two from my box:</p>
<p>CCIE6200-ASA# sh parser dump all</p>
<p> Mode Name :exec<br />
15 client-update tunnel-group<br />
15 client-update all<br />
0 help enable </p>
<p>&#8230;.</p>
<p>CCIE6200-ASA# crashinfo force page-fault<br />
WARNING: This command will force a crash and cause a<br />
         reboot. Do you wish to proceed? [confirm]:<br />
CCIE6200-ASA#</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 12.4(15)T is last Cisco IOS T Release for Select Cisco Router Platforms by David</title>
		<link>http://6200networks.com/2008/07/14/12415t-is-last-cisco-ios-t-release-for-select-cisco-router-platforms/#comment-1175</link>
		<dc:creator>David</dc:creator>
		<pubDate>Mon, 14 Jul 2008 22:49:59 +0000</pubDate>
		<guid isPermaLink="false">2011700083#comment-1175</guid>
		<description>Gjeme, you can do a 'more system:running-config', this will display the passwords in clear text.

David</description>
		<content:encoded><![CDATA[<p>Gjeme, you can do a &#8216;more system:running-config&#8217;, this will display the passwords in clear text.</p>
<p>David</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 12.4(15)T is last Cisco IOS T Release for Select Cisco Router Platforms by Joe Harris</title>
		<link>http://6200networks.com/2008/07/14/12415t-is-last-cisco-ios-t-release-for-select-cisco-router-platforms/#comment-1174</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Mon, 14 Jul 2008 22:41:17 +0000</pubDate>
		<guid isPermaLink="false">2011700083#comment-1174</guid>
		<description>Gjeme,

You will not be able to view the keys from the within the ASDM application. You can copy the running config to a TFTP server using "write net" and parse through it to get the pre-shared keys or you can access https://IP Address of ASA/admin/config. Those will be the only way you can view the keys.</description>
		<content:encoded><![CDATA[<p>Gjeme,</p>
<p>You will not be able to view the keys from the within the ASDM application. You can copy the running config to a TFTP server using &#8220;write net&#8221; and parse through it to get the pre-shared keys or you can access <a href="https://IP" rel="nofollow">https://IP</a> Address of ASA/admin/config. Those will be the only way you can view the keys.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 12.4(15)T is last Cisco IOS T Release for Select Cisco Router Platforms by Gjeem Markaj</title>
		<link>http://6200networks.com/2008/07/14/12415t-is-last-cisco-ios-t-release-for-select-cisco-router-platforms/#comment-1171</link>
		<dc:creator>Gjeem Markaj</dc:creator>
		<pubDate>Mon, 14 Jul 2008 20:08:55 +0000</pubDate>
		<guid isPermaLink="false">2011700083#comment-1171</guid>
		<description>Joe,

I recently upgraded my ASAs to 8.0(3) and I noticed that ASDM now stars out your IKE pre-shared keys for remote access VPNs (they used to be in cleartext).  Is there any way to retrieve them or see them in cleartext again?

Thanks!

Gjeme</description>
		<content:encoded><![CDATA[<p>Joe,</p>
<p>I recently upgraded my ASAs to 8.0(3) and I noticed that ASDM now stars out your IKE pre-shared keys for remote access VPNs (they used to be in cleartext).  Is there any way to retrieve them or see them in cleartext again?</p>
<p>Thanks!</p>
<p>Gjeme</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASA Interim Code by FCA</title>
		<link>http://6200networks.com/2008/07/09/asa-interim-code/#comment-1160</link>
		<dc:creator>FCA</dc:creator>
		<pubDate>Sun, 13 Jul 2008 13:37:48 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=520#comment-1160</guid>
		<description>Sorry, I omit the very important info about hardware platform.
I try the above on ASA5505. Please check if your ASA5505 behaves the same. Thanks.</description>
		<content:encoded><![CDATA[<p>Sorry, I omit the very important info about hardware platform.<br />
I try the above on ASA5505. Please check if your ASA5505 behaves the same. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASA 5505 Home Config by MIchael Tai</title>
		<link>http://6200networks.com/2007/11/02/asa-5505-home-config/#comment-1152</link>
		<dc:creator>MIchael Tai</dc:creator>
		<pubDate>Sat, 12 Jul 2008 20:10:54 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=113#comment-1152</guid>
		<description>Hi Joe,

I have an ASA5505 Base (Version 8.0(3)) for home, and I have Verizon FIOS with dynamic IP address. Would you mind if you could guide me how to update my Dynamic IP from FIOS to www.dyndns.com or noip.com.  

Below is my current config for ddns update:

ddns update method DynDNS
  ddns both
  interval maximum 1 0 0 0

interface Vlan 2
nameif outside
security-level 0 
ddns update hostname  http://username:password@updates.dnsomatic.com/nic/update?hostname=xxx.homeftp.net&#38;myip=&lt;a&gt;
ddns update DynDNS
ip address dhcp setroute

Thanks in advance!

Michael&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Hi Joe,</p>
<p>I have an ASA5505 Base (Version 8.0(3)) for home, and I have Verizon FIOS with dynamic IP address. Would you mind if you could guide me how to update my Dynamic IP from FIOS to <a href="http://www.dyndns.com" rel="nofollow">http://www.dyndns.com</a> or noip.com.  </p>
<p>Below is my current config for ddns update:</p>
<p>ddns update method DynDNS<br />
  ddns both<br />
  interval maximum 1 0 0 0</p>
<p>interface Vlan 2<br />
nameif outside<br />
security-level 0<br />
ddns update hostname  <a href="http://username:password@updates.dnsomatic.com/nic/update?hostname=xxx.homeftp.net&amp;myip=" rel="nofollow">http://username:password@updates.dnsomatic.com/nic/update?hostname=xxx.homeftp.net&amp;myip=</a><a><br />
ddns update DynDNS<br />
ip address dhcp setroute</p>
<p>Thanks in advance!</p>
<p>Michael</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 6200networks on your iPhone or iPod Touch by Joe Harris</title>
		<link>http://6200networks.com/2008/07/10/6200networks-on-your-iphone-or-ipod-touch/#comment-1147</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Sat, 12 Jul 2008 12:44:17 +0000</pubDate>
		<guid isPermaLink="false">1181104035#comment-1147</guid>
		<description>If this does not work correctly could someone let me know...I don't have an iPhone or iPod Touch to test with so I can only go by what Bruce has told me. Cisco issues me a first edition Blackjack and my wife has a Blackberry World Edition so I have no idea what the page even looks like on an iPhone. Or if you have a Mac (I don't) and you use iPhoney could you send me a screenshot (http://www.marketcircle.com/iphoney/)....Joe, could you send me an email detailing your recommendations. I'd be more than happy to implement them once I knew what the recommendations were and what exactly they accomplished... :-)</description>
		<content:encoded><![CDATA[<p>If this does not work correctly could someone let me know&#8230;I don&#8217;t have an iPhone or iPod Touch to test with so I can only go by what Bruce has told me. Cisco issues me a first edition Blackjack and my wife has a Blackberry World Edition so I have no idea what the page even looks like on an iPhone. Or if you have a Mac (I don&#8217;t) and you use iPhoney could you send me a screenshot (http://www.marketcircle.com/iphoney/)&#8230;.Joe, could you send me an email detailing your recommendations. I&#8217;d be more than happy to implement them once I knew what the recommendations were and what exactly they accomplished&#8230; <img src='http://6200networks.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 6200networks on your iPhone or iPod Touch by Joe Mako</title>
		<link>http://6200networks.com/2008/07/10/6200networks-on-your-iphone-or-ipod-touch/#comment-1141</link>
		<dc:creator>Joe Mako</dc:creator>
		<pubDate>Fri, 11 Jul 2008 21:37:28 +0000</pubDate>
		<guid isPermaLink="false">1181104035#comment-1141</guid>
		<description>I would recommend you create a PNG format graphic file that's 45x45 pixels in size, name it "apple-touch-icon.png" and drop it in the root directory of your Web site. An image  of your CCIE router would work nicely. And then add &lt;code&gt;&lt;/code&gt; to your html.</description>
		<content:encoded><![CDATA[<p>I would recommend you create a PNG format graphic file that&#8217;s 45&#215;45 pixels in size, name it &#8220;apple-touch-icon.png&#8221; and drop it in the root directory of your Web site. An image  of your CCIE router would work nicely. And then add <code></code> to your html.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASA Interim Code by FCA</title>
		<link>http://6200networks.com/2008/07/09/asa-interim-code/#comment-1138</link>
		<dc:creator>FCA</dc:creator>
		<pubDate>Fri, 11 Jul 2008 21:31:03 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=520#comment-1138</guid>
		<description>Joe, please tell me what is the real difference between following commands on ASA 8.0(3) or ASA 8.0(3)19
crashinfo force page-fault
and
show parser dump all ?
For me both of them do nearly the same.</description>
		<content:encoded><![CDATA[<p>Joe, please tell me what is the real difference between following commands on ASA 8.0(3) or ASA 8.0(3)19<br />
crashinfo force page-fault<br />
and<br />
show parser dump all ?<br />
For me both of them do nearly the same.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Daily Trivia - 7/2 by Primus Salters</title>
		<link>http://6200networks.com/2008/07/02/daily-trivia-72/#comment-1136</link>
		<dc:creator>Primus Salters</dc:creator>
		<pubDate>Fri, 11 Jul 2008 15:20:13 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=508#comment-1136</guid>
		<description>First answer is 1 hop, 2nd answer is 255 for multihop</description>
		<content:encoded><![CDATA[<p>First answer is 1 hop, 2nd answer is 255 for multihop</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on End-of-Sale and End-of-Life Products by Joe Harris</title>
		<link>http://6200networks.com/2008/07/08/end-of-sale-and-end-of-life-products/#comment-1123</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Wed, 09 Jul 2008 15:33:02 +0000</pubDate>
		<guid isPermaLink="false">275057928#comment-1123</guid>
		<description>It should be fixed now. :-)</description>
		<content:encoded><![CDATA[<p>It should be fixed now. <img src='http://6200networks.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on End-of-Sale and End-of-Life Products by Joe Harris</title>
		<link>http://6200networks.com/2008/07/08/end-of-sale-and-end-of-life-products/#comment-1122</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Wed, 09 Jul 2008 15:30:42 +0000</pubDate>
		<guid isPermaLink="false">275057928#comment-1122</guid>
		<description>Sorry, That's due to my poor programming :-) ... I'll fix it in just a second ;-)</description>
		<content:encoded><![CDATA[<p>Sorry, That&#8217;s due to my poor programming <img src='http://6200networks.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> &#8230; I&#8217;ll fix it in just a second <img src='http://6200networks.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on End-of-Sale and End-of-Life Products by TJ</title>
		<link>http://6200networks.com/2008/07/08/end-of-sale-and-end-of-life-products/#comment-1121</link>
		<dc:creator>TJ</dc:creator>
		<pubDate>Wed, 09 Jul 2008 15:04:27 +0000</pubDate>
		<guid isPermaLink="false">275057928#comment-1121</guid>
		<description>Just FYI - your link to http://www.cisco.com/en/US/products/prod_end_of_life.html is broken, but thanks for the info!!

/TJ</description>
		<content:encoded><![CDATA[<p>Just FYI - your link to <a href="http://www.cisco.com/en/US/products/prod_end_of_life.html" rel="nofollow">http://www.cisco.com/en/US/products/prod_end_of_life.html</a> is broken, but thanks for the info!!</p>
<p>/TJ</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco IPICS by Trey Spivey</title>
		<link>http://6200networks.com/2008/03/31/cisco-ipics/#comment-1093</link>
		<dc:creator>Trey Spivey</dc:creator>
		<pubDate>Mon, 07 Jul 2008 02:24:09 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=344#comment-1093</guid>
		<description>IPICS has allowed the Geogia Forestry Commission to move light years ahead with our communications across the state of Georgia.</description>
		<content:encoded><![CDATA[<p>IPICS has allowed the Geogia Forestry Commission to move light years ahead with our communications across the state of Georgia.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Thoroughly Disappointed by Brad Hedlund</title>
		<link>http://6200networks.com/2008/07/03/thoroughly-disappointed/#comment-1091</link>
		<dc:creator>Brad Hedlund</dc:creator>
		<pubDate>Sun, 06 Jul 2008 22:30:48 +0000</pubDate>
		<guid isPermaLink="false">503483632#comment-1091</guid>
		<description>Joe,
I see your point.  Its a legitimate complaint.  But I still think its nothing to get really disappointed about. 

What should really disappoint us is anything that lowers the overall market value and prestige of the CCIE certification itself.  This is why I don't think its a good idea to say to any CCIE (regardless of years certified) that you no longer need to re-certify.  As much a I dread re-certifying every two years, when its said and done I come out of it a better CCIE than before and glad that I did it.  I would hate for the market perception to be that the older CCIE's like you and I, while rich with experience, are less skilled, slower, or rustier than the newer ones freshly out of the lab.  Even for us old farts its good get back to basics once in a while and taking the written test every couple of years is a great way to do it.

I also think letting your CCIE go inactive is the most lazy and irresponsible thing I have ever heard of.  Thats a shame.  Those folks will regret that one day.

As for your comment about Networkers, I agree, any non-Cisco employed CCIE's should still be required to attend at least 3 of the last 5 Networkers.  As you well know Joe, working at CIsco is like Networkers every day.  :)

-Brad</description>
		<content:encoded><![CDATA[<p>Joe,<br />
I see your point.  Its a legitimate complaint.  But I still think its nothing to get really disappointed about. </p>
<p>What should really disappoint us is anything that lowers the overall market value and prestige of the CCIE certification itself.  This is why I don&#8217;t think its a good idea to say to any CCIE (regardless of years certified) that you no longer need to re-certify.  As much a I dread re-certifying every two years, when its said and done I come out of it a better CCIE than before and glad that I did it.  I would hate for the market perception to be that the older CCIE&#8217;s like you and I, while rich with experience, are less skilled, slower, or rustier than the newer ones freshly out of the lab.  Even for us old farts its good get back to basics once in a while and taking the written test every couple of years is a great way to do it.</p>
<p>I also think letting your CCIE go inactive is the most lazy and irresponsible thing I have ever heard of.  Thats a shame.  Those folks will regret that one day.</p>
<p>As for your comment about Networkers, I agree, any non-Cisco employed CCIE&#8217;s should still be required to attend at least 3 of the last 5 Networkers.  As you well know Joe, working at CIsco is like Networkers every day.  <img src='http://6200networks.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>-Brad</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Thoroughly Disappointed by Joe Harris</title>
		<link>http://6200networks.com/2008/07/03/thoroughly-disappointed/#comment-1081</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Sun, 06 Jul 2008 05:00:57 +0000</pubDate>
		<guid isPermaLink="false">503483632#comment-1081</guid>
		<description>Brad, you are absolutely correct however my only reservation regarding all of this is the principal of the representation.  What I mean is that the program has stood as the industry benchmark of certifications for more than 10 years now and along with that title represented itself and the people whom attain this level of accreditation with one of most recognized logo’s in all the world, the “golden router.” However the program has undergone significant changes since the days when you and I achieved our numbers (we passed 7 months apart). As an employee of Cisco I guess in retrospect it’s not really my place to complain considering I didn’t have to pay one red cent for either of my last 2 CCIE’s however in everything I do, I try and put myself in the shoes of my customers and relate to the issues that affect them. If I had to come up with $1250.00 (not sure the cost nowadays) plus travel and expenditures for the cost of just sitting the lab, not to mention the astronomical cost of the training materials used to study for the lab, factoring in also the cost of rack rental time or procurement of personal lab equipment I would hope that at the end of my journey Cisco would at least recognize the effort and cost assumed by myself and/or my employer and reward me with something worthy of the status of CCIE. I only took pictures of the plaques, you should see the certificate they sent to me, no kidding my Canon MX850 could have printed a more professional looking certificate than the one I received.  Remember the days when you were required as a CCIE to attend networkers? As a triple CCIE I didn’t even get asked to attend by my management…along with many other aspects of the program (the plaque included); the program has changed, for better or worse is left up the individual to decide.
 
The ten year plaque your customer received is a nice jester (I’ve seen a lot of these plaques and hope to get one in the next couple of years myself) but why has the program not moved to emeritus status for people whom attained the CCIE status for the last 10 years? To myself and every other 10 Year CCIE that I have talked to, that is the right thing to do…a 10 year CCIE has shown their dedication to Cisco, shouldn’t Cisco return the favor? Even after 8 years I still pursued the Service Provider CCIE, not only for the glory of attaining that level of certification but also for the challenge of the certification. It's still ranks as the certification of choice in the market place no question, I just think that as the program continues to uphold the CCIE as the de facto standard in the marketplace, they should maintain those standards at all levels of the program, the plaque included.</description>
		<content:encoded><![CDATA[<p>Brad, you are absolutely correct however my only reservation regarding all of this is the principal of the representation.  What I mean is that the program has stood as the industry benchmark of certifications for more than 10 years now and along with that title represented itself and the people whom attain this level of accreditation with one of most recognized logo’s in all the world, the “golden router.” However the program has undergone significant changes since the days when you and I achieved our numbers (we passed 7 months apart). As an employee of Cisco I guess in retrospect it’s not really my place to complain considering I didn’t have to pay one red cent for either of my last 2 CCIE’s however in everything I do, I try and put myself in the shoes of my customers and relate to the issues that affect them. If I had to come up with $1250.00 (not sure the cost nowadays) plus travel and expenditures for the cost of just sitting the lab, not to mention the astronomical cost of the training materials used to study for the lab, factoring in also the cost of rack rental time or procurement of personal lab equipment I would hope that at the end of my journey Cisco would at least recognize the effort and cost assumed by myself and/or my employer and reward me with something worthy of the status of CCIE. I only took pictures of the plaques, you should see the certificate they sent to me, no kidding my Canon MX850 could have printed a more professional looking certificate than the one I received.  Remember the days when you were required as a CCIE to attend networkers? As a triple CCIE I didn’t even get asked to attend by my management…along with many other aspects of the program (the plaque included); the program has changed, for better or worse is left up the individual to decide.</p>
<p>The ten year plaque your customer received is a nice jester (I’ve seen a lot of these plaques and hope to get one in the next couple of years myself) but why has the program not moved to emeritus status for people whom attained the CCIE status for the last 10 years? To myself and every other 10 Year CCIE that I have talked to, that is the right thing to do…a 10 year CCIE has shown their dedication to Cisco, shouldn’t Cisco return the favor? Even after 8 years I still pursued the Service Provider CCIE, not only for the glory of attaining that level of certification but also for the challenge of the certification. It&#8217;s still ranks as the certification of choice in the market place no question, I just think that as the program continues to uphold the CCIE as the de facto standard in the marketplace, they should maintain those standards at all levels of the program, the plaque included.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Thoroughly Disappointed by Brad Hedlund</title>
		<link>http://6200networks.com/2008/07/03/thoroughly-disappointed/#comment-1072</link>
		<dc:creator>Brad Hedlund</dc:creator>
		<pubDate>Sat, 05 Jul 2008 01:46:30 +0000</pubDate>
		<guid isPermaLink="false">503483632#comment-1072</guid>
		<description>Guys, come on, really, you don't do this for the plaque.  Who cares how much recognition you get from the CCIE program?  It's meaningless compared to the recognition and respect you get from your employer and customers.  They certainly don't care what your plaque looks like.

Also, one of my customers is a Ten Year CCIE, #2000-something.  Anyway, recently he was surprised to see a nice plaque show up in his mailbox from Cisco for reaching his Ten Year milestone.  He thought it was great and I thought it was cool too.  It showed the CCIE program is still doing some cool things to recognize not just the new CCIE's, but the old ones too.

My .02

-Brad</description>
		<content:encoded><![CDATA[<p>Guys, come on, really, you don&#8217;t do this for the plaque.  Who cares how much recognition you get from the CCIE program?  It&#8217;s meaningless compared to the recognition and respect you get from your employer and customers.  They certainly don&#8217;t care what your plaque looks like.</p>
<p>Also, one of my customers is a Ten Year CCIE, #2000-something.  Anyway, recently he was surprised to see a nice plaque show up in his mailbox from Cisco for reaching his Ten Year milestone.  He thought it was great and I thought it was cool too.  It showed the CCIE program is still doing some cool things to recognize not just the new CCIE&#8217;s, but the old ones too.</p>
<p>My .02</p>
<p>-Brad</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASA 5505 Home Config by George Sialmas</title>
		<link>http://6200networks.com/2007/11/02/asa-5505-home-config/#comment-1070</link>
		<dc:creator>George Sialmas</dc:creator>
		<pubDate>Sat, 05 Jul 2008 00:06:56 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=113#comment-1070</guid>
		<description>Hi Joe,

I'm interested in Purchasing a Cisco ASA 5505 for home use.
Can you please explain to me what is the benefit of having the above device configured for home use? At the moment I have a cable internet connection, and I have my cable modem connecting to a Netgear RangeMax WPN824 wireless router. I have my PC connecting to the Netgear router using a wired conncection. Can I use the Cisco ASA in conjuction with my current home internet wired/wireless setup I have at home? Would the Cisco ASA make my home network more secure from the outside internet world?

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hi Joe,</p>
<p>I&#8217;m interested in Purchasing a Cisco ASA 5505 for home use.<br />
Can you please explain to me what is the benefit of having the above device configured for home use? At the moment I have a cable internet connection, and I have my cable modem connecting to a Netgear RangeMax WPN824 wireless router. I have my PC connecting to the Netgear router using a wired conncection. Can I use the Cisco ASA in conjuction with my current home internet wired/wireless setup I have at home? Would the Cisco ASA make my home network more secure from the outside internet world?</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Thoroughly Disappointed by Tassos</title>
		<link>http://6200networks.com/2008/07/03/thoroughly-disappointed/#comment-1067</link>
		<dc:creator>Tassos</dc:creator>
		<pubDate>Fri, 04 Jul 2008 06:53:50 +0000</pubDate>
		<guid isPermaLink="false">503483632#comment-1067</guid>
		<description>Joe, it's interesting to see someone having all the different plaques.
That way you can very easily spot their differences.

And as it seems, a lot of people feel disappointed by the new plaque.</description>
		<content:encoded><![CDATA[<p>Joe, it&#8217;s interesting to see someone having all the different plaques.<br />
That way you can very easily spot their differences.</p>
<p>And as it seems, a lot of people feel disappointed by the new plaque.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Thoroughly Disappointed by Joe Harris</title>
		<link>http://6200networks.com/2008/07/03/thoroughly-disappointed/#comment-1063</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Thu, 03 Jul 2008 16:53:24 +0000</pubDate>
		<guid isPermaLink="false">503483632#comment-1063</guid>
		<description>A perfect example that echo's your statements: 

http://blog.ioshints.info/2008/07/why-im-no-longer-active-ccie.html

http://ardenpackeer.com/blog/blog-cisco-the-new-ccie-plaques-suck/

Joe</description>
		<content:encoded><![CDATA[<p>A perfect example that echo&#8217;s your statements: </p>
<p><a href="http://blog.ioshints.info/2008/07/why-im-no-longer-active-ccie.html" rel="nofollow">http://blog.ioshints.info/2008/07/why-im-no-longer-active-ccie.html</a></p>
<p><a href="http://ardenpackeer.com/blog/blog-cisco-the-new-ccie-plaques-suck/" rel="nofollow">http://ardenpackeer.com/blog/blog-cisco-the-new-ccie-plaques-suck/</a></p>
<p>Joe</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Thoroughly Disappointed by Joey</title>
		<link>http://6200networks.com/2008/07/03/thoroughly-disappointed/#comment-1062</link>
		<dc:creator>Joey</dc:creator>
		<pubDate>Thu, 03 Jul 2008 16:34:24 +0000</pubDate>
		<guid isPermaLink="false">503483632#comment-1062</guid>
		<description>You're not the only one feeling as such.  Seems most of those who've had their CCIEs are slowly but surely feeling like Cisco is not giving them quite as much appreciation as they once did.

For the new and future guys, they all look magnificent :)</description>
		<content:encoded><![CDATA[<p>You&#8217;re not the only one feeling as such.  Seems most of those who&#8217;ve had their CCIEs are slowly but surely feeling like Cisco is not giving them quite as much appreciation as they once did.</p>
<p>For the new and future guys, they all look magnificent <img src='http://6200networks.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Daily Trivia Answers by Joey</title>
		<link>http://6200networks.com/2008/07/03/daily-trivia-answers/#comment-1060</link>
		<dc:creator>Joey</dc:creator>
		<pubDate>Thu, 03 Jul 2008 13:48:17 +0000</pubDate>
		<guid isPermaLink="false">1936317146#comment-1060</guid>
		<description>Thanks Joe, much obliged!</description>
		<content:encoded><![CDATA[<p>Thanks Joe, much obliged!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Daily Trivia - 7/2 by Joe Harris</title>
		<link>http://6200networks.com/2008/07/02/daily-trivia-72/#comment-1058</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Thu, 03 Jul 2008 12:14:19 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=508#comment-1058</guid>
		<description>Joey, I like the consolidated monthly summary...I'll put this together this morning and I will also create an email reminder to do this monthly...but if I forget (been known to happen before) please remind me ;-).</description>
		<content:encoded><![CDATA[<p>Joey, I like the consolidated monthly summary&#8230;I&#8217;ll put this together this morning and I will also create an email reminder to do this monthly&#8230;but if I forget (been known to happen before) please remind me ;-).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Introducing the NEW CCNA Concentrations:  Voice, Security, and Wireless by Jamie Adams</title>
		<link>http://6200networks.com/2008/06/30/introducing-the-new-ccna-concentrations-voice-security-and-wireless/#comment-1053</link>
		<dc:creator>Jamie Adams</dc:creator>
		<pubDate>Wed, 02 Jul 2008 17:29:47 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=500#comment-1053</guid>
		<description>Also as a heads up - Cisco Press has new products for the new CCNA concentrations just announced by Cisco. Read sneak peak chapters or read the social media release here: http://tinyurl.com/3sw3yp.</description>
		<content:encoded><![CDATA[<p>Also as a heads up - Cisco Press has new products for the new CCNA concentrations just announced by Cisco. Read sneak peak chapters or read the social media release here: <a href="http://tinyurl.com/3sw3yp" rel="nofollow">http://tinyurl.com/3sw3yp</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Daily Trivia - 7/2 by Joey</title>
		<link>http://6200networks.com/2008/07/02/daily-trivia-72/#comment-1052</link>
		<dc:creator>Joey</dc:creator>
		<pubDate>Wed, 02 Jul 2008 16:58:14 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=508#comment-1052</guid>
		<description>Would nice to see answers posted at some point (end of month summary or something like that).  :)</description>
		<content:encoded><![CDATA[<p>Would nice to see answers posted at some point (end of month summary or something like that).  <img src='http://6200networks.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco&#8217;s &#8216;Second Chance&#8217; promotion! by Joe Harris</title>
		<link>http://6200networks.com/2008/06/30/ciscos-second-chance-promotion/#comment-1050</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Wed, 02 Jul 2008 12:47:05 +0000</pubDate>
		<guid isPermaLink="false">1309910846#comment-1050</guid>
		<description>Eric, It's my understanding this includes all of them...here is the direct link:  http://www.vue.com/cisco/secondchance/</description>
		<content:encoded><![CDATA[<p>Eric, It&#8217;s my understanding this includes all of them&#8230;here is the direct link:  <a href="http://www.vue.com/cisco/secondchance/" rel="nofollow">http://www.vue.com/cisco/secondchance/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco&#8217;s &#8216;Second Chance&#8217; promotion! by Eric</title>
		<link>http://6200networks.com/2008/06/30/ciscos-second-chance-promotion/#comment-1049</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Wed, 02 Jul 2008 12:12:35 +0000</pubDate>
		<guid isPermaLink="false">1309910846#comment-1049</guid>
		<description>Hi Joe,

what exams do this promotion include?

Thanks.
Eric</description>
		<content:encoded><![CDATA[<p>Hi Joe,</p>
<p>what exams do this promotion include?</p>
<p>Thanks.<br />
Eric</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco IOS Auto-Upgrade Manager by Falbuq</title>
		<link>http://6200networks.com/2008/06/13/cisco-ios-auto-upgrade-manager/#comment-1041</link>
		<dc:creator>Falbuq</dc:creator>
		<pubDate>Tue, 01 Jul 2008 16:17:12 +0000</pubDate>
		<guid isPermaLink="false">998612945#comment-1041</guid>
		<description>Having worked for Cisco for a number of years in Remote Operations Services I just wanted to mention that Cisco prefers that Cisco ROS not be called CROS. It should be referred to as CISCO ROS. Just a minor correction - no mud involved.</description>
		<content:encoded><![CDATA[<p>Having worked for Cisco for a number of years in Remote Operations Services I just wanted to mention that Cisco prefers that Cisco ROS not be called CROS. It should be referred to as CISCO ROS. Just a minor correction - no mud involved.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Can the Tx-Ring be modified on the 2800? by Ivan Pepelnjak</title>
		<link>http://6200networks.com/2008/06/30/can-the-tx-ring-be-modified-on-the-2800/#comment-1040</link>
		<dc:creator>Ivan Pepelnjak</dc:creator>
		<pubDate>Tue, 01 Jul 2008 08:48:00 +0000</pubDate>
		<guid isPermaLink="false">2078078631#comment-1040</guid>
		<description>And here's a longer TX-ring story:

http://wiki.nil.com/Queuing_Principles_in_Cisco_IOS#Where_to_Queue
http://wiki.nil.com/Queuing_Principles_in_Cisco_IOS/Tx-ring-limit

I might have to reword the article ... it does not explain all the HW details that I had to figure out from the hardware specs :)</description>
		<content:encoded><![CDATA[<p>And here&#8217;s a longer TX-ring story:</p>
<p><a href="http://wiki.nil.com/Queuing_Principles_in_Cisco_IOS#Where_to_Queue" rel="nofollow">http://wiki.nil.com/Queuing_Principles_in_Cisco_IOS#Where_to_Queue</a><br />
<a href="http://wiki.nil.com/Queuing_Principles_in_Cisco_IOS/Tx-ring-limit" rel="nofollow">http://wiki.nil.com/Queuing_Principles_in_Cisco_IOS/Tx-ring-limit</a></p>
<p>I might have to reword the article &#8230; it does not explain all the HW details that I had to figure out from the hardware specs <img src='http://6200networks.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco IPICS by Joe Harris</title>
		<link>http://6200networks.com/2008/03/31/cisco-ipics/#comment-1029</link>
		<dc:creator>Joe Harris</dc:creator>
		<pubDate>Sat, 28 Jun 2008 13:03:53 +0000</pubDate>
		<guid isPermaLink="false">http://6200networks.com/?p=344#comment-1029</guid>
		<description>Trey I can definitely ask around and get you some names from customers that have deployed 2.0. I persoanlly don't have any off hand because I'm removed from that vertical within Cisco that handles the IPICS stuff (Public Sector). I’ll ask around and shoot those to you offline.</description>
		<content:encoded><![CDATA[<p>Trey I can definitely ask around and get you some names from customers that have deployed 2.0. I persoanlly don&#8217;t have any off hand because I&#8217;m removed from that vertical within Cisco that handles the IPICS stuff (Public Sector). I’ll ask around and shoot those to you offline.</p>
]]></content:encoded>
	</item>
	<item>
