- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: /etc/resolv.conf issue
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
09-06-2007 10:15 PM
09-06-2007 10:15 PM
I am facing a strange problem with resolver on hp unix .
I have three dns server mentioned in the my resolv.conf
Today i had a problem with my first dns server and it was not reachable.This case my system was unable to resolv ip addresses perhpas it took 5 min time to direct resolver to 2nd dns server .
How can i make resolver to go to second dns server in case first dns server is not available without retrying for first server ..
Thx
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2007 10:21 PM
09-06-2007 10:21 PM
Re: /etc/resolv.conf issue
Example:-
# more /etc/resolv.conf
domain mys.xx.com
search mys.xx.com
nameserver 16.110.135.51
nameserver 16.110.135.52
WK
please assign points
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2007 10:32 PM
09-06-2007 10:32 PM
Re: /etc/resolv.conf issue
what exactly i need is how to reduce timeout between first and second dns server retry .
if first dns server is not available i want my resolver to go to second server immediately without waiting for first dns server to come up.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2007 11:02 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2007 11:22 PM
09-06-2007 11:22 PM
Re: /etc/resolv.conf issue
by setting veriable RES_RETRY=1
so that mean my system will try first dns server for 5 sec then goes to second ..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2007 11:36 PM
09-06-2007 11:36 PM
Re: /etc/resolv.conf issue
Your system sends a request to the DNS server, but since the primary DNS server is dead, the request goes nowhere and the TCP stack keeps waiting for the reply until it times out.
If the DNS-server itself would have been up, while only the DNS service was down, you would get a "connection refused" immediately and fallback immediately to the second DNS server.
The only solution is some clustering functionality that picks-up the IP-address of the DNS server on a second system as sson as the primary DNS system no longer responds. This way the IP-adress remains available and DNS-requests allways get a "connection refused" instead of going nowhere.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2007 01:32 AM
09-07-2007 01:32 AM
Re: /etc/resolv.conf issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2007 06:36 PM
09-09-2007 06:36 PM
Re: /etc/resolv.conf issue
it is used as 'NOTFOUND', but this will react when the dns server is unavailable.
check the manpage for resolv.conf for more infos.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2007 10:12 PM
09-10-2007 10:12 PM
Re: /etc/resolv.conf issue
Thx for all valuable reply