<?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: Set up Caching Nameserver on Windows using BIND</title>
	<atom:link href="http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/</link>
	<description>Technology, Games, Blogging ... Whatever</description>
	<lastBuildDate>Sun, 08 Nov 2009 02:30:48 +0700</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: BrollyLSSJ</title>
		<link>http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/comment-page-1/#comment-366097</link>
		<dc:creator>BrollyLSSJ</dc:creator>
		<pubDate>Wed, 05 Aug 2009 21:42:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.reaper-x.com/?p=743#comment-366097</guid>
		<description>Thank you for this great Tutorial. It works like a charm. the first &quot;dig.exe Reaper-x.com&quot; took about 2000 Seconds, but the second try took 64ms.</description>
		<content:encoded><![CDATA[<p>Thank you for this great Tutorial. It works like a charm. the first &#8220;dig.exe Reaper-x.com&#8221; took about 2000 Seconds, but the second try took 64ms.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryce</title>
		<link>http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/comment-page-1/#comment-304965</link>
		<dc:creator>Bryce</dc:creator>
		<pubDate>Tue, 12 May 2009 13:05:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.reaper-x.com/?p=743#comment-304965</guid>
		<description>This is definitely one of the best articles on getting Bind up and running on windows.

One question I have is this:

How can one set up DNS on one&#039;s development computer such that

 - multiple Apache web server instances can be accomodated, each listening on different ports
 - custome TLD&#039;s can be created for use within the the computer (ex. &quot;.foo&quot;)

For example, I am running Bind 9 on my MS Windows XP Pro development laptop.  I have two instances of Apache running, an instance of Tomcat, and SSL on port 443 which maps to one of the apache doc roots.

CURRENT SETUP
=============

	IP ADDRESS	SERVER INSTANCE		DOMAIN NAME		DOCUMENT ROOT FOLDER
	----------	---------------		-----------		--------------------
	127.0.0.1:80	Apache 2.0.0.59		http://bluenote/	c:\http\www1
	
	127.0.0.1:8888	Apache 2.2.11		http://bluenote:8888/	c:\http\www2
	127.0.0.1:443	Apache 2.2.11 (SSL)	https://bluenote/	c:\http\www2

	127.0.0.1:8080	Apache Tomcat		http://bluenote:8080/	c:\http\www3


Right now, I have to browse each site by using the &quot;bluentoe&quot; domain and appending a port number.  I&#039;d like to create different domains and sub domains mapped to each ip/port to facilitate development, especially with SSL certificates.  I cannot simply modify the &quot;hosts&quot; file because the hosts file does not support IP addresses with a port number appended to them.  For example, I CANNOT do the following with the windows hosts file:

	127.0.0.1	bluenote.foo
	127.0.0.1:8888	secure.bluenote.foo 	# (http) only	
	127.0.0.1:443	secure.bluenote.foo	# (https)
	127.0.0.1:8080	otherdomain.foo


You can probably see what I&#039;m trying to do.  I want to create a made-up top level domain for use only on my development computer.  Specifically, I want to do some testing with SSL certificates.  Different internal domain names need to map to different instances of multiple webservers which listen on different ports.

Anyone have any ideas?  I am at my wits end trying to figure this out so any help is GREATLY appreciated!

Thanks in advance,

Bryce</description>
		<content:encoded><![CDATA[<p>This is definitely one of the best articles on getting Bind up and running on windows.</p>
<p>One question I have is this:</p>
<p>How can one set up DNS on one&#8217;s development computer such that</p>
<p> &#8211; multiple Apache web server instances can be accomodated, each listening on different ports<br />
 &#8211; custome TLD&#8217;s can be created for use within the the computer (ex. &#8220;.foo&#8221;)</p>
<p>For example, I am running Bind 9 on my MS Windows XP Pro development laptop.  I have two instances of Apache running, an instance of Tomcat, and SSL on port 443 which maps to one of the apache doc roots.</p>
<p>CURRENT SETUP<br />
=============</p>
<p>	IP ADDRESS	SERVER INSTANCE		DOMAIN NAME		DOCUMENT ROOT FOLDER<br />
	&#8212;&#8212;&#8212;-	&#8212;&#8212;&#8212;&#8212;&#8212;		&#8212;&#8212;&#8212;&#8211;		&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
	127.0.0.1:80	Apache 2.0.0.59		<a href="http://bluenote/" rel="nofollow">http://bluenote/</a>	c:\http\www1</p>
<p>	127.0.0.1:8888	Apache 2.2.11		<a href="http://bluenote:8888/" rel="nofollow">http://bluenote:8888/</a>	c:\http\www2<br />
	127.0.0.1:443	Apache 2.2.11 (SSL)	<a href="https://bluenote/" rel="nofollow">https://bluenote/</a>	c:\http\www2</p>
<p>	127.0.0.1:8080	Apache Tomcat		<a href="http://bluenote:8080/" rel="nofollow">http://bluenote:8080/</a>	c:\http\www3</p>
<p>Right now, I have to browse each site by using the &#8220;bluentoe&#8221; domain and appending a port number.  I&#8217;d like to create different domains and sub domains mapped to each ip/port to facilitate development, especially with SSL certificates.  I cannot simply modify the &#8220;hosts&#8221; file because the hosts file does not support IP addresses with a port number appended to them.  For example, I CANNOT do the following with the windows hosts file:</p>
<p>	127.0.0.1	bluenote.foo<br />
	127.0.0.1:8888	secure.bluenote.foo 	# (http) only<br />
	127.0.0.1:443	secure.bluenote.foo	# (https)<br />
	127.0.0.1:8080	otherdomain.foo</p>
<p>You can probably see what I&#8217;m trying to do.  I want to create a made-up top level domain for use only on my development computer.  Specifically, I want to do some testing with SSL certificates.  Different internal domain names need to map to different instances of multiple webservers which listen on different ports.</p>
<p>Anyone have any ideas?  I am at my wits end trying to figure this out so any help is GREATLY appreciated!</p>
<p>Thanks in advance,</p>
<p>Bryce</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Terry Mohn</title>
		<link>http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/comment-page-1/#comment-262622</link>
		<dc:creator>Terry Mohn</dc:creator>
		<pubDate>Fri, 13 Feb 2009 18:12:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.reaper-x.com/?p=743#comment-262622</guid>
		<description>Using windows 2000 pro. and get error when named
attempts to start.  error= &quot;.\socket.:633: INSIST(err==0)failed, followed by error= exiting (due to assertion failure)

I found another post with the same problem but no solutions suggested.  Any help appreciated.

P.S.  I downloaded version 9.6 from isc site.</description>
		<content:encoded><![CDATA[<p>Using windows 2000 pro. and get error when named<br />
attempts to start.  error= &#8220;.\socket.:633: INSIST(err==0)failed, followed by error= exiting (due to assertion failure)</p>
<p>I found another post with the same problem but no solutions suggested.  Any help appreciated.</p>
<p>P.S.  I downloaded version 9.6 from isc site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reaper-X</title>
		<link>http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/comment-page-1/#comment-229188</link>
		<dc:creator>Reaper-X</dc:creator>
		<pubDate>Fri, 28 Nov 2008 02:46:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.reaper-x.com/?p=743#comment-229188</guid>
		<description>can you try running the dig tools supplied with BIND? or are you sure that bind already running in the background?

i just tried nslookup and dig, and it works fine

nslookup www.yahoo.com

Server:  localhost
Address:  127.0.0.1

Non-authoritative answer:
Name:    www-real.wa1.b.yahoo.com
Address:  209.131.36.158
Aliases:  www.yahoo.com, www.wa1.b.yahoo.com

dig www.yahoo.com

; &lt;&lt;&gt;&gt; DiG 9.5.0-P1 &lt;&lt;&gt;&gt; www.yahoo.com
;; global options:  printcmd
;; Got answer:
;; -&gt;&gt;HEADER&lt;&lt;- opcode: QUERY, status: NOERROR, id: 1303
;; flags: qr rd ra; QUERY: 1, ANSWER: 3, AUTHORITY: 2, ADDITIONAL: 2

;; QUESTION SECTION:
;www.yahoo.com.                 IN      A

;; ANSWER SECTION:
www.yahoo.com.          273     IN      CNAME   www.wa1.b.yahoo.com.
www.wa1.b.yahoo.com.    38      IN      CNAME   www-real.wa1.b.yahoo.com.
www-real.wa1.b.yahoo.com. 37    IN      A       209.131.36.158

;; AUTHORITY SECTION:
wa1.b.yahoo.com.        97      IN      NS      yf2.yahoo.com.
wa1.b.yahoo.com.        97      IN      NS      yf1.yahoo.com.

;; ADDITIONAL SECTION:
yf1.yahoo.com.          1274    IN      A       68.142.254.15
yf2.yahoo.com.          1757    IN      A       68.180.130.15

;; Query time: 15 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Fri Nov 28 09:45:16 2008
;; MSG SIZE  rcvd: 162</description>
		<content:encoded><![CDATA[<p>can you try running the dig tools supplied with BIND? or are you sure that bind already running in the background?</p>
<p>i just tried nslookup and dig, and it works fine</p>
<p>nslookup <a href="http://www.yahoo.com" rel="nofollow">http://www.yahoo.com</a></p>
<p>Server:  localhost<br />
Address:  127.0.0.1</p>
<p>Non-authoritative answer:<br />
Name:    www-real.wa1.b.yahoo.com<br />
Address:  209.131.36.158<br />
Aliases:  <a href="http://www.yahoo.com" rel="nofollow">http://www.yahoo.com</a>, <a href="http://www.wa1.b.yahoo.com" rel="nofollow">http://www.wa1.b.yahoo.com</a></p>
<p>dig <a href="http://www.yahoo.com" rel="nofollow">http://www.yahoo.com</a></p>
<p>; < <>> DiG 9.5.0-P1 < <>> <a href="http://www.yahoo.com" rel="nofollow">http://www.yahoo.com</a><br />
;; global options:  printcmd<br />
;; Got answer:<br />
;; ->>HEADER< <- opcode: QUERY, status: NOERROR, id: 1303<br />
;; flags: qr rd ra; QUERY: 1, ANSWER: 3, AUTHORITY: 2, ADDITIONAL: 2</p>
<p>;; QUESTION SECTION:<br />
;www.yahoo.com.                 IN      A</p>
<p>;; ANSWER SECTION:<br />
<a href="http://www.yahoo.com" rel="nofollow">http://www.yahoo.com.          273     IN      CNAME   <a href="http://www.wa1.b.yahoo.com" rel="nofollow">http://www.wa1.b.yahoo.com</a>.<br />
<a href="http://www.wa1.b.yahoo.com" rel="nofollow">http://www.wa1.b.yahoo.com</a>.    38      IN      CNAME   www-real.wa1.b.yahoo.com.<br />
www-real.wa1.b.yahoo.com. 37    IN      A       209.131.36.158</p>
<p>;; AUTHORITY SECTION:<br />
wa1.b.yahoo.com.        97      IN      NS      yf2.yahoo.com.<br />
wa1.b.yahoo.com.        97      IN      NS      yf1.yahoo.com.</p>
<p>;; ADDITIONAL SECTION:<br />
yf1.yahoo.com.          1274    IN      A       68.142.254.15<br />
yf2.yahoo.com.          1757    IN      A       68.180.130.15</p>
<p>;; Query time: 15 msec<br />
;; SERVER: 127.0.0.1#53(127.0.0.1)<br />
;; WHEN: Fri Nov 28 09:45:16 2008<br />
;; MSG SIZE  rcvd: 162</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Teddie Ruxpin</title>
		<link>http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/comment-page-1/#comment-228970</link>
		<dc:creator>Teddie Ruxpin</dc:creator>
		<pubDate>Thu, 27 Nov 2008 12:00:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.reaper-x.com/?p=743#comment-228970</guid>
		<description>I followed your instructions but when I do an nslookup I get the following errors:

C:\&gt;nslookup
*** Can&#039;t find server name for address 127.0.0.1: Server failed
Default Server:  resolver1.opendns.com
Address:  208.67.222.222

&gt;

Any ideas how to fix this?</description>
		<content:encoded><![CDATA[<p>I followed your instructions but when I do an nslookup I get the following errors:</p>
<p>C:\&gt;nslookup<br />
*** Can&#8217;t find server name for address 127.0.0.1: Server failed<br />
Default Server:  resolver1.opendns.com<br />
Address:  208.67.222.222</p>
<p>&gt;</p>
<p>Any ideas how to fix this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reaper-X</title>
		<link>http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/comment-page-1/#comment-198442</link>
		<dc:creator>Reaper-X</dc:creator>
		<pubDate>Fri, 10 Oct 2008 01:03:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.reaper-x.com/?p=743#comment-198442</guid>
		<description>Gamach, i just search the net for your problem and &lt;a href=&quot;http://windowsitpro.com/article/articleid/14376/how-can-i-resolve-the-error-an-error-1069---the-service-did-not-start-due-to-a-logon-failure-for-sql-server.html&quot; rel=&quot;nofollow&quot;&gt;found this page&lt;/a&gt;

Based from that page, i&#039;m guessing that you&#039;re experiencing the same problem like on that page too (although it&#039;s for sql server)

So try to check the ISC Bind service logon to use the username created specifically for Bind (the installation process ask you this) and don&#039;t forget to use the same password when creating the BIND service</description>
		<content:encoded><![CDATA[<p>Gamach, i just search the net for your problem and <a href="http://windowsitpro.com/article/articleid/14376/how-can-i-resolve-the-error-an-error-1069---the-service-did-not-start-due-to-a-logon-failure-for-sql-server.html" rel="nofollow">found this page</a></p>
<p>Based from that page, i&#8217;m guessing that you&#8217;re experiencing the same problem like on that page too (although it&#8217;s for sql server)</p>
<p>So try to check the ISC Bind service logon to use the username created specifically for Bind (the installation process ask you this) and don&#8217;t forget to use the same password when creating the BIND service</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gamach</title>
		<link>http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/comment-page-1/#comment-178652</link>
		<dc:creator>Gamach</dc:creator>
		<pubDate>Tue, 16 Sep 2008 07:40:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.reaper-x.com/?p=743#comment-178652</guid>
		<description>Hi Reaper,
i got a problem at step 9; trying to start the isp bind service ... when i click START a error 1069 pop&#039;up &quot;the fail of openning a session fail the start of this service&quot; ... ty to debug me :P</description>
		<content:encoded><![CDATA[<p>Hi Reaper,<br />
i got a problem at step 9; trying to start the isp bind service &#8230; when i click START a error 1069 pop&#8217;up &#8220;the fail of openning a session fail the start of this service&#8221; &#8230; ty to debug me :P</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Billy</title>
		<link>http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/comment-page-1/#comment-174368</link>
		<dc:creator>Billy</dc:creator>
		<pubDate>Fri, 05 Sep 2008 10:41:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.reaper-x.com/?p=743#comment-174368</guid>
		<description>Reaper-X 

Thank you. I am facing the problem to host the  webpage with my own computer. I would try to set it up according to your great guidelines. 

Try my best now.</description>
		<content:encoded><![CDATA[<p>Reaper-X </p>
<p>Thank you. I am facing the problem to host the  webpage with my own computer. I would try to set it up according to your great guidelines. </p>
<p>Try my best now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reaper-X</title>
		<link>http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/comment-page-1/#comment-145732</link>
		<dc:creator>Reaper-X</dc:creator>
		<pubDate>Wed, 16 Jul 2008 03:01:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.reaper-x.com/?p=743#comment-145732</guid>
		<description>Your welcome Jack glad you like it :)</description>
		<content:encoded><![CDATA[<p>Your welcome Jack glad you like it :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack Long</title>
		<link>http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/comment-page-1/#comment-145439</link>
		<dc:creator>Jack Long</dc:creator>
		<pubDate>Tue, 15 Jul 2008 14:44:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.reaper-x.com/?p=743#comment-145439</guid>
		<description>Hello,

Thank you so much for this tutorial.. I was searching for a way to make a caching server on windows for a long time.</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>Thank you so much for this tutorial.. I was searching for a way to make a caching server on windows for a long time.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
