- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Add HPUX11i server to 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
11-14-2003 12:46 AM
11-14-2003 12:46 AM
Add HPUX11i server to DNS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2003 12:49 AM
11-14-2003 12:49 AM
Re: Add HPUX11i server to DNS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2003 12:50 AM
11-14-2003 12:50 AM
Re: Add HPUX11i server to DNS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2003 12:55 AM
11-14-2003 12:55 AM
Re: Add HPUX11i server to DNS
Once you've done that, get the PID for the named process and send it a kill -HUP to get it to reread the tables. You can then tail the syslog to see if that went without errors, or not. You should see a message about the zone for the HP box being reloaded.
mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2003 01:00 AM
11-14-2003 01:00 AM
Re: Add HPUX11i server to DNS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2003 01:04 AM
11-14-2003 01:04 AM
Re: Add HPUX11i server to DNS
Edit /etc/resolv.conf and add the following:
domain xxx.com
nameserver 10.10.1.1
and substitute the appropriate domain and IP info.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2003 01:04 AM
11-14-2003 01:04 AM
Re: Add HPUX11i server to DNS
In the file /etc/named.boot you wil find the following entries:
...
primary
primary y.x.w.IN-ADDRE.ARPA db.w.x.y
...
The files db.dns and db.w.x.y are used for direct and reverse resolution respectively. These files are stored in /etc/named.data.
In /etc/named.data/db.dns add an "A" record for server1:
...
server1 IN A w.x.y.10
...
In /etc/named.data/db.w.x.y add a "PTR" record
...
10 IN PTR server1.
...
Ensure you restart the DNS daemon, named to apply the changes:
#/sbin/init.d/named stop
#/sbin/init.d/named start
Now, you must specify in /etc/resolv.conf in server1 that you're going to use:
domain
nameserver
Try nslookup to check direct and reverse resolution. Ensure you're using DNS for name resolution checking the file /etc/nsswitch.conf in server1:
...
hosts: files [NOTFOUND=continue] dns
...
Regards,