- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Setting up DNS
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-24-2004 10:39 AM
03-24-2004 10:39 AM
I have a Windows Server 2003 set up as an internal DNS server. What do I need to do to set up my HP-UX 11i server to refer to the Windows server for all DNS lookups?
I tried setting up DNS(Bind). I set it up as a "slave" to the Windows server, pointing to it as the DNS resolver. When I do an nslookup
*** Can't find server name for address
*** Default servers are not available
Using /etc/hosts on:
looking up FILES
Name:
Address:
Aliases:
What do I need to do?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 11:06 AM
03-24-2004 11:06 AM
Re: Setting up DNS
You need to configure /etc/resolv.conf and /etc/nsswitch.conf file in your HP-UX 11i server so that the DNS lookups from the 11i server will get forwarded to the windows server
# vi /etc/resolv.conf
domain
server
#
# vi /etc/nsswitch.conf
hosts: dns files
#
Sundar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 11:12 AM
03-24-2004 11:12 AM
Re: Setting up DNS
To merely obtain dns information, you do not need BIND installed at all.
The changes to nsswitch.conf and having the server in /etc/resolv.conf are enough.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 11:19 AM
03-24-2004 11:19 AM
Re: Setting up DNS
in /etc/resolv.conf
domain mydomain.com
nameserver xx.xx.xxx.x
nameserver xx.xx.xxx.x
in /etc/nsswitch.conf
hosts: files [NOTFOUND=continue UNAVAIL=return TRYAGAIN=return] dns [NOTFOUND=return UNAVAIL=continue TRYAGAIN=return]
Bind is not required.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 11:22 AM
03-24-2004 11:22 AM
Re: Setting up DNS
The following is the contents of my resolv.conf:
domain
nameserver
search
I just put this in my nsswitch.conf:
hosts: dns files
Still the same thing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 11:27 AM
03-24-2004 11:27 AM
Re: Setting up DNS
Michael: I have network connectivity to W2K server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 11:28 AM
03-24-2004 11:28 AM
Re: Setting up DNS
If the ping succeeds
# telnet
The command should not return immediately.
From your desktop try this
# nslookup - <2003 DNS serverIP>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 12:28 PM
03-24-2004 12:28 PM
Re: Setting up DNS
The telnet works as expected.
But still the same thing on nslookup, both on my XP pc and in my UNIX environment.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2004 01:54 AM
03-25-2004 01:54 AM
Re: Setting up DNS
(Ie : Lokk first at ? What to do if you donf ind the address in the first phase ? .
Run SAM and check this
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2004 02:02 AM
03-25-2004 02:02 AM
Re: Setting up DNS
I do not understand what you are saying.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2004 11:03 AM
03-25-2004 11:03 AM
Re: Setting up DNS
2) Are there any firewall between the windows and unix server? Make sure port 53 for TCP and UDP is opened for name query and zone transfer.
3) do this manually:
nslookup
Do you get any output?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2004 01:21 PM
03-25-2004 01:21 PM
SolutionPlease check this link:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=5956
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=97345
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2004 11:54 PM
03-25-2004 11:54 PM
Re: Setting up DNS
I had JUST set up a reverse lookup on my Windows 2003 server when I read the links you sent me. The problem is fixed. Thanks a lot.