Firewall settings ?

Michael


Shawn wrote:
I'm trying to get BIND set up to provide DNS services to my internal network. Editing the HOSTS file on every computer everytime I make a change is getting tiresome.. :) So, I put together my config, and the services start without any problems. I can even use dig or nslookup on the BIND server and names get resolved. But, once I change /etc/resolv.conf on another workstation to point to the DNS server, I can't seem to get name resolution (though I do have network connectivity to the box). Even if I use nslookup and set the server to the DNS server, things don't work. So.... I suspect I've messed up my zone file, which I've modeled on the DNS HOWTO. Any suggestions - Here's the contents of my zone file:

$TTL 1D
@       IN      SOA     www.open2space.com.  admin.open2space.com.  (
                                      2005042101 ; Serial
                                      2H      ; Refresh
                                      2H      ; Retry
                                      1H     ; Expire
                                      1D )    ; Minimum

                        NS      localhost

open2space.com.         A       192.168.0.5
www.open2space.com.     A       192.168.0.5
localhost               A       127.0.0.1
ns1                     A       192.168.0.5
ns2                     A       127.0.0.1

sage                    A       192.168.0.20
mail                    A       192.168.0.12


I did have CNAMEs setup but found a references indicating that you have to be careful what you are creating aliases too, and in some specific cases you must point at an A record. So I switched everything to an A record. I've also tried to emulate bits and peices from various config samples I could fine, with no luck....


Also, I have the following snippets in my named.conf file (I know someone would mention the Listen-on setting....):

<snip/>
        listen-on-v6 { none; };
        listen-on {
                192.168.0.5;
                127.0.0.1;
        };
<snip/>
        zone "open2space.com" {
                type master;
                file "pri/open2space.com";
        };

Thanks for any tips...

Shawn

_______________________________________________
clug-talk mailing list
[email protected]
http://clug.ca/mailman/listinfo/clug-talk_clug.ca
Mailing List Guidelines (http://clug.ca/ml_guidelines.php)
**Please remove these lines when replying

_______________________________________________ clug-talk mailing list [email protected] http://clug.ca/mailman/listinfo/clug-talk_clug.ca Mailing List Guidelines (http://clug.ca/ml_guidelines.php) **Please remove these lines when replying

Reply via email to