<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>nat0</title>
	
	<link>http://nat0.net</link>
	<description>a blog about networking, Cisco-solutions and security</description>
	<lastBuildDate>Thu, 12 Apr 2012 09:29:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Nat0" /><feedburner:info uri="nat0" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Cisco IPSec VPN-client ports</title>
		<link>http://feedproxy.google.com/~r/Nat0/~3/-rruu-FzXes/</link>
		<comments>http://nat0.net/cisco-ipsec-vpn-client-ports/#comments</comments>
		<pubDate>Wed, 11 Apr 2012 09:43:33 +0000</pubDate>
		<dc:creator>jimmy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nat0.net/?p=1721</guid>
		<description><![CDATA[&#8220;I cannot connect with my Cisco IPSec VPN-client when I am behind a firewall&#8221; &#8220;I can connect my VPN-client but can´t get any traffic thru&#8221; &#8220;I have changed the settings on the Transport-tab and now I don´t know which settings are correct&#8221; &#160; Have you heard them all? I have, plenty of times! In fact, [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://nat0.net/wp-content/uploads/2012/04/VPN-client.png"><br />
<img class="alignleft  wp-image-1725" title="VPN-client" src="http://nat0.net/wp-content/uploads/2012/04/VPN-client.png" alt="" width="264" height="231" /></a></p>
<p><em>&#8220;I cannot connect with my Cisco IPSec VPN-client when I am behind a firewall&#8221;</em></p>
<p><em>&#8220;I can connect my VPN-client but can´t get any traffic thru&#8221;</em></p>
<p><em>&#8220;I have changed the settings on the Transport-tab and now I don´t know which settings are correct&#8221;</em></p>
<p>&nbsp;</p>
<p>Have you heard them all? I have, plenty of times! In fact, IPSec can be really messy to get to work, because when it was invented there was no such thing as NAT devices and IPSec doesn´t play very well with address translations. There are workarounds. Alot of them. And that´s why it is a bit messy.</p>
<p>&nbsp;</p>
<h1></h1>
<h1>Client settings</h1>
<p>&nbsp;</p>
<p>In the client there are settings under the transport tab tha changes how the client communicates with the head end. Unfortunately, these settings are not protected which means that the end use can (and will!) changes these settings. So, what does the different settings mean?</p>
<p>&nbsp;</p>
<h2>Enable Transparent Tunneling: No</h2>
<p><img class="alignleft size-full wp-image-1724" title="tunnel_no" src="http://nat0.net/wp-content/uploads/2012/04/tunnel_no.png" alt="" width="227" height="83" /></p>
<p>This mode is the vanilla way of IPSec by the book. The tunnel is setup by using ISAKMP (<strong>udp/500</strong>) and the actual data is sent as ESP (<strong>ip/50</strong>).</p>
<p>Because of the way ESP works it doesn´t work well if the client is behind a firewall or other NAT device. If outbound ISAKMP is allowed, the client can connect and authenticate. But the ESP-data will never get thru and the user will experience that the tunnel is broken even if he was able to login.</p>
<p>&nbsp;</p>
<h2>Enable Transparent Tunneling over UDP</h2>
<p><img class="alignleft size-full wp-image-1723" title="tunnel_udp" src="http://nat0.net/wp-content/uploads/2012/04/tunnel_udp.png" alt="" width="228" height="74" /> This is the most common way to overcome the limitations of ESP. The tunnel setup is still being done over ISAKMP (<strong>udp/500</strong>) but the actual data is encapsulated in udp-packets (<strong>udp/4500</strong>).</p>
<p>For this to work, the head end must be configured with &#8216;<strong>crypto isakmp nat-traversal</strong>&#8216;. This command will cause the head end to tell the client during tunnel setup to send data over udp/4500 instead of ESP. Without this configured in the head end, the client will experience the same thing as when Transparent tunneling is disabled (see above) because it will still use ESP for data-transfer unless told otherwise by the head end.</p>
<p>&nbsp;</p>
<h2>Enable Transparent Tunneling over TCP</h2>
<p><img class="alignleft size-full wp-image-1722" title="tunnel_tcp" src="http://nat0.net/wp-content/uploads/2012/04/tunnel_tcp.png" alt="" width="235" height="80" /></p>
<p>This setting is rarely being used. It was invented in the Cisco VPN3000 concentrator and is also supported in pix/ASA. By tunneling traffic over a TCP/port both the tunnel setup and the actual data is sent over that port. That means that ISAKMP (udp/500) is not being used when doing IPSec over TCP. The default port (and most common) is <strong>tcp/10000</strong> but any port will do good. But, the port must be specified in the head end with the &#8216;<strong>crypto isakmp ipsec-over-tcp port 10000&#8242;</strong> command.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h1>Answers</h1>
<p>&nbsp;</p>
<p>So, what are the answers for the end user questions on top of this post? I would say:</p>
<p><em>Q: &#8220;I cannot connect with my Cisco IPSec VPN-client when I am behind a firewall&#8221;</em></p>
<p>A: Make sure that the firewall administrator at the current location makes sures that the following ports are opened outbound:</p>
<ul>
<li>udp/500 (ISAKMP)</li>
<li>udp/4500 (IPSec nat-traversal)</li>
<li>udp/10000 (IPSec over TCP)</li>
</ul>
<p>&nbsp;</p>
<p><em>Q: &#8220;I can connect my VPN-client but can´t get any traffic thru&#8221;</em></p>
<p>A: Enable transport tunneling over UDP in the Transport-tab and try again. If you can still connect but not communicate, make sure that the firewall administrator (at the site to which you are trying to connect!) enables nat-traversal with the &#8216;crypto isakmp nat-traversal&#8217;-command.</p>
<p>&nbsp;</p>
<p><em>Q: &#8220;I have changed the settings on the Transport-tab and now I don´t know which settings are correct&#8221;</em></p>
<p>A: Duh! How would I know? <img src='http://nat0.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Ask your firewall administrator or IT helpdesk. If you still has a copy of the original .pcf-file, try to delete your current profile in the vpn-client and import the .pcf-file again.</p>
<p>&nbsp;</p>
<h1>My recommendations</h1>
<p>Since there are a number of ways to configure the VPN client and the central firewall, which one should we use? Which one gives us least headache? I would say that you should choose from the below, in given order:</p>
<p>&nbsp;</p>
<ol>
<li>Don´t. <img src='http://nat0.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Use AnyConnect instead of the old IPSec-client. There are zillions of reasons why, but they doesn´t fit into this blog post. Anyway. Migrate to AnyConnect if possible!</li>
<li>Use Transparent Tunneling over UDP. Make sure that the central firewall is configured with NAT-traversal as explained above.</li>
<li>Use Transparent Tunneling over TCP. But don´t. There is an extra overhead in encapsulating the end user traffic in yet another layer of TCP-sessions. UDP is better. But if you want to use TCP, use port 10000 because it is already entered by default in the vpn client.</li>
<li>Use the client without transparent tunneling. You use GRE and will never get the client to work from behind a firewall. <img src='http://nat0.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
</ol>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://nat0.net/cisco-ipsec-vpn-client-ports/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://nat0.net/cisco-ipsec-vpn-client-ports/</feedburner:origLink></item>
		<item>
		<title>New product: Cisco ASA CX</title>
		<link>http://feedproxy.google.com/~r/Nat0/~3/73EdUqUZCqs/</link>
		<comments>http://nat0.net/new-product-cisco-asa-cx/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 07:53:28 +0000</pubDate>
		<dc:creator>jimmy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nat0.net/?p=1713</guid>
		<description><![CDATA[Yesterday at the RSA Conference Cisco released a new product named ASA CX. As usual when Cisco releases information about new products you have to dig alot to see thru all marketing material and find technical details. And so is defenately the case here also. &#160; There are a few videos recentely uploaded to Youtube [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Yesterday at the<a href="http://www.cisco.com/web/learning/le21/le34/rsa/2012/index.html"> RSA Conference</a> Cisco released a new product named <a href="http://www.cisco.com/en/US/prod/collateral/vpndevc/ps6032/ps6094/ps6120/white_paper_c11-700240.html">ASA CX</a>. As usual when Cisco releases information about new products you have to dig alot to see thru all<a href="http://www.cisco.com/en/US/prod/vpndevc/ps6032/ps6094/ps6120/context_aware_security.html"> marketing material</a> and find technical details. And so is defenately the case here also.</p>
<p>&nbsp;</p>
<p>There are a few <a href="http://www.youtube.com/watch?v=4yYlJnJhTVg&amp;feature=uploademail">videos recentely uploaded to Youtube by Cisco</a> that describes the product, and a few links in the marketing material cross-referencing eachother. But not much more than that. Yet. However, this is what I have found (and what I can guess by reading between the lines):</p>
<p>&nbsp;</p>
<p>ASA CX is Micro Application Aware. This means that it should be able to filter traffic based on Layer7-information to for example block Facebook Chat, but allow Facebook Updates. Allow Skype, but block Bittorrent. And so on&#8230;</p>
<p>ASA CX also saids to be web reputation aware and to be able to block 0 day malwares. Together with Identity Based Firewalling (allow/deny traffic baesd on user/group-belongings rather than just ip addresses) and URL filtering it smells alot like they have put a Cisco Ironport WSA-box inside of the ASA.</p>
<p>&nbsp;</p>
<p>Cisco ASA CX is by Cisco Prime Security Manager which is shipped with (within!) the ASA CX, which means no more ASDM!</p>
<p>&nbsp;</p>
<p><del>What confuses me most is that even though there is information on Ciscos website that ASA CX comes as 2 modules (&#8220;CX SSP-10&#8243; and &#8220;CX SSP-20&#8243;) there is also a new product line of ASA:s visible on the<a href="http://www.cisco.com/en/US/products/ps6120/prod_models_comparison.html#~tab-a"> product comparison chart</a>: 5512-X, 5515-X and so on&#8230; And with yet no information available on in which models of ASA you can put the CX SSP-modules, I still cant tell what´s needed to run ASA CX. Can I upgrade my existing ASA-firewall to CX with a module? And if so, which models can be upgraded? If not, what models of ASA CX appliances are available? Does an ASA5512-X contain an XS SSP-10? And so on&#8230;.</del></p>
<p>&nbsp;</p>
<p>A conclusion: It´s really thrilling that the next generation of ASA Firewalls can do this granular application inspections that hasn´t been possible yet. And together with functions available in the WSA, ASA CX can be a really potent threat to it competitors! ASA is no longer a packet filtering firewall!</p>
<p>&nbsp;</p>
<p><em><strong>Update!</strong></em></p>
<p><em><strong>According to a anonymous but normally highly trustworthy source (who prefer to call himself Deep Throat <img src='http://nat0.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  ), the CX will at first be a module available only for the high-end 5585-X ASA:s. At a next step the CX will be a software function available in the newly released 5505-X ASA-models. There will probably not be any CX-support in the legacy ASA:s.</strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://nat0.net/new-product-cisco-asa-cx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://nat0.net/new-product-cisco-asa-cx/</feedburner:origLink></item>
		<item>
		<title>Basic ASA Lan2Lan VPN Example</title>
		<link>http://feedproxy.google.com/~r/Nat0/~3/ngBuG5ZGzbA/</link>
		<comments>http://nat0.net/basic-asa-lan2lan-vpn-example/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 18:55:11 +0000</pubDate>
		<dc:creator>jimmy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nat0.net/?p=1687</guid>
		<description><![CDATA[Or &#8211; ASA Lan2Lan-VPN for dummies. &#160; I often get questions related to Lan2Lan-tunnels in ASA. This post serves as a cheat-sheet for different software versions. Pix v6.x &#160; isakmp enable outside isakmp policy 1 authentication pre-share isakmp policy 1 encryption des isakmp policy 1 hash md5 isakmp policy 1 group 1 isakmp policy 1 [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Or &#8211; ASA Lan2Lan-VPN for dummies.</p>
<p>&nbsp;</p>
<p>I often get questions related to Lan2Lan-tunnels in ASA. This post serves as a cheat-sheet for different software versions.</p>
<h3><a href="http://nat0.net/wp-content/uploads/2012/02/l2l.png"><img class=" wp-image-1688 alignnone" title="l2l" src="http://nat0.net/wp-content/uploads/2012/02/l2l.png" alt="" width="276" height="347" /></a><br />
Pix v6.x</h3>
<p>&nbsp;</p>
<pre>isakmp enable outside
isakmp policy 1 authentication pre-share
isakmp policy 1 encryption des
isakmp policy 1 hash md5
isakmp policy 1 group 1
isakmp policy 1 lifetime 86400

isakmp key cisco123 address <span style="color: #32cd32;">5.6.7.8</span> netmask 255.255.255.255

access-list 100 permit ip <span style="color: #ff0000;">10.0.X.0 255.255.255.0</span> <span style="color: #0000cd;">10.0.Y.0 255.255.255.0</span>
crypto ipsec transform-set MYTSET esp-des esp-md5-hmac

crypto map CMAP_OUTSIDE 10 ipsec-isakmp
crypto map CMAP_OUTSIDE match address 100
crypto map CMAP_OUTSIDE set peer <span style="color: #32cd32;">5.6.7.8</span>
crypto map CMAP_OUTSIDE interface outside

access-list nonat_inside permit ip <span style="color: #ff0000;">10.0.X.0 255.255.255.0</span> <span style="color: #4169e1;">10.0.Y.0 255.255.255.0</span>
nat (inside) 0 access-list nonat_inside

sysopt connection permit-ipsec</pre>
<p>&nbsp;</p>
<h3>Pix/ASA v7.0 &#8211; 8.2</h3>
<pre>isakmp enable outside
isakmp policy 1 authentication pre-share
isakmp policy 1 encryption des
isakmp policy 1 hash md5
isakmp policy 1 group 1
isakmp policy 1 lifetime 86400

tunnel-group <span style="color: #32cd32;">5.6.7.8</span> type ipsec-l2l
tunnel-group <span style="color: #32cd32;">5.6.7.8</span> ipsec-attributes
pre-shared-key cisco123

access-list VPN permit ip <span style="color: #ff0000;">10.0.X.0 255.255.255.0</span> <span style="color: #0000cd;">10.0.Y.0 255.255.255.0</span>

crypto ipsec transform-set MYTSET esp-des esp-md5-hmac

crypto map CMAP_OUTSIDE 10 ipsec-isakmp
crypto map CMAP_OUTSIDE 10 set transform-set MYTSET
crypto map CMAP_OUTSIDE 10 match address VPN
crypto map CMAP_OUTSIDE 10 set peer <span style="color: #32cd32;">5.6.7.8</span>
crypto map CMAP_OUTSIDE interface outside

access-list nonat_inside permit ip <span style="color: #ff0000;">10.0.X.0 255.255.255.0</span> <span style="color: #4169e1;">10.0.Y.0 255.255.255.0</span>
nat (inside) 0 access-list nonat_inside</pre>
<h3>ASA v8.3+</h3>
<pre>crypto ikev1 enable outside
crypto ikev1 policy 1
authentication pre-share
encryption des
hash md5
group 1
lifetime 86400

tunnel-group <span style="color: #32cd32;">5.6.7.8</span> type ipsec-l2l
tunnel-group <span style="color: #32cd32;">5.6.7.8</span> ipsec-attributes
ikev1 pre-shared-key cisco123

access-list VPN permit ip <span style="color: #ff0000;">10.0.X.0 255.255.255.0</span> <span style="color: #0000cd;">10.0.Y.0 255.255.255.0</span>

crypto ipsec ikev1 transform-set MYTSET esp-des esp-md5-hmac

crypto map CMAP_OUTSIDE 10 ipsec-isakmp
crypto map CMAP_OUTSIDE 10 set ikev1 transform-set MYTSET
crypto map CMAP_OUTSIDE 10 match address VPN
crypto map CMAP_OUTSIDE 10 set peer <span style="color: #32cd32;">5.6.7.8</span>
crypto map CMAP_OUTSIDE interface outside

object network <span style="color: #ff0000;">MY-LAN</span>
subnet <span style="color: #ff0000;">10.0.X.0 255.255.255.0</span>
object network<span style="color: #4169e1;"> HIS-LAN</span>
subnet <span style="color: #4169e1;">10.0.Y.0 255.255.255.0</span>
nat (inside,outside) source static <span style="color: #ff0000;">MY-LAN MY-LAN</span> destination static <span style="color: #4169e1;">HIS-LAN HIS-LAN</span></pre>
]]></content:encoded>
			<wfw:commentRss>http://nat0.net/basic-asa-lan2lan-vpn-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://nat0.net/basic-asa-lan2lan-vpn-example/</feedburner:origLink></item>
		<item>
		<title>Cisco ISE Profiler in action</title>
		<link>http://feedproxy.google.com/~r/Nat0/~3/csKWFMJtr5Y/</link>
		<comments>http://nat0.net/cisco-ise-profiler-in-action/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 13:20:13 +0000</pubDate>
		<dc:creator>jimmy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nat0.net/?p=1690</guid>
		<description><![CDATA[I am a huge fan of Cisco ISE and Trustsec. I have done a few live implementations as well as at home (anyone should run Trustsec at home! ). There will probably be a lot of ISE-related posts here in the near future. &#160; Here I just want to reflect on how well the built-in [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I am a huge fan of <a href="http://www.cisco.com/en/US/prod/collateral/vpndevc/ps5712/ps11637/ps11195/ise_fundamentals.html">Cisco ISE</a> and <a href="http://www.cisco.com/en/US/netsol/ns1051/index.html">Trustsec</a>. I have done a few live implementations as well as at home (anyone should run Trustsec at home! <img src='http://nat0.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  ). There will probably be a lot of ISE-related posts here in the near future.</p>
<p>&nbsp;</p>
<p>Here I just want to reflect on how well the built-in profiler works in ISE (1.04). I have run the profiler for a few days now and have automatically gathered a complete list of devices in my home network. From here I can build my 802.1x authorization policies to give granular access to devices of a specific type, rather on plain user-based 802.1x.</p>
<p>&nbsp;</p>
<p>For example: All NintendoWII-devices will automatically get Internet-only access. The HP-Device can be automatically moved to the Printer-Vlan (which does only have access to elsewhere on the jetdirect-ports) and the Microsoft Workstations should only get access to the core network if they are successfully authenticated via EAP-TLS. The sky is the limit&#8230;<br />
<a href="http://nat0.net/wp-content/uploads/2012/02/Screen-Shot-2012-02-20-at-14.03.25.png"><img class="alignleft  wp-image-1691" title="Screen Shot 2012-02-20 at 14.03.25" src="http://nat0.net/wp-content/uploads/2012/02/Screen-Shot-2012-02-20-at-14.03.25.png" alt="" width="500" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://nat0.net/cisco-ise-profiler-in-action/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://nat0.net/cisco-ise-profiler-in-action/</feedburner:origLink></item>
		<item>
		<title>Cisco Live 2012 in London – short resume of my sessions</title>
		<link>http://feedproxy.google.com/~r/Nat0/~3/DFrmUAjPI-Q/</link>
		<comments>http://nat0.net/cisco-live-2012-in-london-short-resume-of-my-sessions/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 13:25:26 +0000</pubDate>
		<dc:creator>jimmy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nat0.net/?p=1625</guid>
		<description><![CDATA[I just returned home after spending almost a week in London attendingCisco Live. Much can be said about the event and many has already summarized their experience, so the plan for this blog post is to make a short resumé of the sessions I attended to. Many were great, most were good but a few [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I just returned home after spending almost a week in London attending<a href="www.ciscolive.com">Cisco Live</a>. Much can be said about the event and <a href="http://ccie-quest.driftverket.se/2012/02/cisco-live-europe-2012.html">many</a> has already summarized their experience, so the plan for this blog post is to make a short resumé of the sessions I attended to. Many were great, most were good but a few were less than good. I skip the latter here and focus on the best pieces.</p>
<p>&nbsp;</p>
<h3>TECSEC-3030 &#8211; Advanced Network Access Control with ISE</h3>
<p><a href="http://nat0.net/wp-content/uploads/2012/02/Screen-Shot-2012-02-05-at-20.41.44.png"><img class="alignleft size-thumbnail wp-image-1638" title="Screen Shot 2012-02-05 at 20.41.44" src="http://nat0.net/wp-content/uploads/2012/02/Screen-Shot-2012-02-05-at-20.41.44-150x150.png" alt="" width="150"/></a>This was a techtorial, which means that the session covers a full 9-hour day of presentation. Relative to most people I have a lot if experience with <a href="http://www.cisco.com/en/US/products/ps11640/index.html">Cisco ISE.</a> I have attended a 5-day pre-ATP class for Cisco ISE and done a handfull of implementations. Nevertheless, this techtorial was really relevant for me since I got a lot of repetitions of theories and behind-the-scenes that is easy to forget about in the daily work. Also, since the speakers have so much in-depth knowledge of this new product is gives alot to hear what they say (and what the do not say). I am totally convinced that Cisco has raised the old 802.1x-horse to a new level by combining products like ISE and Anyconnect with the new concept of TrustSec to allow the right device access to the right parts of the network, not only defined by what user is using the device but also based on how it is connected (wired/wireless/vpn) and what kind of device is it (comporate computer/private Ipad/mobile phone). This rocks!</p>
<p>&nbsp;</p>
<h3>BRKNMS3134 &#8211; Advanced NetFlow</h3>
<p><a href="http://nat0.net/wp-content/uploads/2012/02/Screen-Shot-2012-02-05-at-20.42.32.png"><img class="alignleft size-thumbnail wp-image-1639" title="Screen Shot 2012-02-05 at 20.42.32" src="http://nat0.net/wp-content/uploads/2012/02/Screen-Shot-2012-02-05-at-20.42.32-150x150.png" alt="" width="150" /></a>Netflow is a protocol to gather information about network traffic for further analyzis. Instead of analyzing the traffic-flow inline, netflow-enabled devices (routers) collects information about which devices that &#8220;talks&#8221; to who, amount of traffic and ports. This information is sent to Netflow collectors for analyzis.</p>
<p>&nbsp;</p>
<p>I am not a netflow-guy. I have only tried it a few times. But this Live-session was really cool. With Flexible Netflow the sky is the limit when it comes to which kind of information to select and where to send it. Netflow v9 is the key!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h3>BRKSEC-2071 &#8211; Securing DNS</h3>
<p><img class="alignleft size-thumbnail wp-image-1640" title="Screen Shot 2012-02-05 at 20.53.28" src="http://nat0.net/wp-content/uploads/2012/02/Screen-Shot-2012-02-05-at-20.53.28-150x150.png" alt="" width="150" /></p>
<p>The fact that there are vurnerabilities in the DNS-procotol is nothing new. And it has been known for a while now that <a href="http://www.dnssec.net/">DNSSEC</a> is the solution to most security-related DNS-issues. The session contained a live demo of DNS-cache poisoning a´la <a href="http://en.wikipedia.org/wiki/Dan_Kaminsky#Flaw_in_DNS">Kaminsky</a> and thereafter a complete walkthru of actions to prevent this from happening.</p>
<p>The speakor Stenthor Bjarnason really showed in-depth knowledge in the subject!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h3>BRKSEC-3005 &#8211; Advanced IEEE 802.1x for wired networks</h3>
<p><a href="http://nat0.net/wp-content/uploads/2012/02/Screen-Shot-2012-02-05-at-20.55.31.png"><img class="alignleft size-thumbnail wp-image-1641" title="Screen Shot 2012-02-05 at 20.55.31" src="http://nat0.net/wp-content/uploads/2012/02/Screen-Shot-2012-02-05-at-20.55.31-150x150.png" alt="" width="150" /></a>This session was an advanced session that discussed all aspects of 802.1x-implementations in wired networks. It went through the concept of authentication and authorization, radius-attributes for downloadable access-lists and vlan-changes and discussed aspects on how to handle non-802.1x-enabled devices with MAB. Further on there was a lot of information about how to troubleshoot dot1x and how to handle PKI in dot1x-implementations.  The speaker was awesome! <img src='http://nat0.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h3>BRKIPM-2999 &#8211; LISP &#8211; A Next Generation Networking Architecture</h3>
<p><a href="http://nat0.net/wp-content/uploads/2012/02/Screen-Shot-2012-02-05-at-21.02.59.png"><img class="alignleft size-thumbnail wp-image-1642" title="Screen Shot 2012-02-05 at 21.02.59" src="http://nat0.net/wp-content/uploads/2012/02/Screen-Shot-2012-02-05-at-21.02.59-150x150.png" alt="" width="150"  /></a>I am not a thru router guy. At least not compared to my fellow r/s-friends who eat MPLS for breakfast. So attending a <a href="http://lisp.cisco.com/">LISP</a> session was really a step out of my comfort zone. But it was so cool! It is not easy to explain in a few centences what LISP is. In short you can say that LISP is a new way to rout ip packets, not only based on destination but on other parameters aswell. And since these parameters are stored in central units, you can say that LISP uses something similar to DNS to query how to route traffic. And in a sence you can also say that LISP is a way to tunnel traffic. This will be big!</p>
<p>&nbsp;</p>
<h3>BRKSEC-2046 &#8211; Deploying Security Group Tags</h3>
<p><a href="http://nat0.net/wp-content/uploads/2012/02/Screen-Shot-2012-02-05-at-21.11.33.png"><img class="alignleft size-thumbnail wp-image-1643" title="Screen Shot 2012-02-05 at 21.11.33" src="http://nat0.net/wp-content/uploads/2012/02/Screen-Shot-2012-02-05-at-21.11.33-150x150.png" alt="" width="150"  /></a><a href="http://www.cisco.com/en/US/docs/switches/lan/trustsec/configuration/guide/ident-conn_config.html">SGT</a> is one of the building blocks that builds the foundation of <a href="http://www.cisco.com/en/US/netsol/ns1051/index.html">Cisco TrustSec</a>. In short: SGT is a way to tag packets ingress in access layer devices so that they can be filtered egress centrally. The reason to do this as a complement to a firewall is to gain speed. Also, in 802.1x-enabled networks the access-switch has a lot of knowledge about the traffic (type of device, authentication information&#8230;) which means that traffic can be tagged (and further filtered) not only based on ip-information but also based on username/device type/connection type/&lt;insert almost anything here&gt;.</p>
<p>&nbsp;</p>
<h3>BRKSEC-3033 &#8211; Advanced Anyconnect Deployment and Troubleshooting with ASA 5500</h3>
<p><a href="http://nat0.net/wp-content/uploads/2012/02/Screen-Shot-2012-02-05-at-21.12.31.png"><img class="alignleft size-thumbnail wp-image-1644" title="Screen Shot 2012-02-05 at 21.12.31" src="http://nat0.net/wp-content/uploads/2012/02/Screen-Shot-2012-02-05-at-21.12.31-150x150.png" alt="" width="150" /></a>This was my favourite. It is always a pleasure to listen to Håkan Nohre, imho one of the greatest brains when it comes to Cisco ASA and Cisco-based security solutions. I know this subject by heart so I cannot say that there was a lot of news for me. But it it really cool to listen to how inspired and excited Håkan is when he talk about what he loves most. <img src='http://nat0.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h3></h3>
<h3>Roundup</h3>
<p>I must say that all sessions on <a href="http://www.ciscolive.com/global/">Cisco Live</a> keeps a very high quality when it comes to content and how it is presented. I have left out a few of the ones I attended here and the reason for not all sessions being perfect for me was not the content but more that I choose the wrong sessions. So Cisco Live, keep up the good work. And a final note: The PDF material provided after attending Cisco Live is by far the most comprehensive and good technical reference material one can find. Even if I might not attend IRL on Cisco Live next year I will definately pay for the virtual pass, making me able to access the presentations online!</p>
]]></content:encoded>
			<wfw:commentRss>http://nat0.net/cisco-live-2012-in-london-short-resume-of-my-sessions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://nat0.net/cisco-live-2012-in-london-short-resume-of-my-sessions/</feedburner:origLink></item>
		<item>
		<title>Quick note: Inactive Anyconnect sessions not removed.</title>
		<link>http://feedproxy.google.com/~r/Nat0/~3/rsscqStc-eQ/</link>
		<comments>http://nat0.net/quick-note-inactive-anyconnect-sessions-not-removed/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 07:38:50 +0000</pubDate>
		<dc:creator>jimmy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nat0.net/?p=1647</guid>
		<description><![CDATA[I recently had a TAC-case regarding a Cisco ASA 5510-firewall with Anyconnect-clients which had issues with VPN-clients not being able to connect due to &#8220;no address available&#8221;. It turned out that the &#8220;show vpn-sessiondb anyconnect&#8221;-command showed 50+ anyconnect-sessions that were over one month old! Like this: &#160; sh vpn-sessiondb anyconnect Session Type: AnyConnect Username : [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I recently had a TAC-case regarding a Cisco ASA 5510-firewall with Anyconnect-clients which had issues with VPN-clients not being able to connect due to &#8220;no address available&#8221;. It turned out that the &#8220;show vpn-sessiondb anyconnect&#8221;-command showed 50+ anyconnect-sessions that were over one month old! Like this:</p>
<p>&nbsp;</p>
<pre>
sh vpn-sessiondb anyconnect
Session Type: AnyConnect
Username : aaaaa Index : 110
Assigned IP : zx.zx.zx.zx Public IP : qw.qw.qw.qw
Protocol : Clientless DTLS-Tunnel
License : AnyConnect Essentials
Encryption : RC4 AES128 Hashing : SHA1
Bytes Tx : 40577016 Bytes Rx : 5480886
Group Policy : DfltGrpPolicy Tunnel Group : DefaultWEBVPNGroup
Login Time : 10:43:24 CEST Fri Dec 16 2011
<strong>Duration : 34d 23h:20m:15s</strong>
<strong>Inactivity : 32d 2h:00m:04s</strong>
NAC Result : Unknown
VLAN Mapping : N/A VLAN : none

Username : zzzzz Index : 152
Assigned IP : x.x.x.x Public IP : y.y.y.y
Protocol : AnyConnect-Parent DTLS-Tunnel
License : AnyConnect Essentials
Encryption : AES128 Hashing : none SHA1
Bytes Tx : 13671510 Bytes Rx : 8421169
Group Policy : DfltGrpPolicy Tunnel Group : DefaultWEBVPNGroup
Login Time : 04:39:57 CEST Tue Dec 20 2011
<strong>Duration : 31d 5h:23m:42s</strong>
<strong>Inactivity : 31d 4h:14m:45s</strong>
NAC Result : Unknown
VLAN Mapping : N/A VLAN : none
...
...
...
</pre>
<p>The strange thing about this was that there was indeed an idle-timeout configured for DfltGrpPolicy:</p>
<pre>
group-policy DfltGrpPolicy attributes
vpn-idle-timeout 60
</pre>
<p>The solution provided was to add ssl keepalives on the group-policy. And that had the desired effect. After adding the commands below, there were no more stale sessions:</p>
<pre>
group-policy DfltGrpPolicy attributes
webvpn
anyconnect ssl keepalive 300
</pre>
<p>Strange thing though. The idle-timeout should be enough to kill those sessions. I still havent got any explanation from TAC regarding why the ssl keepalive-command was needed. Anyone?</p>
]]></content:encoded>
			<wfw:commentRss>http://nat0.net/quick-note-inactive-anyconnect-sessions-not-removed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://nat0.net/quick-note-inactive-anyconnect-sessions-not-removed/</feedburner:origLink></item>
		<item>
		<title>Cisco Ironport WSA – what happened?</title>
		<link>http://feedproxy.google.com/~r/Nat0/~3/P75MuyRbX84/</link>
		<comments>http://nat0.net/cisco-ironport-wsa-what-happened/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 11:48:03 +0000</pubDate>
		<dc:creator>Jimmy Larsson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Malware]]></category>
		<category><![CDATA[Proxy]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[virus]]></category>
		<category><![CDATA[WSA]]></category>

		<guid isPermaLink="false">http://blogg.kvistofta.nu/?p=1295</guid>
		<description><![CDATA[I have recently implemented a few Cisco Ironport WSA-solutions. When doing a follow-up after the implementation, the customer usually reacts with &#8220;Oh&#8230; WSA? We forgot about that. It probably works&#8230;&#8221; But what difference does it make? If the customer forgets about their web proxy, what good does it do? Lets have a look at an [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I have recently implemented a few Cisco Ironport WSA-solutions. When doing a follow-up after the implementation, the customer usually reacts with &#8220;Oh&#8230; WSA? We forgot about that. It probably works&#8230;&#8221;</p>
<p>But what difference does it make? If the customer forgets about their web proxy, what good does it do? Lets have a look at an implementation&#8230;</p>
<p>I asked one of our customers for permission to peek into their WSA for the purpose of this blog post. This customer has a few hundred users and is a fairly traditional type of user with mostly office users, each with a personal computer. This customer doesnt limit web browsing, except for filtering out access to known obviously bad web categories like child porn. Except for that, free access to the Web.</p>
<div id="attachment_1297" class="wp-caption alignnone" style="width: 300px">
	<a href="http://nat0.net/wp-content/uploads/2011/04/wsa1.jpg"><img class="size-medium wp-image-1297" title="wsa1" src="http://nat0.net/wp-content/uploads/2011/04/wsa1-300x114.jpg" alt="" width="300" height="114" /></a>
	<p class="wp-caption-text">Fig1: General Statistics</p>
</div>
<p>&nbsp;</p>
<p>The first thing to look at is an overview of web activity above. The average web traffic an business day is roughly one million is a working day consists of one million web requests. A web page contains several objects (images, scripts) where each object needs to be requested individually. In this implementation the clients generates 1 million transactions (requests) per day, or 20 million transactions per month.</p>
<p>But what is the content of the requested material? If we look at But WHAT users to surf? If you then look at the purity of operations as it starts to get interesting for real!</p>
<div id="attachment_1298" class="wp-caption alignnone" style="width: 300px">
	<a href="http://nat0.net/wp-content/uploads/2011/04/wsa2.jpg"><img class="size-medium wp-image-1298" title="wsa2" src="http://nat0.net/wp-content/uploads/2011/04/wsa2-300x102.jpg" alt="" width="300" height="102" /></a>
	<p class="wp-caption-text">Fig2: Purity</p>
</div>
<p>Here you can see that just over 10,000 (10.6K) transactions have been stopped this month because of URL category! That is, such as child porn! There are objects (pages, images, etc.) that the user consciously or unconsciously sought but that the system has already been blocked at the access-trial because the source is known and undesirable.</p>
<p>One can also see that almost 3,000 (2.797) object has been blocked due to malware detection. Remember that the WSA scans all through traffic for known viruses, scripts, or other type of malware. The source category has been approved or unknown the WSA have downloaded content. But when checking the contents, they have discovered something unwanted. This little fella has thus stopped nearly 3,000 viruses in the past month!</p>
<p>Overall, 99.8% of web traffic this month has been &#8220;clean&#8221;. 0.2% may seem to be disappearing bit, but it is still almost 34 000 (33.8K) potentionella threat that was blocked already at the front door!</p>
<p>If you want more detailed information about the type of threat blocked, you can obviously get it also:</p>
<div id="attachment_1299" class="wp-caption alignnone" style="width: 300px">
	<a href="http://nat0.net/wp-content/uploads/2011/04/wsa3.jpg"><img class="size-medium wp-image-1299" title="wsa3" src="http://nat0.net/wp-content/uploads/2011/04/wsa3-300x94.jpg" alt="" width="300" height="94" /></a>
	<p class="wp-caption-text">Fig3: Malware</p>
</div>
<p>With the help of the dynamic Sender Base system scored all websites on the internet. Based on a number of factors such as known virus outbreak or the credibility of a domain, each site a web reputation score from -10 to +10. WSA is configured to always block the sources with the lowest score and always allow the web site with the highest score. But how does this when in reality?</p>
<div id="attachment_1300" class="wp-caption alignnone" style="width: 300px">
	<a href="http://nat0.net/wp-content/uploads/2011/04/wsa4.jpg"><img class="size-medium wp-image-1300" title="wsa4" src="http://nat0.net/wp-content/uploads/2011/04/wsa4-300x116.jpg" alt="" width="300" height="116" /></a>
	<p class="wp-caption-text">Fig4: Web Reputation</p>
</div>
<p>Here we can see that nearly 10,000 transactions in the last month blocked because of Web reputation.</p>
<p>The conclusion I draw every time I look at this type of reporting is that the WSA is blocking lots of web traffic in the covert, and it&#8217;s surprisingly rare that users react to the IT department because they can not browse to a specific site. It may be that the user deliberately tries to make stupid mistakes on the internet, but my experience and absolute conviction is that it almost always is something that happens unconsciously. A link to an email or on facebook that look &#8220;nice&#8221;, but takes the user to a  malware site in some obscure corner of the Internet.</p>
<p>Key figures for this particular device, a typical month &#8220;at work&#8221;:</p>
<ul>
<li>The number of <strong>transactions</strong>: 20.4 million pieces.</li>
<li>The number of <strong>blocked</strong> transactions: 33 800 pcs.</li>
<li>The number of <strong>blocked Malwares</strong> / viruses: 2797 pcs, or <strong>one every 3 minutes</strong> during business hours!</li>
<li><strong>Dare you not to check the content of your web traffic?</strong></li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://nat0.net/cisco-ironport-wsa-what-happened/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://nat0.net/cisco-ironport-wsa-what-happened/</feedburner:origLink></item>
		<item>
		<title>How to play case status table-tennis with Cisco TAC</title>
		<link>http://feedproxy.google.com/~r/Nat0/~3/zdOujw8DzJY/</link>
		<comments>http://nat0.net/how-to-play-case-status-table-tennis-with-cisco-tac/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 21:35:59 +0000</pubDate>
		<dc:creator>jimmy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[tac]]></category>

		<guid isPermaLink="false">http://nat0.net/?p=1569</guid>
		<description><![CDATA[The problem have you ever had an open TAC case with Cisco, just waiting for them to provide either a solution or some other kind of feedback, and all that happens is that the TAC engineer sends you an email telling you that they &#8220;have work in progress&#8221; or something else not-making-the-case-evolve? If so, I [...]]]></description>
			<content:encoded><![CDATA[<p></p><h3>The problem</h3>
<p>have you ever had an open TAC case with Cisco, just waiting for them to provide either a solution or some other kind of feedback, and all that happens is that the TAC engineer sends you an email telling you that they &#8220;have work in progress&#8221; or something else not-making-the-case-evolve?</p>
<p>If so, I guess you have seen that the moment the engineer sends you an email, you also get a case update email telling you that the case has changed status to &#8220;customer pending&#8221;.</p>
<p>And that is a bit evil. I am pretty sure that more often than not, the reason for the engineer to send that email to you is not to tell you something, but to to actually change the case status. I have a feeling that the engineers effeciency is measured in how long the case is &#8220;Cisco pending&#8221; and as soon as the case is put over to the customer side, it is &#8220;all cool&#8221;. just like throwing a burning ball between two perssons. Or like a chess-clock that measure the time spent on each side.</p>
<p style="text-align: center;"><a href="http://nat0.net/wp-content/uploads/2012/01/chessclock.jpeg"><img class=" wp-image-1595 aligncenter" title="chessclock" src="http://nat0.net/wp-content/uploads/2012/01/chessclock.jpeg" alt="" width="257" height="196" /></a></p>
<h3>The solution</h3>
<p>The best way to handle this is to get even with their own weapons. Last week I had a mail dialogue with TAC that looked like this:</p>
<p style="text-align: center;"><a href="http://nat0.net/wp-content/uploads/2012/01/pingpong.png"><img class="size-medium wp-image-1598 aligncenter" title="pingpong" src="http://nat0.net/wp-content/uploads/2012/01/pingpong-300x288.png" alt="" width="300" height="288" /></a></p>
<p><em>TAC: we are working on the information You sent. we will get back to you tomorrow.<br />
[case status: Customer pending]</em></p>
<p>Me: thank you very much, I appretiate it.<br />
[case status: customer updated -&gt; Cisco pending]</p>
<p>TAC: you are welcome. have a nice day.<br />
[case status: Customer pending]</p>
<p>Me: you too&#8230;<br />
[case status: customer updated -&gt; Cisco pending]</p>
<p>TAC: thank you very much!<br />
[case status: Customer pending]</p>
<p>Me: please do not answer this email, since it changes the status of the case to &#8220;Customer pending&#8221;, which does NOT reflect the current situation.<br />
[case status: customer updated -&gt; Cisco pending]</p>
<p>&nbsp;</p>
<p>I won!!! <img src='http://nat0.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://nat0.net/how-to-play-case-status-table-tennis-with-cisco-tac/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://nat0.net/how-to-play-case-status-table-tennis-with-cisco-tac/</feedburner:origLink></item>
		<item>
		<title>Happy new year – Again! :-)</title>
		<link>http://feedproxy.google.com/~r/Nat0/~3/rtPyiEJdufk/</link>
		<comments>http://nat0.net/happy-new-year-again/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 12:17:05 +0000</pubDate>
		<dc:creator>jimmy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CCIE]]></category>
		<category><![CDATA[INE]]></category>
		<category><![CDATA[ipexpert]]></category>

		<guid isPermaLink="false">http://nat0.net/?p=1473</guid>
		<description><![CDATA[When purging and cleaning ancient posts I found this post where I wished everyone a Happy New 2011. And I felt that it was time for an update. &#160; So, what happened during 2011 &#8211; did I become a Cisco CCIE Security? The short answer is: No. &#160; In february 2011 my written CCIE Security exam [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>When purging and cleaning ancient posts I found <a href="http://nat0.net/?p=1197">this post</a> where I wished everyone a Happy New 2011. And I felt that it was time for an update.</p>
<p>&nbsp;</p>
<p>So, what happened during 2011 &#8211; did I become a Cisco CCIE Security? The short answer is: No.</p>
<p>&nbsp;</p>
<p>In february 2011 my written CCIE Security exam expired. Shortly after that my CCNA/CCNP/CCSP/whatever certifications also was about to expire, and to prevent that from happen I passed the CCIE Security Written once more. So, that means that I have another 18 (like 12 from now) months to do another Lab attempt.</p>
<p>&nbsp;</p>
<p>During 2011 there was no way that I could find enough time to study for the lab. Primary of course because of the general work load, but also was my schedule filled with cool projects. Not only have I continued my journey to teach (I have made  my own study material on which 2 different Cisco ASA-workshops were based), I have also done a lot of implementations of Cisco <a href="http://www.cisco.com/en/US/prod/collateral/netmgtsw/ps5698/ps6767/ps9911/data_sheet_c78-614584.html">ACS5</a> and 802.1x, and lately a few <a href="http://www.google.se/url?sa=t&amp;rct=j&amp;q=cisco%20ise&amp;source=web&amp;cd=3&amp;ved=0CDkQFjAC&amp;url=http%3A%2F%2Fwww.cisco.com%2Fen%2FUS%2Fproducts%2Fps11640%2Findex.html&amp;ei=Hp4eT_WjBYKh4gTXveyNDw&amp;usg=AFQjCNHsv--TWMFSZOScsiJiF5HJtA-SIw&amp;sig2=Zl9QDnwUdUKZ-h-2dD_kiw">ISE</a>-implementations as well.</p>
<p>&nbsp;</p>
<p>So, will I ever get that CCIE number? I dont know, but I will continue to try. I have recently purchased the <a href="http://www.ine.com/ccie-security-lab-preparation.htm">&#8220;Ultimate CCIE Security Self Paced bundle&#8221; from INE</a> as a complement to the material I already have from <a href="http://www.ipexpert.com/Cisco/CCIE/Security/Self-Study-Bundle">IPExpert</a>. I find a few hours every now and then and try to focus to gain the speed/accuracy needed for the dreaded exam.</p>
<p>&nbsp;</p>
<p>Stay tuned, I´ll be back. <img src='http://nat0.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p>/Jimmy</p>
]]></content:encoded>
			<wfw:commentRss>http://nat0.net/happy-new-year-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://nat0.net/happy-new-year-again/</feedburner:origLink></item>
		<item>
		<title>RSS-feeds with partial content sucks!</title>
		<link>http://feedproxy.google.com/~r/Nat0/~3/NIGligysiM4/</link>
		<comments>http://nat0.net/rss-feeds-with-partial-content-sucks/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 17:16:39 +0000</pubDate>
		<dc:creator>Jimmy Larsson</dc:creator>
				<category><![CDATA[English posts]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://blogg.kvistofta.nu/?p=1407</guid>
		<description><![CDATA[I am fan of RSS readers. I use Google Reader all the time to keep track of interresting blog and news sites. Actually, i rarely visit blog sites direct, just from my RSS reader. And I love it. &#160; But there are a few really good blogs that are configured not to post the full [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I am fan of RSS readers. I use Google Reader all the time to keep track of interresting blog and news sites. Actually, i rarely visit blog sites direct, just from my RSS reader. And I love it.</p>
<p>&nbsp;</p>
<p>But there are a few really good blogs that are configured not to post the full blog posts in their RSS stream. And this sucks. Here is an example:</p>
<p>&nbsp;</p>
<div id="attachment_1408" class="wp-caption alignnone" style="width: 300px">
	<a href="http://nat0.net/wp-content/uploads/2012/01/Screen-Shot-2012-01-21-at-18.16.03.png"><img class="size-medium wp-image-1408" title="Screen Shot 2012-01-21 at 18.16.03" src="http://nat0.net/wp-content/uploads/2012/01/Screen-Shot-2012-01-21-at-18.16.03-300x151.png" alt="Screen dump of Router Freak blog from RSS Reader" width="300" height="151" /></a>
	<p class="wp-caption-text">Screen dump of Router Freak blog from RSS Reader</p>
</div>
<p>What happens when I come to these entries is either:</p>
<ol>
<li>I read the ingress of the blog post. Find it really interresting and click the header that links me away from my RSS reader to the actual site where I continue to read &#8216;the full story&#8217;.</li>
<li>I read the ingress. Find it (probably, because the feed is in my reader) somewhat readworthy but doesnt care about reading the full post because that will link me away from the reader.</li>
</ol>
<p>&nbsp;</p>
<p>What happens more and more often is #2 above. And that´s sad. Because I really like to read what good bloggers writes. But I wanna do it in my reader.</p>
<p>&nbsp;</p>
<p>So please, configure your RSS feed to contain the text of the ENTIRE blog post, not just the first x bytes&#8230; If it is more interresting for you to have me seeing your ad-banners on your page (which I only do if i make a &#8216;real&#8217; visit) than it is for you to have me read your content, sorry You´ve lost me as a reader.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://nat0.net/rss-feeds-with-partial-content-sucks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://nat0.net/rss-feeds-with-partial-content-sucks/</feedburner:origLink></item>
	</channel>
</rss>

