<?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>Continuation &#187; dns</title>
	<atom:link href="http://www.mobygeek.net/blog/tag/dns/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mobygeek.net/blog</link>
	<description>Mateusz Pawłowski aka Joe Seeder puts his dirt on the web</description>
	<lastBuildDate>Sat, 04 Sep 2010 22:52:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Google over IPv6 Revised</title>
		<link>http://www.mobygeek.net/blog/2009/04/02/google-over-ipv6-revised/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=google-over-ipv6-revised</link>
		<comments>http://www.mobygeek.net/blog/2009/04/02/google-over-ipv6-revised/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 20:42:44 +0000</pubDate>
		<dc:creator>seeder</dc:creator>
				<category><![CDATA[dns]]></category>
		<category><![CDATA[ipv6]]></category>

		<guid isPermaLink="false">http://www.mobygeek.net/blog/?p=406</guid>
		<description><![CDATA[Last time I wrote about experimenting with forcing www.google.com to run over IPv6. After some use I&#8217;ve notice that it&#8217;s breaking a lot of stuff, including YouTube and feeds from ArsTechnica. I&#8217;ve looked a bit dipper and it looks like only www.l.google.com has IPv6 working. To make things easier, I&#8217;ve dropped whole google.com and google.co.uk [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mobygeek.net/blog/2009/03/30/wwwgooglecom-over-ipv6/">Last time I wrote</a> about experimenting with forcing www.google.com to run over IPv6.</p>
<p>After some use I&#8217;ve notice that it&#8217;s breaking a lot of stuff, including YouTube and feeds from <a href="http://arstechnica.com">ArsTechnica</a>.</p>
<p>I&#8217;ve looked a bit dipper and it looks like only <em>www.l.google.com</em> has IPv6 working. To make things easier, I&#8217;ve dropped whole <em>google.com</em> and <em>google.co.uk </em>zones. Instead I&#8217;ve created a zone for <em>www.l.google.com</em> only.</p>
<pre>zone "www.l.google.com" IN {
type master;
file "pri/db.www.l.google.com";
notify no;
};</pre>
<p>Which contains :</p>
<pre>$TTL    86400
@       IN      SOA     ns1.yllq.net. seeder.mobygeek.net. (
2009040101      ; Serial
604800         ; Refresh
86400         ; Retry
2419200         ; Expire
86400 )       ; Negative Cache TTL
;
@    IN    NS    ns1.yllq.net.
@     IN AAAA 2001:4860:a003::68
*     IN AAAA 2001:4860:a003::68</pre>
<p>Just to make sure <img src='http://www.mobygeek.net/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>All what can, runs via IPv6 , everything else is going via IPv4.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobygeek.net/blog/2009/04/02/google-over-ipv6-revised/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>www.google.com over IPv6</title>
		<link>http://www.mobygeek.net/blog/2009/03/30/wwwgooglecom-over-ipv6/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=wwwgooglecom-over-ipv6</link>
		<comments>http://www.mobygeek.net/blog/2009/03/30/wwwgooglecom-over-ipv6/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 14:45:46 +0000</pubDate>
		<dc:creator>seeder</dc:creator>
				<category><![CDATA[post]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[ipv6]]></category>

		<guid isPermaLink="false">http://www.mobygeek.net/blog/?p=404</guid>
		<description><![CDATA[As some of the people know Google has an IPv6 only site but it&#8217;s kinda limited. They also claim that their www.google.com can be supported over IPv6 , it&#8217;s just that they have a scheme for ISPs to enroll to get AAAA records released to their DNS servers. Now when you are using your own [...]]]></description>
			<content:encoded><![CDATA[<p>As some of the people know Google has an <a href="http://ipv6.google.com" target="_blank">IPv6 only site</a> but it&#8217;s kinda limited. They also claim that their <a href="http://www.google.com">www.google.com</a> can be supported over IPv6 , it&#8217;s just that they have a scheme for ISPs to enroll to get AAAA records released to their DNS servers.</p>
<p>Now when you are using your own DNS server you are in disadvantage.</p>
<p>So to have <em>*.google.com</em> and <em>*.google.co.uk</em> I have created zones on my server using IPv6 address from <em>ipv6.google.com</em> . I have not included IPv4 address as well &#8230; I don&#8217;t need it, I&#8217;m full IPv6 here.</p>
<p>You may also consider adding zone for your language/national google domain like google.pl for polish.</p>
<p>Full article has configuration snippets used by me with my <a href="http://www.amazon.co.uk/gp/product/0596100574?ie=UTF8&amp;tag=mobygeek-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=0596100574">BIND</a> server . Click More&#8230;</p>
<p><span id="more-404"></span></p>
<p>First we need to create zone file, mine is <em>pri/db.google.com</em> and <em>pri/db.google.co.uk</em></p>
<p>this is what is inside :</p>
<pre>$TTL    86400
@       IN      SOA     ns1.yllq.net. seeder.mobygeek.net. (
2009032901      ; Serial
604800         ; Refresh
86400         ; Retry
2419200         ; Expire
86400 )       ; Negative Cache TTL
;
@       IN      NS      ns1.yllq.net.
@               10800   IN      MX      10 smtp1.google.com.
@               10800   IN      MX      10 smtp2.google.com.
@               10800   IN      MX      10 smtp3.google.com.
@               10800   IN      MX      10 smtp4.google.com.

*       IN AAAA 2001:4860:a003::68

smtp1.google.com.       3600    IN      A       209.85.237.25
smtp2.google.com.       3600    IN      A       64.233.165.25
smtp3.google.com.       3600    IN      A       64.233.183.25
smtp4.google.com.       3600    IN      A       72.14.221.25
ns1.google.com.         9600    IN      A       216.239.32.10
ns2.google.com.         9600    IN      A       216.239.34.10
ns3.google.com.         9600    IN      A       216.239.36.10
ns4.google.com.         9600    IN      A       216.239.38.10</pre>
<p>now we have to configure bind to include them , in my case I have my zones split into <em>internal</em> and <em>external</em> views so this lands in view accessible by internal systems only :</p>
<pre>zone "google.com" IN {
type master;
file "pri/db.google.com";
notify no;
};
zone "google.co.uk" IN {
type master;
file "pri/db.google.co.uk";
notify no;
};</pre>
<p>Now simple restart of the named ( or <strong>rndc reload</strong> ) should bring IPv6 *.google.com to you. It did for me.</p>
<p>You may want to add A record for IPv4 only clients, put that after the AAAA record :</p>
<pre>*        300    IN    A    74.125.45.100
*        300    IN    A    209.85.171.100
*        300    IN    A    74.125.67.100</pre>
<p>Enjoy google on IPv6, comments welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobygeek.net/blog/2009/03/30/wwwgooglecom-over-ipv6/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Some more</title>
		<link>http://www.mobygeek.net/blog/2009/01/18/some-more/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=some-more</link>
		<comments>http://www.mobygeek.net/blog/2009/01/18/some-more/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 00:15:09 +0000</pubDate>
		<dc:creator>seeder</dc:creator>
				<category><![CDATA[post]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[munin]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.mobygeek.net/blog/?p=373</guid>
		<description><![CDATA[All that festive time is gone. Finally. Craze at work is also stabilizing. Some more of Randolph Lalonde I&#8217;ve bought the FirstLight &#8211; Omnibus and as Spinwardfringe, it kept me glued to the screen. I really like your work, keep them coming! You can get Freeground on Amazon now. Some more of coding I am [...]]]></description>
			<content:encoded><![CDATA[<p>All that festive time is gone. Finally. Craze at work is also stabilizing.</p>
<p>Some more of <a href="http://swinwardfringe.blogspot.com">Randolph Lalonde</a></p>
<p>I&#8217;ve bought the FirstLight &#8211; Omnibus and as Spinwardfringe, it kept me glued to the screen. I really like your work, keep them coming! You can get <a href="http://www.amazon.co.uk/gp/product/1435740548?ie=UTF8&amp;tag=mobygeek-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=1435740548">Freeground on Amazon</a> now.</p>
<p>Some more of coding</p>
<p>I am currently writing brand new munin plugin for <a href="http://www.amazon.co.uk/gp/product/0596100574?ie=UTF8&amp;tag=mobygeek-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=0596100574">Bind</a> using stats output. I had some experience with plotting bind but none of the old ones works with my system so I am writing my own.</p>
<p>Some more cursing</p>
<p>Backup Exec and Windows server &#8211; why this shit doesn&#8217;t want to backup local resources ?!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobygeek.net/blog/2009/01/18/some-more/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Domains for administrators</title>
		<link>http://www.mobygeek.net/blog/2007/03/29/domains-for-administrators/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=domains-for-administrators</link>
		<comments>http://www.mobygeek.net/blog/2007/03/29/domains-for-administrators/#comments</comments>
		<pubDate>Thu, 29 Mar 2007 19:28:00 +0000</pubDate>
		<dc:creator>seeder</dc:creator>
				<category><![CDATA[post]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[hint]]></category>
		<category><![CDATA[idea]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.mobygeek.net/blog/2007/03/29/domains-for-administrators/</guid>
		<description><![CDATA[Lets say you have a dozen of servers. Lets say you connect to them very often to do some work. You have a very nice and descriptive domain for all your servers. Domain is organized nicely organized. Now you wish to connect to one of the servers. You are typing ssh mylovelyserver.somesubdomain.mylovelylongdomain.tld How much do [...]]]></description>
			<content:encoded><![CDATA[<p>Lets say you have a dozen of servers. Lets say you connect to them very often to do some work. You have a very nice and descriptive domain for all your servers. Domain is organized nicely organized.</p>
<p>Now you wish to connect to one of the servers. You are typing</p>
<pre>ssh mylovelyserver.somesubdomain.mylovelylongdomain.tld</pre>
<p>How much do you like to type such a long address ?</p>
<p><span id="more-280"></span></p>
<p>When you are working from one machine, you can set it up, so you can very easy access your servers.</p>
<p>You can use</p>
<pre>search somesubdomain.mylovelylongdomain.tld</pre>
<p>or</p>
<pre>domain somesubdomain.mylovelylongdomain.tld</pre>
<p>in your</p>
<pre>/etc/resolv.conf</pre>
<p>which make your servers accessible just by the host name. Then</p>
<pre>ssh mylovelyserver</pre>
<p>does the job.When you are feeling really lazy, you can setup some aliases in your shells rc file. Something like</p>
<pre>alias ssh-mylove = ssh mylovelyserver.somesubdomain.mylovelylongdomain.tld</pre>
<p>can save a few key strokes.That was easy when you were working from the same computer all the time. It would be even easy if you would work from a few computers, where you keep your configurations synchronized.</p>
<p>It is not so easy when you have to connect to your servers from different locations and systems which you are not in control of. You are back to typing all that lovely.nice.descriptive.domain.names.</p>
<p>That is why I am opting for a short, not descriptive, easy to type domain names. Which you will use for fast access. Typing</p>
<pre>ssh sharp.yllq.net</pre>
<p>is much quicker than</p>
<pre>ssh sharp.somesubdomain.mylovelylongdomain.tld</pre>
<p>Have you tried to dictate yours servers domain location over the phone ? I do it quite often, and believe me, even it the domains make sense for you, they might be confusing for people and longer domains are asking for more mistakes. it is easier to say s-h-a-r-p.y-l-l-q.n-e-t than s-h-a-r-p.s-o-m-e-s-u-b-d-o-m-a-i-n.m-y-l-o-v-e-l-y-l-o-n-g-d-o-m-a-i-n.tld just to make sure person at the other end of the phone got it right.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobygeek.net/blog/2007/03/29/domains-for-administrators/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
