On Sat, 2009-08-08 at 20:33 -0400, Braden McDaniel wrote: > listen-on port 53 { 127.0.0.1; }; > listen-on-v6 port 53 { ::1; }; It's only listening on the local loopback address, so you won't get anything when trying to access it through another interface. The "dig" tool is used for testing domain name stuff. Run it on the same box as the server, and try it on other boxes, too. dig name-to-look-up @server-to-query e.g. dig example.com @127.0.0.1 It'll use the servers listed in your resolv.conf file, instead, if you don't specify which server to query. Using localhost in the domain configurations (such as your NS records) is only going to give you problems if you want to use it with other machines on your LAN, or with other addresses. So many things expect it to only ever point to 127.0.0.1, and it's not going to work across different machines. > [root@front etc]# ssh front > ssh: Could not resolve hostname front: Name or service not known Using short hostnames will only work if your resolv.conf file lists a search domain name to add onto the end of short hostnames. -- [tim@localhost ~]$ uname -r 2.6.27.25-78.2.56.fc9.i686 Don't send private replies to my address, the mailbox is ignored. I read messages from the public lists. -- fedora-list mailing list fedora-list@xxxxxxxxxx To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines