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";
};
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";
};