I am trying to setup a dns server with fedora 11.
what I have done:
1. /etc/init.d/named start
2. chkconfig --list named ---> return status ok, both 3 and 5 are on
3. "/etc/resolv.conf" as below // does it look okay?
nameserver 192.168.1.1 //my router,
nameserver 127.0.0.1 //this machine itself.
4. /etc/hosts
#127.0.0.1 localhost.localdomain localhost
#127.0.0.1 localhost.localdomain localhost
127.0.0.1 esxfedora
::1 localhost6.localdomain6 localhost6 /// i don't understand this line
192.168.1.10 basementXP //i will ping this hostname with my client dns unix box
Questions:
1. ok now I am on another unix box (opensolaris), i edit /etc/resolv.conf as
nameserver 192.168.1.1 //point to the router
nameserver 192.168.1.7 // the fedora box
when i "dig" , it doesn't return anything about 192.168.1.7 (the fedora name server)
////////// is anything missing??? //////////////////