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

<channel>
	<title>The Cruft Of My Brain &#187; Cruft</title>
	<atom:link href="http://www.thecruftofmybrain.com/category/cruft/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thecruftofmybrain.com</link>
	<description>Purging my mental dust bunnies</description>
	<lastBuildDate>Sun, 25 Jul 2010 14:57:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Anyconnect for iPhone???</title>
		<link>http://www.thecruftofmybrain.com/2010/07/13/anyconnect-for-iphone/</link>
		<comments>http://www.thecruftofmybrain.com/2010/07/13/anyconnect-for-iphone/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 13:46:32 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Cruft]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[iphone anyconnect cisco]]></category>

		<guid isPermaLink="false">http://www.thecruftofmybrain.com/2010/07/13/anyconnect-for-iphone/</guid>
		<description><![CDATA[It&#8217;s now a month or so after the release of iOS4 and the Cisco Anyconnect Secure Mobile Client for iPhone is nowhere to be found. What&#8217;s up Cisco??? I want my Anyconnect! And anyone believes they&#8217;ll actually ship the Cius? HA!]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s now a month or so after the release of iOS4 and the Cisco Anyconnect Secure Mobile Client for iPhone is nowhere to be found. What&#8217;s up Cisco???  I want my Anyconnect!  </p>
<p>And anyone believes they&#8217;ll actually ship the Cius?  HA!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thecruftofmybrain.com/2010/07/13/anyconnect-for-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone VPN and Cisco IOS, Part2</title>
		<link>http://www.thecruftofmybrain.com/2010/05/05/iphone-vpn-and-cisco-ios-part2/</link>
		<comments>http://www.thecruftofmybrain.com/2010/05/05/iphone-vpn-and-cisco-ios-part2/#comments</comments>
		<pubDate>Wed, 05 May 2010 15:58:52 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Cisco Routing and Switching]]></category>
		<category><![CDATA[Cruft]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[iphone ipad vpn cisco ios]]></category>

		<guid isPermaLink="false">http://www.thecruftofmybrain.com/?p=495</guid>
		<description><![CDATA[I previously posted about some luck I had getting IPSEC VPN to work from my iPhone to my IOS router/firewall. That post is now kind of useless because the source blog disappeared about a year ago. So, in order to make this useful again I&#8217;m posting my full IOS code (obfuscated for obvious reasons). Change [...]]]></description>
			<content:encoded><![CDATA[<p>I previously <a href="http://www.thecruftofmybrain.com/2009/02/01/iphone-vpn-and-cisco-ios/">posted about some luck</a> I had getting IPSEC VPN to work from my iPhone to my IOS router/firewall.  That post is now kind of useless because the source blog disappeared about a year ago.  So, in order to make this useful again I&#8217;m posting my full IOS code (obfuscated for obvious reasons).  Change the IP addresses and the group name and password and you should be good to go.  This uses the new(ish) method in IOS of zone based firewall.  It&#8217;s overly complex and really hard to parse for anything remotely complicated but it&#8217;s what I&#8217;m working with.  You&#8217;ll notice I used the SDM for most of the config.  Yep, I&#8217;m lame and I&#8217;m not afraid to admit it.  All of that zone config typing would have been a pain in the butt!  Also, be sure to use a pool that is different from your &#8220;inside&#8221; subnet.  Won&#8217;t work otherwise.  Also, it should be obvious but this config uses local users so you need to add at least one of those.</p>
<p>Keep in mind this will all change when iPhone OS4 comes out as it&#8217;s supposed to support SSL VPN&#8217;s.  Finally.  The IPSEC works perfectly fine for now though.  I&#8217;ve not tested this on my iPad yet since I haven&#8217;t had it out of the house&#8230;and it&#8217;s not a 3G model.  Don&#8217;t see why it wouldn&#8217;t work though.</p>
<p>And now the code:</p>
<p><code>aaa authentication login sdm_vpn_xauth_ml_2 local<br />
aaa authorization network sdm_vpn_group_ml_2 local</p>
<p>crypto isakmp policy 2<br />
 encr aes 256<br />
 authentication pre-share<br />
 group 2</p>
<p>crypto isakmp client configuration group mygroupname<br />
 key something_goes_here<br />
 dns 192.168.x.x<br />
 pool SDM_POOL_2<br />
 include-local-lan<br />
 netmask 255.255.255.0<br />
crypto isakmp profile sdm-ike-profile-1<br />
   match identity group mygroupname<br />
   client authentication list sdm_vpn_xauth_ml_2<br />
   isakmp authorization list sdm_vpn_group_ml_2<br />
   client configuration address respond<br />
   virtual-template 2</p>
<p>crypto ipsec transform-set aes-transform esp-aes 256 esp-sha-hmac<br />
!<br />
crypto ipsec profile SDM_Profile1<br />
 set transform-set aes-transform<br />
 set isakmp-profile sdm-ike-profile-1</p>
<p>class-map type inspect match-any SDM_AH<br />
 match access-group name SDM_AH<br />
class-map type inspect match-any SDM_ESP<br />
 match access-group name SDM_ESP<br />
class-map type inspect match-any SDM_EASY_VPN_SERVER_TRAFFIC<br />
 match protocol isakmp<br />
 match protocol ipsec-msft<br />
 match class-map SDM_AH<br />
 match class-map SDM_ESP<br />
class-map type inspect match-all SDM_EASY_VPN_SERVER_PT<br />
 match class-map SDM_EASY_VPN_SERVER_TRAFFIC</p>
<p>policy-map type inspect sdm-permit<br />
 class type inspect SDM_EASY_VPN_SERVER_PT<br />
  pass<br />
 class class-default</p>
<p>zone security ezvpn-zone</p>
<p>zone-pair security sdm-zp-ezvpn-out1 source ezvpn-zone destination out-zone<br />
 service-policy type inspect sdm-permit-ip<br />
zone-pair security sdm-zp-out-ezpn1 source out-zone destination ezvpn-zone<br />
 service-policy type inspect sdm-permit-ip<br />
zone-pair security sdm-zp-ezvpn-in2 source ezvpn-zone destination in-zone<br />
 service-policy type inspect sdm-permit-ip<br />
zone-pair security sdm-zp-ezvpn-in1 source ezvpn-zone destination dmz-zone<br />
 service-policy type inspect sdm-permit-ip<br />
zone-pair security sdm-zp-in-ezvpn2 source in-zone destination ezvpn-zone<br />
 service-policy type inspect sdm-permit-ip<br />
zone-pair security sdm-zp-in-ezvpn1 source dmz-zone destination ezvpn-zone<br />
 service-policy type inspect sdm-permit-ip</p>
<p>interface Virtual-Template2 type tunnel<br />
 ip unnumbered FastEthernet0<br />
 zone-member security ezvpn-zone<br />
 tunnel mode ipsec ipv4<br />
 tunnel protection ipsec profile SDM_Profile1</p>
<p>ip local pool SDM_POOL_2 192.168.y.y 192.168.y.z</p>
<p>ip access-list extended SDM_AH<br />
 remark SDM_ACL Category=1<br />
 permit ahp any any<br />
ip access-list extended SDM_ESP<br />
 remark SDM_ACL Category=1<br />
 permit esp any any</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thecruftofmybrain.com/2010/05/05/iphone-vpn-and-cisco-ios-part2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iPad&#8230;Nuff said</title>
		<link>http://www.thecruftofmybrain.com/2010/04/03/ipad-nuff-said/</link>
		<comments>http://www.thecruftofmybrain.com/2010/04/03/ipad-nuff-said/#comments</comments>
		<pubDate>Sat, 03 Apr 2010 19:46:59 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Cruft]]></category>
		<category><![CDATA[Home and Hobbies]]></category>
		<category><![CDATA[iPad fanboy geek]]></category>

		<guid isPermaLink="false">http://www.thecruftofmybrain.com/2010/04/03/ipad-nuff-said/</guid>
		<description><![CDATA[Yup&#8230;did it. In fact I&#8217;m typing this on the new iPad specific wordpress app and I love it!!! The keyboard in landscape mode is very nice and I can type very quickly. I think it might drive some bad habits with all of the autocorrection and not capitalizing first letters but I can get over [...]]]></description>
			<content:encoded><![CDATA[<p>Yup&#8230;did it.  In fact I&#8217;m typing this on the new iPad specific wordpress app and I love it!!!  The keyboard in landscape mode is very nice and I can type very quickly. I think it might drive some bad habits with all of the autocorrection and not capitalizing first letters but I can get over that.</p>
<p>My first impression after unboxing was &#8220;this is a big iPhone&#8221;.  After putting on some iPad specific apps, that made all the difference.  The bigger format really is something special. </p>
<p>Now, anyone know if it would be possible to write a driver to allow a Bluetooth connection to the iogear bluetooth serial adapter?  This would be great for data center work!!! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.thecruftofmybrain.com/2010/04/03/ipad-nuff-said/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Breadboard Arduino with FTDI cable and no reset button</title>
		<link>http://www.thecruftofmybrain.com/2010/03/15/breadboard-arduino-with-ftdi-cable-and-no-reset-button/</link>
		<comments>http://www.thecruftofmybrain.com/2010/03/15/breadboard-arduino-with-ftdi-cable-and-no-reset-button/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 16:04:42 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Cruft]]></category>
		<category><![CDATA[Home and Hobbies]]></category>
		<category><![CDATA[arduino]]></category>

		<guid isPermaLink="false">http://www.thecruftofmybrain.com/?p=486</guid>
		<description><![CDATA[So, here&#8217; my coming out for the other project I&#8217;ve been working on lately. Learning about Arduino&#8217;s. More later about why I&#8217;m doing this but for now&#8230; I got a regular Duemilanove from Adafruit a couple of weeks ago. These things are so nice that they include all of the basic necessary components like the [...]]]></description>
			<content:encoded><![CDATA[<p>So, here&#8217; my coming out for the other project I&#8217;ve been working on lately.  Learning about Arduino&#8217;s.  More later about why I&#8217;m doing this but for now&#8230;</p>
<p>I got a regular Duemilanove from <a href="http://www.adafruit.com/index.php?main_page=product_info&#038;cPath=17&#038;products_id=50">Adafruit </a>a couple of weeks ago.  These things are so nice that they include all of the basic necessary components like the USB to RS232, the automatic voltage input switching, pin headers etc.  I&#8217;ve been fiddling with that and learning some of how it works.  I wanted to get a second for the purposes of having the two Arduino&#8217;s talk to each other.  Naturally I decided to do this the harder way and assemble one on a breadboard.</p>
<p>This is actually pretty simple.  The components you need are the Arduino flashed <a href="http://www.sparkfun.com/commerce/product_info.php?products_id=9217">Atmega328p</a>, a voltage regulator for getting your power source to a steady 5v, a <a href="http://www.sparkfun.com/commerce/product_info.php?products_id=9420">clock source</a> and a <a href="http://www.adafruit.com/index.php?main_page=product_info&#038;cPath=29&#038;products_id=70">programming method</a>.  A couple of LED&#8217;s are good for power and the pin13 status.  Based on several resources around the web including:</p>
<p><a href="http://www.flickr.com/photos/34908673@N00/4042185019/sizes/l/">http://www.flickr.com/photos/34908673@N00/4042185019/sizes/l/</a><br />
<a href="http://arduinofun.com/blog/2009/10/15/breadboard-arduino/">http://arduinofun.com/blog/2009/10/15/breadboard-arduino/</a></p>
<p>I&#8217;ve managed to get my Boarduino up and running without the use of a reset button and hopefully with a few extra rows available on my breadboard.  I&#8217;m using an FTDI cable from Adafruit since I had to pick one up for the XBee modules I got.  Yes, more to come on that as well.  The FTDI cable includes the chip for USB to RS232 conversion but it does not pull out the DTS pin.  Thankfully Arduino supports auto-reset using the RTS pin.  I had to struggle a bit to figure out why it wasnt&#8217; working but the fix was pretty simple.  You need to enable &#8220;Set RTS on Close&#8221; on the serial port that&#8217;s tied to the cable.  Check out the LadyAda article for more details:</p>
<p><a href="http://www.ladyada.net/make/boarduino/use.html">http://www.ladyada.net/make/boarduino/use.html</a></p>
<table style="width:auto;">
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/pxBYY96hw-O0VAEfVqFX_w?authkey=Gv1sRgCNzjmc6Iwpm8IQ&#038;feat=embedwebsite"><img src="http://lh4.ggpht.com/_WrQ1L-n8Bd4/S55S3pwfiHI/AAAAAAAAkYw/Jjlj5QdGRok/s288/IMG_2191.JPG" /></a></td>
</tr>
<tr>
<td style="font-family:arial,sans-serif; font-size:11px; text-align:right">From <a href="http://picasaweb.google.com/mdgeek/ArduinoProjects?authkey=Gv1sRgCNzjmc6Iwpm8IQ&#038;feat=embedwebsite">Arduino projects</a></td>
</tr>
</table>
<table style="width:auto;">
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/jKcuUDAzElirlq-advwbEQ?authkey=Gv1sRgCNzjmc6Iwpm8IQ&#038;feat=embedwebsite"><img src="http://lh3.ggpht.com/_WrQ1L-n8Bd4/S55S4LowObI/AAAAAAAAkY0/TKAJ-M1LYcE/s288/IMG_2195.JPG" /></a></td>
</tr>
<tr>
<td style="font-family:arial,sans-serif; font-size:11px; text-align:right">From <a href="http://picasaweb.google.com/mdgeek/ArduinoProjects?authkey=Gv1sRgCNzjmc6Iwpm8IQ&#038;feat=embedwebsite">Arduino projects</a></td>
</tr>
</table>
<table style="width:auto;">
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/9vEF2dhtpyLZijbjnxncSA?authkey=Gv1sRgCNzjmc6Iwpm8IQ&#038;feat=embedwebsite"><img src="http://lh4.ggpht.com/_WrQ1L-n8Bd4/S55S4lJfujI/AAAAAAAAkY4/RrLJZDKSq04/s288/IMG_2196.JPG" /></a></td>
</tr>
<tr>
<td style="font-family:arial,sans-serif; font-size:11px; text-align:right">From <a href="http://picasaweb.google.com/mdgeek/ArduinoProjects?authkey=Gv1sRgCNzjmc6Iwpm8IQ&#038;feat=embedwebsite">Arduino projects</a></td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.thecruftofmybrain.com/2010/03/15/breadboard-arduino-with-ftdi-cable-and-no-reset-button/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Checkpoint doesn&#8217;t support Proxy-Arp???</title>
		<link>http://www.thecruftofmybrain.com/2010/02/03/checkpoint-doesnt-support-proxy-arp/</link>
		<comments>http://www.thecruftofmybrain.com/2010/02/03/checkpoint-doesnt-support-proxy-arp/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 17:12:44 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Cruft]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.thecruftofmybrain.com/?p=484</guid>
		<description><![CDATA[Say whaaaatttt???????? Ok, so you have a Checkpoint firewall with a whole lotta NATed addresses. The router won&#8217;t find these NATed addresses though unless you go through a painful procedure to enable proxy-arp on the Checkpoint or you have to add static host entries to the router pointing to the interface IP on the Checkpoint. [...]]]></description>
			<content:encoded><![CDATA[<p>Say whaaaatttt????????  Ok, so you have a Checkpoint firewall with a whole lotta NATed addresses.  The router won&#8217;t find these NATed addresses though unless you go through a painful procedure to enable proxy-arp on the Checkpoint or you have to add static host entries to the router pointing to the interface IP on the Checkpoint.</p>
<p>What year is this because I seem be in the 90&#8242;s.</p>
<p>I know some people really love Checkpoint but every exposure I&#8217;ve had has left me scratching my head wondering if they could have done things any more atypically.</p>
<p>So yes, Checkpoint administrators, have no fear.  The router jockeys will fix your broken crap again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thecruftofmybrain.com/2010/02/03/checkpoint-doesnt-support-proxy-arp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HP TC1100 and the iPad</title>
		<link>http://www.thecruftofmybrain.com/2010/01/30/hp-tc1100-and-the-ipad/</link>
		<comments>http://www.thecruftofmybrain.com/2010/01/30/hp-tc1100-and-the-ipad/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 20:17:39 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Cruft]]></category>

		<guid isPermaLink="false">http://www.thecruftofmybrain.com/?p=482</guid>
		<description><![CDATA[I&#8217;ve had a TC1100 for a while now. I just decided to get a new battery since the old one wouldn&#8217;t hold any charge. So as I sit here using it with Win7 it occurs to we that this is pretty much the exact same size as the iPad. Sure its a little thicker but [...]]]></description>
			<content:encoded><![CDATA[<p> I&#8217;ve had a TC1100 for a while now. I just decided to get a new battery since the old one wouldn&#8217;t hold any charge.   So as I sit here using it with Win7 it occurs to we that this is pretty much the exact same size as the iPad.   Sure its a little thicker but the screen is the same. Even down to the bezel.   So whats different? For one thing this requires a pen.   This is a good thing and bad.   The handwriting recognition isn&#8217;t too bad but I do have to fix things sometimes.   Plus everything requires the pen. Sometimes it would be nice to just flick something with my finger.   So, despite being a really cool form factor I can see how the iPad would be alot easier to use.The lack of camera really annoys me but maybe I can live without that after all. maybe&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thecruftofmybrain.com/2010/01/30/hp-tc1100-and-the-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing a weird Cisco syntax error</title>
		<link>http://www.thecruftofmybrain.com/2010/01/24/fixing-a-weird-cisco-syntax-error/</link>
		<comments>http://www.thecruftofmybrain.com/2010/01/24/fixing-a-weird-cisco-syntax-error/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 07:56:30 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Cisco Routing and Switching]]></category>
		<category><![CDATA[Cruft]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.thecruftofmybrain.com/?p=478</guid>
		<description><![CDATA[Ran across this tonight. Someone had entered a prefix-list with the name &#8220;at&#038;amp ;t&#8221; instead of &#8220;at&#038;t&#8221; (wordpress didn&#8217;t like it either so I added the space between the p and the ; but they should really be together. Oddly enough, IOS wouldn&#8217;t allow the bad line to simply be deleted. The &#8220;;&#8221; had to [...]]]></description>
			<content:encoded><![CDATA[<p>Ran across this tonight.  Someone had entered a prefix-list with the name &#8220;at&#038;amp ;t&#8221; instead of &#8220;at&#038;t&#8221; (wordpress didn&#8217;t like it either so I added the space between the p and the ; but they should really be together.</p>
<p>Oddly enough, IOS wouldn&#8217;t allow the bad line to simply be deleted.  The &#8220;;&#8221; had to be removed so that the no command included &#8220;at&#038;ampt&#8221;</p>
<p>Probably some sort of a regex problem or an ascii escape character but it&#8217;s still kind of strange.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thecruftofmybrain.com/2010/01/24/fixing-a-weird-cisco-syntax-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco IPS doesn&#8217;t like ICMP redirects</title>
		<link>http://www.thecruftofmybrain.com/2010/01/05/cisco-ips-doesnt-like-icmp-redirects/</link>
		<comments>http://www.thecruftofmybrain.com/2010/01/05/cisco-ips-doesnt-like-icmp-redirects/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 16:19:02 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Cisco Routing and Switching]]></category>
		<category><![CDATA[Cruft]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.thecruftofmybrain.com/?p=476</guid>
		<description><![CDATA[I&#8217;ve been trying to figure out why a pair of Cisco IPS (AIP-SSM in this case) wouldn&#8217;t auto-update signature files or connect to the new Global Correlation feature. The management interfaces were located on a subnet that was between the firewall and the internal L3 switch. The internal LAN&#8217;s are on the other side of [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been trying to figure out why a pair of Cisco IPS (AIP-SSM in this case) wouldn&#8217;t auto-update signature files or connect to the new Global Correlation feature.  The management interfaces were located on a subnet that was between the firewall and the internal L3 switch.  The internal LAN&#8217;s are on the other side of the switch.</p>
<p>I&#8217;ve known for a long time that Cisco ASA&#8217;s don&#8217;t support sending ICMP redirects.  Because of this the IPS&#8217;s default gateway couldn&#8217;t be set to the FW interface.  If I did that they would never be redirected to reach the internal networks.  I&#8217;ve never had a problem with IOS doing ICMP redirects though, so the IPS&#8217;s have been using the switch VLAN interface as the default gateway.  The switch sends ICMP redirects when the IPS needs to get out to the internet and the traffic goes direct to the firewall.</p>
<p>Except it doesn&#8217;t.  I could swear it did at one time in the past.  Either my memory is faulty or an image update on the IPS broke it.  Now, it seems the IPS tosses ICMP redirects.  My guess is it worries about man in the middle attacks and and ICMP redirect is a possible sign of that.  So even though the switch is doing the correct thing the IPS disregards it.</p>
<p>Moved the IPS management interface to one of the internal LAN&#8217;s and all is happy now.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thecruftofmybrain.com/2010/01/05/cisco-ips-doesnt-like-icmp-redirects/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft X5 mouse and Snow Leopard</title>
		<link>http://www.thecruftofmybrain.com/2009/12/19/microsoft-x5-mouse-and-snow-leopard/</link>
		<comments>http://www.thecruftofmybrain.com/2009/12/19/microsoft-x5-mouse-and-snow-leopard/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 15:50:33 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Cruft]]></category>
		<category><![CDATA[Home and Hobbies]]></category>

		<guid isPermaLink="false">http://www.thecruftofmybrain.com/?p=473</guid>
		<description><![CDATA[Seems they don&#8217;t play well together. Sure, basic mouse functions work, including the scroll wheel. All of the extra buttons don&#8217;t seem to work at all though. I&#8217;ve been keeping an eye out for drivers and nothing yet. Also, I have yet to find anyone else crying about this. It seems strange to me that [...]]]></description>
			<content:encoded><![CDATA[<p>Seems they don&#8217;t play well together.  Sure, basic mouse functions work, including the scroll wheel.  All of the extra buttons don&#8217;t seem to work at all though.  I&#8217;ve been keeping an eye out for drivers and nothing yet.  Also, I have yet to find anyone else crying about this.  It seems strange to me that I&#8217;d be the only one with a nice Microsoft gaming mouse on OS X.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thecruftofmybrain.com/2009/12/19/microsoft-x5-mouse-and-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sometimes Cisco makes me laugh</title>
		<link>http://www.thecruftofmybrain.com/2009/12/04/sometimes-cisco-makes-me-laugh/</link>
		<comments>http://www.thecruftofmybrain.com/2009/12/04/sometimes-cisco-makes-me-laugh/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 18:20:37 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Cisco Routing and Switching]]></category>
		<category><![CDATA[Cruft]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.thecruftofmybrain.com/?p=470</guid>
		<description><![CDATA[&#8220;It works similar to access-list in that if you have any SNMP View on certain MIB trees, every other tree is denied inexplicably.&#8221;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cisco.com/en/US/tech/tk648/tk362/technologies_tech_note09186a0080094489.shtml#setupsnmp"><em>&#8220;It works similar to access-list in that if you have any SNMP View on certain MIB trees, every other tree is denied inexplicably.&#8221;</em></a></p>
<p> <img src='http://www.thecruftofmybrain.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.thecruftofmybrain.com/2009/12/04/sometimes-cisco-makes-me-laugh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
