<?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>Kommentare zu: How do I configure BIND9 for a .us domain?</title>
	<atom:link href="http://1299.de/2010/06/how-do-i-configure-bind9-for-a-us-domain/feed/" rel="self" type="application/rss+xml" />
	<link>http://1299.de/2010/06/how-do-i-configure-bind9-for-a-us-domain/</link>
	<description>Centos Neuigkeiten</description>
	<lastBuildDate>Mon, 10 Oct 2011 04:29:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Von: Tracy L</title>
		<link>http://1299.de/2010/06/how-do-i-configure-bind9-for-a-us-domain/comment-page-1/#comment-492</link>
		<dc:creator>Tracy L</dc:creator>
		<pubDate>Sat, 26 Jun 2010 23:20:33 +0000</pubDate>
		<guid isPermaLink="false">http://1299.de/2010/06/how-do-i-configure-bind9-for-a-us-domain/#comment-492</guid>
		<description>Bind 9 files normally look like this.
;
; Zone file for linux.bogus
;
; The full zone file
;
$TTL 3D
@       IN      SOA     ns.linux.bogus. hostmaster.linux.bogus. (
                        199802151       ; serial, todays date + todays serial #
                        8H              ; refresh, seconds
                        2H              ; retry, seconds
                        4W              ; expire, seconds
                        1D )            ; minimum, seconds
;
                NS      ns              ; Inet Address of name server
                MX      10 mail.linux.bogus     ; Primary Mail Exchanger
                MX      20 mail.friend.bogus.   ; Secondary Mail Exchanger
;
localhost       A       127.0.0.1
ns              A       192.168.196.2
mail            A       192.168.196.4
Here is a link to a simple setup.
http://www.langfeldt.net/DNS-HOWTO/BIND-9/DNS-HOWTO-5.html
and
http://www.debuntu.org/book/export/html/85
In the sample I posted the domain name would be linux.bogus
Your file doesn&#039;t have an entry at all for a .us name anywhere
You aren&#039;t the server for google so these are wrong
www IN CNAME @
googleffffffffffffffff IN CNAME google.com.
or use this example
http://www.debuntu.org/2006/08/05/85-how-to-setting-up-a-dns-zone-with-bind9
;
; Zone file for debuntu.foo
;
; The full zone file
;
$TTL 3D
@       IN      SOA     ns.debuntu.foo. chantra.debuntu.foo. (
                        200608081       ; serial, todays date + todays serial #
                        8H              ; refresh, seconds
                        2H              ; retry, seconds
                        4W              ; expire, seconds
                        1D )            ; minimum, seconds
;
                NS      ns              ; Inet Address of name server
                MX      10 mail         ; Primary Mail Exchanger
                MX      20 mail2        ; Secondary Mail Exchanger
;
ns              A       192.168.1.5
www             CNAME   www.debuntu.org.
ftp             CNAME   ns
gw              A       192.168.1.1
                TXT     &quot;Network gateway&quot;
mail            A       192.168.1.2
mail2           CNAME   otherbox
otherbox         A      192.168.1.3
                TXT     &quot;Otherbox&quot;
This file does the following
# the adress of the name server; 192.168.1.5,
#  an alias from www.debuntu.foo to www.debuntu.org,
(mind the dot &quot;.&quot; at the end of an external name),
# another alias from ftp.debuntu.foo to ns.debuntu.foo,
# An address for the local network gateway with a description
(this isn&#039;t needed unless you need a local gateway in the file)
But in either case the Domain name should have an A record for whatever the domain name is  yourdomain.us
or a cname or some referrence to it.
Add :  you can see good and bad results of your entries using
http://dnsstuff.com</description>
		<content:encoded><![CDATA[<p>Bind 9 files normally look like this.<br />
;<br />
; Zone file for linux.bogus<br />
;<br />
; The full zone file<br />
;<br />
$TTL 3D<br />
@       IN      SOA     ns.linux.bogus. hostmaster.linux.bogus. (<br />
                        199802151       ; serial, todays date + todays serial #<br />
                        8H              ; refresh, seconds<br />
                        2H              ; retry, seconds<br />
                        4W              ; expire, seconds<br />
                        1D )            ; minimum, seconds<br />
;<br />
                NS      ns              ; Inet Address of name server<br />
                MX      10 mail.linux.bogus     ; Primary Mail Exchanger<br />
                MX      20 mail.friend.bogus.   ; Secondary Mail Exchanger<br />
;<br />
localhost       A       127.0.0.1<br />
ns              A       192.168.196.2<br />
mail            A       192.168.196.4</p>
<p>Here is a link to a simple setup.<br />
<a href="http://www.langfeldt.net/DNS-HOWTO/BIND-9/DNS-HOWTO-5.html" rel="nofollow">http://www.langfeldt.net/DNS-HOWTO/BIND-9/DNS-HOWTO-5.html</a><br />
and<br />
<a href="http://www.debuntu.org/book/export/html/85" rel="nofollow">http://www.debuntu.org/book/export/html/85</a><br />
In the sample I posted the domain name would be linux.bogus</p>
<p>Your file doesn&#8217;t have an entry at all for a .us name anywhere<br />
You aren&#8217;t the server for google so these are wrong<br />
www IN CNAME @<br />
googleffffffffffffffff IN CNAME google.com.</p>
<p>or use this example<br />
<a href="http://www.debuntu.org/2006/08/05/85-how-to-setting-up-a-dns-zone-with-bind9" rel="nofollow">http://www.debuntu.org/2006/08/05/85-how-to-setting-up-a-dns-zone-with-bind9</a><br />
;<br />
; Zone file for debuntu.foo<br />
;<br />
; The full zone file<br />
;<br />
$TTL 3D<br />
@       IN      SOA     ns.debuntu.foo. chantra.debuntu.foo. (<br />
                        200608081       ; serial, todays date + todays serial #<br />
                        8H              ; refresh, seconds<br />
                        2H              ; retry, seconds<br />
                        4W              ; expire, seconds<br />
                        1D )            ; minimum, seconds<br />
;<br />
                NS      ns              ; Inet Address of name server<br />
                MX      10 mail         ; Primary Mail Exchanger<br />
                MX      20 mail2        ; Secondary Mail Exchanger<br />
;<br />
ns              A       192.168.1.5<br />
www             CNAME   <a href="http://www.debuntu.org" rel="nofollow">http://www.debuntu.org</a>.<br />
ftp             CNAME   ns<br />
gw              A       192.168.1.1<br />
                TXT     &#8220;Network gateway&#8221;<br />
mail            A       192.168.1.2<br />
mail2           CNAME   otherbox<br />
otherbox         A      192.168.1.3<br />
                TXT     &#8220;Otherbox&#8221;</p>
<p>This file does the following<br />
# the adress of the name server; 192.168.1.5,<br />
#  an alias from <a href="http://www.debuntu.foo" rel="nofollow">http://www.debuntu.foo</a> to <a href="http://www.debuntu.org" rel="nofollow">http://www.debuntu.org</a>,<br />
(mind the dot &#8220;.&#8221; at the end of an external name),<br />
# another alias from <a href="http://ftp.debuntu.foo" rel="nofollow">http://ftp.debuntu.foo</a> to ns.debuntu.foo,<br />
# An address for the local network gateway with a description<br />
(this isn&#8217;t needed unless you need a local gateway in the file)<br />
But in either case the Domain name should have an A record for whatever the domain name is  yourdomain.us<br />
or a cname or some referrence to it.</p>
<p>Add :  you can see good and bad results of your entries using<br />
<a href="http://dnsstuff.com" rel="nofollow">http://dnsstuff.com</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

