Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DNS with bind8 don't work carefully

Status
Not open for further replies.

foucaulo

ISP
Oct 20, 2004
13
CA
fisrt on all:
I have to build freebsd servers with many services for 2 domain name and i don't know exactly how dns servers proceed for say hey myserver.mydomain.org is on that ip.... i search on many doc sites but i don't found how to do that so i had configured my bind service like i think it will work.

on my domain site, they want my "ns1.my domain.org" for doing work the domain name so i find it embarrasing because if i want a domain name it's beacause i don't have one.....

my zone configuration file:
$TTL 3600

mydomain.org. IN SOA dns.mydomain.org. admin.mydomain.org. (
2004101405 ; Serial
3600 ; Refresh
900 ; Retry
3600000 ; Expire
3600 ) ; Minimum
IN NS dns.mydomain.org.
dns IN A 192.168.123.52
dns.mydomain.org. IN A 192.168.123.52
CNAME dns.mydomain.org.
ftp IN CNAME dns.mydomain.org.
and my named.conf file:
options {
directory "/etc/namedb";
pid-file "/var/run/named/pid";
recursion yes;
// forward only;
forwarders {
206.47.244.78;
207.236.176.26;
};
query-source address * port 53;
};
zone "." IN {
type hint;
file "named.root";
};
zone "0.0.127.IN-ADDR.ARPA" IN {
type master;
file "localhost.rev";
};
zone "mydomain.org" IN {
type master;
file "db.mydomain.org";
};
zone "123.168.192.IN-ADDR.ARPA" IN {
type master;
file "db.reverse";
};
 
foucaulo,

on my domain site, they want my "ns1.my domain.org" for doing work the domain name so i find it embarrasing because if i want a domain name it's beacause i don't have one.....

Are you saying that you haven't registered a domain name? If not, you can get domain name registration for anywhere between $8.00 and $30.00 per year.

You should have two different name servers with two distinct publicly routable IP addresses. If you don't have the infractructure that would permit this, you can get free or cheap DNS hosting from a number of companies.

Wishdiak
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top