HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- how to set a root DNS server in BIND version 9.X?
Operating System - Linux
1827855
Members
1666
Online
109969
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2002 05:34 AM
08-07-2002 05:34 AM
how to set a root DNS server in BIND version 9.X?
Hi,
i do not know how to set the root DNS server, which will redirect the query to the (world wide) root DNS server once the query out of the range what local server maintain. before, i can set it in the /var/named/root.cache, however, the file seems disappear.
my version is RH7.3
thanks
Frederick van targero
i do not know how to set the root DNS server, which will redirect the query to the (world wide) root DNS server once the query out of the range what local server maintain. before, i can set it in the /var/named/root.cache, however, the file seems disappear.
my version is RH7.3
thanks
Frederick van targero
frederick
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2002 08:49 AM
08-07-2002 08:49 AM
Re: how to set a root DNS server in BIND version 9.X?
Hello Frederick,
I will re-formulate your question, just to make sure I'm clear about what you are looking for.
You want your DNS server to be "master" (primary) for your local domain addresses, and to forward other resolution requests to Internet DNS servers.
Here is the configuration file I can suggest to you :
options {
directory "/var/named";
forward first;
forwarders {
your_isp_dns1;
hour_isp_dns2;
...
};
};
zone "." IN {
type hint;
file "root.cache";
};
zone "localhost" IN {
type master;
file "localhost.zone";
};
zone "your-primary-zone" IN {
type master;
file "your-primary-zone-file";
};
zone "your-primary-zone-reverse" IN {
type master;
file "your-primary-zone-reverse-file";
};
REMARKS :
* the "root.cache" file is the one standardized and published at ftp://rs.internic.net/domain/named.root
* the "localhost.zone" file is the one used to resolve loopback address 127.0.0.1.
If you need further information, please post your current named.conf file.
Good luck.
Kodjo
I will re-formulate your question, just to make sure I'm clear about what you are looking for.
You want your DNS server to be "master" (primary) for your local domain addresses, and to forward other resolution requests to Internet DNS servers.
Here is the configuration file I can suggest to you :
options {
directory "/var/named";
forward first;
forwarders {
your_isp_dns1;
hour_isp_dns2;
...
};
};
zone "." IN {
type hint;
file "root.cache";
};
zone "localhost" IN {
type master;
file "localhost.zone";
};
zone "your-primary-zone" IN {
type master;
file "your-primary-zone-file";
};
zone "your-primary-zone-reverse" IN {
type master;
file "your-primary-zone-reverse-file";
};
REMARKS :
* the "root.cache" file is the one standardized and published at ftp://rs.internic.net/domain/named.root
* the "localhost.zone" file is the one used to resolve loopback address 127.0.0.1.
If you need further information, please post your current named.conf file.
Good luck.
Kodjo
Learn and explain...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2002 03:15 PM
08-07-2002 03:15 PM
Re: how to set a root DNS server in BIND version 9.X?
thanks kodjo,i got it
frederick
frederick
frederick
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Support
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP