<?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>DigitalOutbox &#187; dns</title>
	<atom:link href="http://www.digitaloutbox.com/tag/dns/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.digitaloutbox.com</link>
	<description>Weekly Podcast on Computing, Gadgets, Gaming with a British accent</description>
	<lastBuildDate>Sun, 05 Feb 2012 15:25:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Google Public DNS</title>
		<link>http://www.digitaloutbox.com/2009/12/07/google-public-dns/</link>
		<comments>http://www.digitaloutbox.com/2009/12/07/google-public-dns/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 22:18:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.digitaloutbox.com/?p=559</guid>
		<description><![CDATA[Google made a big splash last week when it announced Google Public DNS. By changing your DNS settings on your Mac, PC or router you can take advantage of Google&#8217;s DNS service and speed up your internet experience. That&#8217;s the theory but does it work? First off, what is DNS? DNS takes the meaningful domain [...]]]></description>
			<content:encoded><![CDATA[<p>Google made a big splash last week when it announced <a  href="http://code.google.com/speed/public-dns/">Google Public DNS</a>. By changing your DNS settings on your Mac, PC or router you can take advantage of Google&#8217;s DNS service and speed up your internet experience. That&#8217;s the theory but does it work? First off, what is DNS?</p>
<p>DNS takes the meaningful domain names that you type in your browser and turns that into a numerical identifier that computers understand. An analogy that is often made is DNS is the phone book for the internet. <a  href="http://en.wikipedia.org/wiki/Domain_Name_System">Wikipedia has more</a> if you want to delve deeper. With that out the way onto some testing. My current ISP is O2 but I actually use <a  href="http://www.opendns.com/">OpenDNS</a> for DNS lookups. They&#8217;ve proven to be faster than my previous two ISP&#8217;s but I was interested in comparing O2, OpenDNS and Google Public DNS. To do that I followed the <a  href="http://www.manu-j.com/blog/opendns-alternative-google-dns-rocks/403/">advice on TechSutra</a> and ran the following code:</p>
<p><code><br />
for i in "rememberthemilk.com" "digitaloutbox.com" "apple.com"  "google.com" "flickr.com" "bbc.co.uk" "iand.net" "twitter.com" "digitalspy.co.uk"<br />
do<br />
  for j in "87.194.0.51" "8.8.8.8" "208.67.222.222"<br />
  do<br />
    echo $j $i `dig @$j $i | grep Query | awk -F ":" '{print $2}'`<br />
  done<br />
done</code></p>
<p>This basically compared the lookup time for the three DNS providers for a variety of sites that I used daily. The results of the test can be seen in the table below:</p>
<table class="" id="no:s" border="1" bordercolor="#000000" cellpadding="3" cellspacing="0" width="100%">
<tbody>
<tr>
<td width="25%">
            Domain
          </td>
<td width="25%">
            O2
          </td>
<td width="25%">
            Google
          </td>
<td width="25%">
            OpenDNS
          </td>
</tr>
<tr>
<td width="25%">
            rememberthemilk.com
          </td>
<td width="25%">
            111ms
          </td>
<td width="25%">
            69ms
          </td>
<td width="25%">
            <b>29ms</b>
          </td>
</tr>
<tr>
<td width="25%">
            digitaloutbox.com
          </td>
<td width="25%">
            179ms
          </td>
<td width="25%">
            36ms
          </td>
<td width="25%">
            <b>27ms<br />
            </b>
          </td>
</tr>
<tr>
<td width="25%">
            apple.com
          </td>
<td width="25%">
            28ms
          </td>
<td width="25%">
            36ms
          </td>
<td width="25%">
            <b>27ms<br />
            </b>
          </td>
</tr>
<tr>
<td width="25%">
            google.com
          </td>
<td width="25%">
            <b>28ms</b>
          </td>
<td width="25%">
            55ms
          </td>
<td width="25%">
            29ms
          </td>
</tr>
<tr>
<td width="25%">
            flickr.com
          </td>
<td width="25%">
            28ms
          </td>
<td width="25%">
            34ms
          </td>
<td width="25%">
            <b>27ms<br />
            </b>
          </td>
</tr>
<tr>
<td width="25%">
            bbc.co.uk
          </td>
<td width="25%">
            28ms
          </td>
<td width="25%">
            35ms
          </td>
<td width="25%">
            <b>27ms<br />
            </b>
          </td>
</tr>
<tr>
<td width="25%">
            iand.net
          </td>
<td width="25%">
            160ms
          </td>
<td width="25%">
            38ms
          </td>
<td width="25%">
            <b>28ms</b>
          </td>
</tr>
<tr>
<td width="25%">
            twitter.com
          </td>
<td width="25%">
            <b>28ms</b>
          </td>
<td width="25%">
            35ms
          </td>
<td width="25%">
            30ms
          </td>
</tr>
<tr>
<td width="25%">
            digitalspy.co.uk
          </td>
<td width="25%">
            29ms
          </td>
<td width="25%">
            35ms
          </td>
<td width="25%">
            <b>28ms</b>
          </td>
</tr>
</tbody>
</table>
<p>As can be seen OpenDNS provided by far the best speeds out of the three I tested. I ran the test a few times and took average times to rule out any issues but the results were fairly consistent. Another method of testing is to try Namebench. This is a Google 20% app for Mac, PC and Linux. It compares a list of known DNS providers against your current DNS provider and provides a set of graphs and charts allowing you to benchmark any potential gains. It&#8217;s very slick.</p>
<p>My findings which seem to be backed up by others is that OpenDNS, for UK users, is a better option for speed than Google Public DNS. Do remember though that OpenDNS does redirect certain sites to protect from malware and domain misspellings, serving up adverts at the same time. In comparison Google offers no redirects at all which many people prefer. </p>
<p>The speed differences you do see may look small but remember that every little bit helps to improve your browsing experience and switching to a fast and reliable DNS provider can make a noticeable difference in your day to day usage. </p>
<p>So did you change your DNS after testing? We&#8217;d love to hear who you switched to and your findings &#8211; leave a comment below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaloutbox.com/2009/12/07/google-public-dns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenDNS</title>
		<link>http://www.digitaloutbox.com/2009/06/22/opendns/</link>
		<comments>http://www.digitaloutbox.com/2009/06/22/opendns/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 20:49:12 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Picks]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[opendns]]></category>

		<guid isPermaLink="false">http://www.digitaloutbox.com/?p=104</guid>
		<description><![CDATA[One site that I always recommend to friends and family is OpenDNS. With a few simple changes to your router or computer you can move from using your ISP&#8217;s DNS server to the service provided by OpenDNS which I&#8217;ve found to be fast and reliable, certainly more so than the ISP&#8217;s I&#8217;ve used recently. So [...]]]></description>
			<content:encoded><![CDATA[<p>One site that I always recommend to friends and family is <a  href="http://www.opendns.com/">OpenDNS</a>. With a few simple changes to your router or computer you can move from using your ISP&#8217;s DNS server to the service provided by OpenDNS which I&#8217;ve found to be fast and reliable, certainly more so than the ISP&#8217;s I&#8217;ve used recently. So what is DNS and what does OpenDNS do?</p>
<p>DNS requests are made every day from your home connection. E-mails, web surfing, online gaming etc all make use of DNS. DNS turns real addresses (http://www.apple.com) into an IP address for the physical computer you want to connect to. It makes it easier to surf and also means an address can stay fixed while the computer changes in the background (to a different IP address). Usually you make use of your own ISP’s DNS server which in general works OK but from time to time can have issues. Speed, lack of redundancy and update issues are ones I’ve seen over the years.</p>
<p>OpenDNS provides a free DNS service that promises to resolve addresses quickly and also a few unique services that I certainly don’t get from my current ISP. Firstly there are anti-phishing features in place so that you will be warned and the phishing site intercepted should you be lead to one. There’s also spelling correction where OpenDNS will look at the URL you’ve typed and if it detects a typo it will redirect you to the correct site. Finally if you look up a site that cannot be resolved OpenDNS will display a page with alternatives.</p>
<p><img src="http://www.digitaloutbox.com/wp-content/uploads/2009/06/ghhoogleopendns-300x171.jpg" alt="ghhoogleopendns" title="ghhoogleopendns" width="300" height="171" class="aligncenter" /></p>
<p>What&#8217;s great about OpenDNS is that it&#8217;s simple to set-up and has helpful configuration page&#8217;s for a wide range of <a  href="https://www.opendns.com/start/router/">routers</a> and <a  href="https://www.opendns.com/start/computer/">computers</a>. These take you through each step of logging in to the router, making the changes required and then checking that OpenDNS is set-up for your internet connection. There&#8217;s also other features like shortcut&#8217;s which you can take advantage off. Enter a shortcut name and the page that should be looked up if typed. For example, type blog to visit your blog without typing in the address, news to visit BBC News &#8211; the possibilities are endless. The nice thing about shortcuts is they apply across all your network so aren&#8217;t set up on a per machine basis.</p>
<p>The OpenNDS website also provides some stats about the number of requests, top domains and gives you the ability to block domains if you want finer control of the content that can be accessed on your network.</p>
<p>Although better performance can&#8217;t be guaranteed and in some cases will be very small I&#8217;ve always made a point of checking every few months to make sure that OpenDNS is a better option than my current ISP. With both O2 and Virgin Media, swapping to OpenDNS made quite a difference and in the case of my neighbours just over a week ago the difference to their OneTel connection was remarkable. Give it a try &#8211; nothing to lose and possibly a nice speed bump with enhanced security to gain.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaloutbox.com/2009/06/22/opendns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

