<?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>Aun Raza</title>
	<atom:link href="http://aunraza.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://aunraza.com</link>
	<description>Simplify!</description>
	<lastBuildDate>Fri, 08 Jul 2011 21:54:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>IPv6</title>
		<link>http://aunraza.com/2011/02/12/ipv6/</link>
		<comments>http://aunraza.com/2011/02/12/ipv6/#comments</comments>
		<pubDate>Sat, 12 Feb 2011 18:50:28 +0000</pubDate>
		<dc:creator>Aun</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[ipv6]]></category>

		<guid isPermaLink="false">http://aunraza.com/?p=84</guid>
		<description><![CDATA[No more running. No more hiding. No more excuses. People who thought remembering IPv4 addresses was tough, welcome to IPv6 addressing! I won&#8217;t get into any mind-numbing details, but I will tell you this, get your DNS servers ready; DNS [...]]]></description>
			<content:encoded><![CDATA[<p>No more running. No more hiding. No more excuses. People who thought remembering IPv4 addresses was tough, welcome to IPv6 addressing! I won&#8217;t get into any mind-numbing details, but I will tell you this, get your DNS servers ready; <a title="Domain Name System" href="http://en.wikipedia.org/wiki/Domain_Name_System">DNS</a> will be your best friend in the IPv6 world. Although, addressing won&#8217;t be the only challenge at this time as I learnt over the last couple of days while trying to get IPv6 working on my home network.</p>
<p>I have Windows 7, Mac OS X (Snow Leopard) and Ubuntu 10.10, as IPv6 hosts. I have two public IPv4 addresses currently from my ISP, one for my Cisco ASA running 8.2(4), and one for my Cisco 871 router running 12.4(24)T4 advanced IP services. As my ISP doesn&#8217;t provide native IPv6 connectivity, I have to rely on <a title="Tunnel Broker" href="http://en.wikipedia.org/wiki/Tunnel_broker">tunnel brokers</a> to connect to the IPv6 Internetz. I have used both <a title="SixXS" href="http://www.sixxs.net">SixXS</a> and <a title="Hurricane Electric" href="http://he.net">Hurricane Electric</a>, without any issues. However, I can only use my IOS router to create the IPv6 over IPv4 tunnel, as the ASA doesn&#8217;t support it at the moment. So, with the tunnels up and my very own /48 space from HE, I should be all set in the world of IPv6 autoconfiguration &#8216;n all. All good, EXCEPT, the hosts on the inside. Doh! First of all, hats off to Ubuntu for coming up without a hitch &#8211; worked right off the bat. Windows 7, on the other hand, was quite the opposite. Manual configuration works perfectly, but one of the major selling points of IPv6 was autoconfiguration. For some reason, it just doesn&#8217;t work as well as I would expect it to, on Windows 7, unless I&#8217;m doing something wrong and Ubuntu corrects for idiots. I had to mess around with a bunch of IPv6 parameters through the netsh cli, but could only get v6 working partially, where it would work for around 10 minutes, after which the address would go into a &#8220;Deprecated&#8221; state, never to recover again. Modifying an IPv6 parameter through netsh would fix the problem but again, only temporarily. I even tried DHCPv6, which did help the addressing situation somewhat, by keeping the addresses in the &#8220;Preferred&#8221; state, but for whatever reason, Win7 would not pick up the default gateway. No default gateway, no Internetz. Eventually, after trying numerous options, I gave up and went back to static addressing. For me, IPv6 on Windows 7&#8230; Fail.</p>
<p>Mac OS X had a similar issue, but this time the host was behind the ASA. Autoconfiguration just doesn&#8217;t work; not even partially; and DHCPv6 is not an option on the version of code I&#8217;m running on the ASA. <a title="ICMPv6 Router Advertisement" href="http://www.tcpipguide.com/free/t_ICMPv6RouterAdvertisementandRouterSolicitationMess.htm">Router Advertisements</a> are received as evidenced by tcpdump, but no autoconfiguration takes place for the global address. And yes, I did change the sysctl accept_raadv variable to 1. Next step will be to test with IOS, to see if the problem is with the RAs being sent by the ASA, or if it&#8217;s OS X itself.</p>
<p>Conclusion: Ubuntu is the clear winner; two button clicks to enable IPv6; zoom zoom. I {heart} Ubuntu!</p>
]]></content:encoded>
			<wfw:commentRss>http://aunraza.com/2011/02/12/ipv6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSH Tip 1</title>
		<link>http://aunraza.com/2010/12/12/ssh-tip-1/</link>
		<comments>http://aunraza.com/2010/12/12/ssh-tip-1/#comments</comments>
		<pubDate>Sun, 12 Dec 2010 16:00:54 +0000</pubDate>
		<dc:creator>Aun</dc:creator>
				<category><![CDATA[Tech Tips]]></category>

		<guid isPermaLink="false">http://aunraza.com/?p=30</guid>
		<description><![CDATA[Ever get tired of entering the password every time to login to your Linux / Unix machine? Here&#8217;s a quick solution.
On your SSH Client, generate the private and public keys by issuing the following command:

my-ssh-client% ssh-keygen
Generating public/private rsa key pair.
Enter [...]]]></description>
			<content:encoded><![CDATA[<p>Ever get tired of entering the password every time to login to your Linux / Unix machine? Here&#8217;s a quick solution.</p>
<p>On your SSH Client, generate the private and public keys by issuing the following command:<br />
<code><br />
my-ssh-client% ssh-keygen<br />
Generating public/private rsa key pair.<br />
Enter passphrase (empty for no passphrase):<br />
Enter same passphrase again:<br />
Your identification has been saved in .ssh/id_dsa.<br />
Your public key has been saved in .ssh/id_dsa.pub.<br />
The key fingerprint is:<br />
f6:XX:aa:XX:84:XX:b3:...:aa:b1 user@host1.abc.com<br />
The key's randomart image is:<br />
+--[ RSA 2048]----+<br />
|                 |<br />
|                 |<br />
|                 |<br />
|                 |<br />
|   o    S        |<br />
|  = +. . .       |<br />
|   @Eo.   o      |<br />
|  o.B+.  o       |<br />
|  .+===+.        |<br />
+-----------------+</code><br />
The above generates two files:</p>
<ol>
<li>Private Key: By default this is stored as .ssh/id_dsa</li>
<li>Public Key: By default this is stored as .ssh/id_dsa.pub</li>
</ol>
<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-2457908055547815";
/* aunraza-inpostpage-200x200 */
google_ad_slot = "0441241115";
google_ad_width = 200;
google_ad_height = 200;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>     <script type="text/javascript"><!--
google_ad_client = "ca-pub-2457908055547815";
/* aunraza-inpostpage-200x200 */
google_ad_slot = "0441241115";
google_ad_width = 200;
google_ad_height = 200;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>The public key, for good reason, is the key that you can distribute. As such, you want to copy the contents of that file and paste it into the .ssh/authorized_keys file in the home directory of the server you are logging into.</p>
<p>Next time when you SSH to the server from your machine, you will be prompted for the <strong>passphrase</strong> that you entered when generating the keys on your client. Make sure you have your SSH client save this passphrase (&#8220;Add to Keychain&#8221; on Mac OS X); this will ensure you are not prompted for it when you try to login again.</p>
]]></content:encoded>
			<wfw:commentRss>http://aunraza.com/2010/12/12/ssh-tip-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

