- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- resolver problem
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
03-30-2000 02:26 AM
03-30-2000 02:26 AM
resolver problem
nsswitch.conf.
For example, if I use:
hosts: files dns
I can resolve all my "local" machines that are entered in the /etc/hosts file,
but NO machines registered with the DNS server(s).
If I use:
hosts: dns files
I can resolve anything the DNS server "knows", but none of the info in the
/etc/hosts file is used!
I even tried explicitly entering the "rule" between the two, and this did not
help!
Any Help is much appreciated!
HPUX 11.0 with 'March Patch Cluster' is installed.
--AJ
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2000 03:25 AM
03-30-2000 03:25 AM
Re: resolver problem
hosts: files [NOTFOUND=continue] dns
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2000 04:12 AM
03-30-2000 04:12 AM
Re: resolver problem
The ability to consult more than one name service for host information is
called 'hostname fallback'. The default settings for the /etc/nsswitch.conf is
hosts: dns [NOTFOUND=return] files
..which means, it will try to resolve the hostname_to_IP by using dns, if the
IP is not resolved then it will finish the resolution.
Try doing the following to your nsswitch.conf file:
hosts: dns [NOTFOUND=continue] files
Hope this will help you.
Thanks,
David
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2000 12:14 AM
04-02-2000 12:14 AM
Re: resolver problem
On 11.0, nslookup was trying to find a library that was on 10.20. You can apply
the new BIND patch for 11.0 (version 4.9.7) that will fix this, or if you have
a 10.20 box, copy the nslookup from that to your 11.0 box. It will work fine.
Did you try this?
Berlene
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2000 08:41 PM
04-03-2000 08:41 PM
Re: resolver problem
included in the March Patch Cluster (since that's fairly new).
Can you tell me what patch number to download, as I don't have a 10.20 box
available.
Also, are we trying to fix nslookup specifically, or all name resolution, as
the latter is what I'm actually after.
Thanks in advance.
--Aaron