- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to make DNS check another server if the first ...
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-15-2005 02:59 AM
12-15-2005 02:59 AM
How to make DNS check another server if the first serfer cannot resolve the ip address
As it is, if I do a forward lookup of a PC on my unix machines, they return the correct IP address (Non-authoritative answer). However, they are unable to do a reverse lookup of the PCs (No hostname information is available for aaa.bbb.ccc.ddd).
On my unix maxhines, if I do:
# nslookup aaa.bbb.ccc.ddd
it works OK.
Is there anyway I can configure my unix DNS server to try another server (my sbsserver) if it can't resolve the ip addess itself?
I don't want to redesign my DNS scheme, so if there's no simple answer, I can work around this, but my workaround is pretty inelegant.
Thanks,
Gary
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2005 03:18 AM
12-15-2005 03:18 AM
Re: How to make DNS check another server if the first serfer cannot resolve the ip address
Though - I'm not positive that it will work...
Best is to integrate Windows with your DNS...
2 choices - make Windows Primary for all your domains (yuck) and Unix scondary - or make Unix primary and Windows secondary.
If the latter - turn on dynamic updates in Bind...
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2005 01:08 PM
12-15-2005 01:08 PM
Re: How to make DNS check another server if the first serfer cannot resolve the ip address
So, making one secondary to the other is probably the only way to go, or find some way to convince the windows box it really should defer.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2005 02:48 PM
12-15-2005 02:48 PM
Re: How to make DNS check another server if the first serfer cannot resolve the ip address
hosts: files [NOTFOUND=continue TRYAGAIN=continue] dns [NOTFOUND=continue]
This is actually the most desirable configuration for a production machine. When a DNS server has problems, it wreaks havoc on the machines that depend on the server. For HP-UX, each dead (non-responding) DNS server requires about 20 seconds to determine that the server is not working. Then the next server is tried, and so on up to 3 DNS server attempts. This is for *EVERY* network activity, from login to ftp to any gethostbyname() (and similar) library call. A server can be almost disabled with a loss of the primary DNS server.
Now contrary to common belief, the 2nd and 3rd DNS servers are not consulted unless the nsswitch.conf file specifies [NOTFOUND=continue]. This means that if the first server is working and says "no such entry", that is the final answer. By specifying [NOTFOUND=continue], the next item in the list will be consulted. Check out the man page for nsswitch.conf.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2005 01:10 AM
12-16-2005 01:10 AM
Re: How to make DNS check another server if the first serfer cannot resolve the ip address
I think I'll go with my ineligant solution.
Once again, thanks for your help.
Gary