- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Unnormal results when using nslookup
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
01-16-2002 12:13 AM
01-16-2002 12:13 AM
Unnormal results when using nslookup
I have some questions about DNS.
My /etc/hosts file is originally described as following.
127.0.0.1 localhost loopback
192.168.200.1 dserver.eda.com dserver
192.168.200.2 hp_music.eda.com hp_music
192.168.200.3 WS02.eda.com WS02
192.168.200.4 WS03.eda.com WS03
192.168.200.5 WS04.eda.com WS04
Then under /etc/named.data ,I create a file param, using hosts_to_named -f param command to create data files and booting files, modifing /etc/rc.config.d/namesvrs, changing NAMED variant to 1,
configuring /etc/resolv.conf file and /etc/nsswitch.conf file,
then restart.
The following is the process of hosts resolving on DNS server.
nslookup
Default Name dserver: dserver.eda.com
Address: 192.168.200.1
> hp_music
Name dserver: dserver.eda.com
Address: 192.168.200.1
Trying DNS
*** dserver.eda.com can't find hp_music: dserver failed
> ws03
Name dserver: dserver.eda.com
Address: 192.168.200.1
Trying DNS
Non-authoritative answer:
Name: ws03.eda.com
Address: 192.168.200.4
> 192.168.200.4
Name dserver: dserver.eda.com
Address: 192.168.200.1
Trying DNS
Name: ws03.eda.com
Address: 192.168.200.4
> 192.168.200.2
Name dserver: dserver.eda.com
Address: 192.168.200.1
Trying DNS
*** dserver.eda.com can't find 192.168.200.2: dserver failed
Questions:
1. There is always "Non-authoritative answer" warning when resolving hostname to ip address.
2. All hostnames include underline cann't be resolved correctly.
How can I solve it? My HP-UX version is 10.20 . Thanks a lot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2002 12:42 AM
01-16-2002 12:42 AM
Re: Unnormal results when using nslookup
This might help
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xdc77abe92dabd5118ff10090279cd0f9,00.html
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2002 02:01 PM
01-16-2002 02:01 PM
Re: Unnormal results when using nslookup
The underscore character is not valid for hostnames. Microsoft uses it, but this violates the RFC's for hostnames.
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2002 02:21 PM
01-16-2002 02:21 PM
Re: Unnormal results when using nslookup
1. There are a couple of reasons why you get non-authorative answers.
- You don't have a full copy of the zone file.
- SOA record missing to specify itself as the authority server.
2. _ is not valid in forming DNS names.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2002 02:53 PM
01-16-2002 02:53 PM
Re: Unnormal results when using nslookup
To be able to use underscore in host name, edit /etc/named.conf and add
options {
check-names master ignore;
check-names slave ignore;
check-names response ignore;
};
in the options section, if you are running bind 8.x
good luck.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2002 05:39 PM
01-16-2002 05:39 PM
Re: Unnormal results when using nslookup
hp_music was DNS server and dserver was DNS client initially.
Could you offer me any more valuable answers?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2002 06:51 AM
01-18-2002 06:51 AM
Re: Unnormal results when using nslookup
check-names primary ignore
check-names secondary ignore
check-names response ignore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2002 06:57 AM
01-18-2002 06:57 AM
Re: Unnormal results when using nslookup
C