- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- DNS Resolving 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
11-26-2010 02:39 AM
11-26-2010 02:39 AM
DNS Resolving issue
In my environment i am having hp-ux 11iv1 server.I'm tyring to configure DNS on this server.I'm just using my existing domian as a default domain name for my DNS.i too have another 2 domains with same subnet range.Issue is,my DNS server doesn't resolving the hosts except default domain hosts.
pls help me to resolv this issue.
Thanks in advance,
sanvel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2010 02:52 AM
11-26-2010 02:52 AM
Re: DNS Resolving issue
What, exactly, did you do?
> [...] i too have another 2 domains with
> same subnet range. [...]
What, exactly, does that mean?
> [...] my DNS server doesn't resolving the
> hosts [...]
As usual, showing actual commands with their
actual output can be more helpful than vague
descriptions or interpretations.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2010 03:03 AM
11-26-2010 03:03 AM
Re: DNS Resolving issue
#/etc/resolv.conf
search domain1 domain2 domain3
nameserver IP1
nameserver IP2
nameserver IP3
Of course, if I understand you right 8)))
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2010 03:19 AM
11-26-2010 03:19 AM
Re: DNS Resolving issue
1.Entered fully qualified host names in /etc/hosts
172.20.0.6 hp-ux.cvr.org
172.20.0.1 pd.cvr.org
172.20.0.5 cvr.in
2.created a dir manualy for DNS data files
#mkdir /etc/named.data
#chmod 755 /etc/named.data
#cd /etc/named.data
3.Used hosts_named_utility
#hosts_to_named -d
4.Edited /etc/rc.config.d/namesvrs
Named=1
5.Started the Daemon,
/sbin/init.d/named start
In /etc/resolv.conf
search cvr.org
nameserver 172.20.0.6
In /etc/nsswitch.conf
hosts dns,files
But,The actual problem is,DNS doesn't resolving the hosts of another domain (i.e)cvr.in with ip 172.20.0.5 (mentioned above in /etc/hosts)in our network.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2010 04:29 AM
11-27-2010 04:29 AM
Re: DNS Resolving issue
hosts dns,files
I guess, that is the problem. Remove the coma and use space.
i.e it will be like this
hosts dns files
Shibin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2010 12:14 PM
11-27-2010 12:14 PM
Re: DNS Resolving issue
This can configuration can lead to a lot of reliability and problems. If you choose files first, you can bypass DNS problems by placing important hostnames in /etc/hosts. Use something like this in /etc/nsswitch.conf:
passwd: files
group: files
hosts: files [NOTFOUND=continue UNAVAIL=continue] dns
ipnodes: files [NOTFOUND=return UNAVAIL=return TRYAGAIN=return]
services: files
networks: files
protocols: files
rpc: files
publickey: files
netgroup: files
automount: files
aliases: files
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2010 12:16 PM
11-27-2010 12:16 PM
Re: DNS Resolving issue
nsquery hosts mycomputer
nsquery hosts 1.2.3.4
nsquery hosts mycomputer.mydomain.com
Bill Hassell, sysadmin