- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- caching name server
Categories
Company
Local Language
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
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
Community
Resources
Forums
Blogs
- 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
12-12-2003 04:58 AM
12-12-2003 04:58 AM
caching name server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2003 05:24 AM
12-12-2003 05:24 AM
Re: caching name server
http://docs.hp.com/hpux/onlinedocs/B2355-90147/B2355-90147.html
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2003 06:09 AM
12-12-2003 06:09 AM
Re: caching name server
Don't use the loopback IP in resolv.conf, use the actual public IP for this server.
Test it by go into an interactive nslookup:
#nslookup
>server xxx.xxx.xxx.xxx (Use the IP of the server)
>host_to_resolv
>exit
#
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2003 06:19 AM
12-12-2003 06:19 AM
Re: caching name server
-Karthik S S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2003 10:20 AM
12-12-2003 10:20 AM
Re: caching name server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2003 11:09 AM
12-12-2003 11:09 AM
Re: caching name server
1) Have you followed the instructions in that doc that Geoff linked you to? All the necessary steps are there. This caching server doesn't look like it's running correctly. Are the proper files in place? Is the named server running on it? When you point to the primary server, does IT resolve your hosts?
2) Is the primary DNS server properly setup?
You know you pull the initial files from it & all subsequent updates.
Garbage in - Garbage out, they say.
BTW - 0 points for Geoff's post is an insult.
Read the manual - we can't do it *for* you. We can teach you how to fish, but you have to do the fishing.
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2003 08:18 PM
12-12-2003 08:18 PM
Re: caching name server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2003 08:29 AM
12-13-2003 08:29 AM
Re: caching name server
The following sample configuration is appropriate for a caching-only name server for use by clients internal to a corporation. All queries from outside clients are refused.
// Two corporate subnets we wish to allow queries from.
acl "corpnets" { 192.168.4.0/24; 192.168.7.0/24; };
options {
directory "/etc/namedb"; // Working directory
pid-file "named.pid"; // Put pid file in working dir
allow-query { "corpnets"; };
};
// Root server hints
zone "." { type hint; file "root.hint"; };
// Provide a reverse mapping for the loopback address 127.0.0.1
zone "0.0.127.in-addr.arpa" {
type master;
file "localhost.rev";
notify no;
};
If you want to go outside your domain - then add forwarder.
in named.conf:
options {
directory "/etc/namedb";
forwarders {
192.168.2.100; // dns server1
192.168.2.101; // dns server2
192.158.9.100; // dns server3
};
forward only; // while in transition
};
BTW - don't use bind 4.x - update to 9.x:
http://software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=BIND9.2
Rgds...Geoff
PS - You didn't specify which documentation was unclear.
PSS: This is by far the best:
http://www.nominum.com/content/documents/bind9arm.pdf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2003 12:32 AM
12-14-2003 12:32 AM