<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Test and choose DNS server that performs best for you</title>
	<atom:link href="http://www.rarst.net/software/test-dns-performance/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rarst.net/software/test-dns-performance/</link>
	<description>cynical thoughts on software and web</description>
	<lastBuildDate>Wed, 08 Feb 2012 23:03:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Rarst</title>
		<link>http://www.rarst.net/software/test-dns-performance/#comment-49306</link>
		<dc:creator>Rarst</dc:creator>
		<pubDate>Fri, 08 Oct 2010 04:07:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.rarst.net/?p=591#comment-49306</guid>
		<description>&lt;a href=&quot;#comment-49292&quot;&gt;&lt;strong&gt;@velociraptor&lt;/strong&gt;&lt;/a&gt;

Thanks for update on this! I am (still) on router myself, but might be of use to others.</description>
		<content:encoded><![CDATA[<p><a href="#comment-49292"><strong>@velociraptor</strong></a></p>
<p>Thanks for update on this! I am (still) on router myself, but might be of use to others.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: velociraptor</title>
		<link>http://www.rarst.net/software/test-dns-performance/#comment-49292</link>
		<dc:creator>velociraptor</dc:creator>
		<pubDate>Fri, 08 Oct 2010 02:28:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.rarst.net/?p=591#comment-49292</guid>
		<description>Dns jumper v1.0.3 was beta , but new version v1.0.4 working on windows 7 well and not beta (first stable release) Please try v1.0.4
http://www.sordum.com/?p=4573</description>
		<content:encoded><![CDATA[<p>Dns jumper v1.0.3 was beta , but new version v1.0.4 working on windows 7 well and not beta (first stable release) Please try v1.0.4<br />
<a href="http://www.sordum.com/?p=4573">http://www.sordum.com/?p=4573</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rarst</title>
		<link>http://www.rarst.net/software/test-dns-performance/#comment-21243</link>
		<dc:creator>Rarst</dc:creator>
		<pubDate>Fri, 04 Jun 2010 06:34:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.rarst.net/?p=591#comment-21243</guid>
		<description>@Nime

Yay, command line scripts ftw. :) Saved to try later, thanks for sharing!</description>
		<content:encoded><![CDATA[<p>@Nime</p>
<p>Yay, command line scripts ftw. :) Saved to try later, thanks for sharing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nime</title>
		<link>http://www.rarst.net/software/test-dns-performance/#comment-21201</link>
		<dc:creator>Nime</dc:creator>
		<pubDate>Thu, 03 Jun 2010 22:14:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.rarst.net/?p=591#comment-21201</guid>
		<description>@echo off

REM //NSLOOKUP batch check utility v1.0
REM //Author: Emin Akbulut eminakbulut@gmail.com 
REM //Date: 03 June 2010
REM //This code is freeware
REM //Usage: Modify the DNS and host lists below, at line 23, then simply run the batch file.

SET timeout=5

IF &quot;%1&quot; == &quot;/check&quot; GOTO loopit

:start
cls
if exist %0.log del %0.log &gt; nul %2&gt;nul
if exist %0.bat.log del %0.bat.log &gt; nul %2&gt;nul
echo ---------------------------------------
echo Starting... %date% %time:~0,8%
echo ---------------------------------------
echo Report created on %date% %time:~0,8% &gt;&gt; %0.log
REM %%A for DNS Servers list, %%B for target hosts to be checked
FOR %%A IN (195.175.39.39 195.175.39.40 8.8.8.8) DO FOR %%B IN (google.com yourdomain.com mail.yourdomain.com) DO CALL %0 /check %%A %%B

echo --------------------------------------- &gt;&gt; %0.log
echo ---------------------------------------
echo Done. Press any key to examine the log file... 
Pause &gt; nul
start notepad &quot;%~0.log&quot;
GOTO done

:loopit
echo --------------------------------------- &gt;&gt; %0.log
echo nslookup %3 %2
echo nslookup %3 %2	 &gt;&gt; %0.log
nslookup -timeout=%timeout% %3 %2	 &gt;&gt; %0.log 2&gt;nul

:done</description>
		<content:encoded><![CDATA[<p>@echo off</p>
<p>REM //NSLOOKUP batch check utility v1.0<br />
REM //Author: Emin Akbulut <a href="mailto:eminakbulut@gmail.com">eminakbulut@gmail.com</a><br />
REM //Date: 03 June 2010<br />
REM //This code is freeware<br />
REM //Usage: Modify the DNS and host lists below, at line 23, then simply run the batch file.</p>
<p>SET timeout=5</p>
<p>IF &#8220;%1&#8243; == &#8220;/check&#8221; GOTO loopit</p>
<p>:start<br />
cls<br />
if exist %0.log del %0.log &gt; nul %2&gt;nul<br />
if exist %0.bat.log del %0.bat.log &gt; nul %2&gt;nul<br />
echo &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
echo Starting&#8230; %date% %time:~0,8%<br />
echo &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
echo Report created on %date% %time:~0,8% &gt;&gt; %0.log<br />
REM %%A for DNS Servers list, %%B for target hosts to be checked<br />
FOR %%A IN (195.175.39.39 195.175.39.40 8.8.8.8) DO FOR %%B IN (google.com yourdomain.com mail.yourdomain.com) DO CALL %0 /check %%A %%B</p>
<p>echo &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &gt;&gt; %0.log<br />
echo &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
echo Done. Press any key to examine the log file&#8230;<br />
Pause &gt; nul<br />
start notepad &#8220;%~0.log&#8221;<br />
GOTO done</p>
<p>:loopit<br />
echo &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &gt;&gt; %0.log<br />
echo nslookup %3 %2<br />
echo nslookup %3 %2	 &gt;&gt; %0.log<br />
nslookup -timeout=%timeout% %3 %2	 &gt;&gt; %0.log 2&gt;nul</p>
<p>:done</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Find The Fastest DNS Server &#38; Change Easily</title>
		<link>http://www.rarst.net/software/test-dns-performance/#comment-18358</link>
		<dc:creator>Find The Fastest DNS Server &#38; Change Easily</dc:creator>
		<pubDate>Fri, 16 Apr 2010 04:19:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.rarst.net/?p=591#comment-18358</guid>
		<description>[...] claims to speed up your internet experience and improve security—so which to choose?Rarst suggested two tools to test which DNS server has the best performance for you, namely namebench and DNS [...]</description>
		<content:encoded><![CDATA[<p>[...] claims to speed up your internet experience and improve security—so which to choose?Rarst suggested two tools to test which DNS server has the best performance for you, namely namebench and DNS [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rarst</title>
		<link>http://www.rarst.net/software/test-dns-performance/#comment-18084</link>
		<dc:creator>Rarst</dc:creator>
		<pubDate>Mon, 12 Apr 2010 10:53:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.rarst.net/?p=591#comment-18084</guid>
		<description>@Vincent

Good we have Google for that. :)</description>
		<content:encoded><![CDATA[<p>@Vincent</p>
<p>Good we have Google for that. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vincent Chow</title>
		<link>http://www.rarst.net/software/test-dns-performance/#comment-18083</link>
		<dc:creator>Vincent Chow</dc:creator>
		<pubDate>Mon, 12 Apr 2010 10:46:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.rarst.net/?p=591#comment-18083</guid>
		<description>I&#039;m coming back to this article several times via Google (keyword: rarst check dns), all just because I couldn&#039;t locate it on my computer and I don&#039;t remember its name. Damn.</description>
		<content:encoded><![CDATA[<p>I&#8217;m coming back to this article several times via Google (keyword: rarst check dns), all just because I couldn&#8217;t locate it on my computer and I don&#8217;t remember its name. Damn.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rarst</title>
		<link>http://www.rarst.net/software/test-dns-performance/#comment-15174</link>
		<dc:creator>Rarst</dc:creator>
		<pubDate>Fri, 12 Feb 2010 21:01:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.rarst.net/?p=591#comment-15174</guid>
		<description>@Golden Code

Good point! :) Can indeed come handy if DNS suddenly bites the dust but connection itself works. On other hand there are two fields for DNS for exactly this reason - so you can input different servers from the start.

PS Google just likes to show off, aren&#039;t they :)</description>
		<content:encoded><![CDATA[<p>@Golden Code</p>
<p>Good point! :) Can indeed come handy if DNS suddenly bites the dust but connection itself works. On other hand there are two fields for DNS for exactly this reason &#8211; so you can input different servers from the start.</p>
<p>PS Google just likes to show off, aren&#8217;t they :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Golden Code</title>
		<link>http://www.rarst.net/software/test-dns-performance/#comment-15165</link>
		<dc:creator>Golden Code</dc:creator>
		<pubDate>Fri, 12 Feb 2010 17:16:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.rarst.net/?p=591#comment-15165</guid>
		<description>Hi! Google has very easy to remember DNS IP addresses:
8.8.8.8 and 8.8.4.4. It&#039;s very helpful when your DNS suddenly stops working:)</description>
		<content:encoded><![CDATA[<p>Hi! Google has very easy to remember DNS IP addresses:<br />
8.8.8.8 and 8.8.4.4. It&#8217;s very helpful when your DNS suddenly stops working:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rarst</title>
		<link>http://www.rarst.net/software/test-dns-performance/#comment-15159</link>
		<dc:creator>Rarst</dc:creator>
		<pubDate>Fri, 12 Feb 2010 15:31:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.rarst.net/?p=591#comment-15159</guid>
		<description>@Saurabh

Guess most of these are US-based... Even if they have servers spread it&#039;s not always easy to determine precise location and best server fit for specific location.</description>
		<content:encoded><![CDATA[<p>@Saurabh</p>
<p>Guess most of these are US-based&#8230; Even if they have servers spread it&#8217;s not always easy to determine precise location and best server fit for specific location.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

