SlackwareThis Forum is for the discussion of Slackware Linux.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Does anyone know where to find BIND, as in the DNS server in Slackware 9.1? I've looked in /etc and can't find any configuration file for it. When I enter 'man bind', I get a manpage for what looks like a C bind function, rather than the DNS daemon.
maybe try installing webmin, you can have a visual config of bind this way. Good for starters. IIRC, the config files are in /var/named. Not sure though
I'd like to configure my Slackware box to cache DNS information from my ISP's DNS servers. Which configuration files to I need to edit (and read the manpages on)?
I have some familiarity with DNS A records, MX records, etc..but obviously never setting it up on a Linux box.
Originally posted by BenChase Does anyone know where to find BIND, as in the DNS server in Slackware 9.1? I've looked in /etc and can't find any configuration file for it. When I enter 'man bind', I get a manpage for what looks like a C bind function, rather than the DNS daemon.
Am I missing something here?
Any help would be most appreciated.
Ben
Take a look at:
'man 8 ypbind'
the files it uses are listed in there.
Tarts
{edit}
Oppps, not what I thought it was. Ignore this post please.
All I can say after using Linux for the past two days now is:
Long Live the Command Line!
I started playing with computers right around the time of DOS 3.0. Remember the BBS days before the internet was in its present form? Remember gopher? LOL, man, those were the days....it was a lot of fun back then.
Are there still BBS's online anywhere that are useful and/or interesting?
I forgot how fun running a system from a command line was until I started playing with Slackware.
good. There might be good tutorial on bind on the internet. It is not really easy to configure zone for the first time, that is why I suggested webmin for the first time, then look at your files...
The default BIND installation includes the necessary config for a caching only nameserver. If you have a look at /etc/named.conf you'll see a section that looks like:
//
// a caching only nameserver config
//
zone "." IN {
type hint;
file "caching-example/named.ca";
};
The 'caching-example/named.ca' lives in /var/named/caching-example/named.ca.
Just fire up BIND:
# named
And point your clients to the local IP of the nameserver.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.