- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Configuring DNS Bind on HPUX 11.00 as secondary se...
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
02-03-2003 03:58 PM
02-03-2003 03:58 PM
I have an rp2430 in a networked environment where DNS primary is setup on a windows server. In the interest of keeping this system available at all times, we are looking at configuring DNS bind on the rp2430 as a secondary server that would roll over if necessary. I'm very new with this functionality and software so I'm not sure I'm sounding knowledgeable (sorry about that). I've looked at the HP database and am a bit overwhelmed with the information on DNS bind. Does anyone have an overview of this software, if I can do this, and a 'where to start on configuration' if it will work? Thanks much, Terri Christensen.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2003 04:21 PM
02-03-2003 04:21 PM
SolutionHave a look at the attachment from Berlene in this posting.
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x7b6d7e990647d4118fee0090279cd0f9,00.html
HTH
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2003 09:12 PM
02-03-2003 09:12 PM
Re: Configuring DNS Bind on HPUX 11.00 as secondary server. Can I?
if you have BIND9* / BIND8 nameservers do this.
edit /etc/named.conf
options (directory "/var/named" ;
};
zone "yourdomain.com" in {
type slave;
masters { xx.xx.xx.xx; };
file "db.yourdomain.slave";
};
zone "xx.xx.xx.in-addr.arpa" in {
type slave;
masters { xx.xx.xx.xx; };
};
Where xx.xx.xx.xx is the IP addresses of the Primary DNS server.
Save the file and start named daemon.
Now your slave server will pull out the DNS data from the primary DNS server.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2003 07:27 AM
02-04-2003 07:27 AM
Re: Configuring DNS Bind on HPUX 11.00 as secondary server. Can I?
"zone "xx.xx.xx.in-addr.arpa" in {
type slave;
masters { xx.xx.xx.xx; };
};
Where xx.xx.xx.xx is the IP addresses of the Primary DNS server."
The "xx.xx.xx" in the in-addr.arpa zone would, of course, be the inverted network IP address if they administer their own inverse zone (and not there if they don't).
Note also that for outside servers to find and use the secondary, you'll need an NS record and "glue" (A) record added to your zone delegation for it and corresponding records within the zone.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2003 09:00 AM
02-04-2003 09:00 AM
Re: Configuring DNS Bind on HPUX 11.00 as secondary server. Can I?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2003 12:18 PM
02-04-2003 12:18 PM
Re: Configuring DNS Bind on HPUX 11.00 as secondary server. Can I?
# what /usr/sbin/named.
URL for bind 9.2.0.
http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProducts.pl?group_type=search&group_name=Bind+&search_free=1&search_trial=1&search_buy=1
You can also install bind 8.1.2 on an HPUX 11.00 system as well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2003 04:50 PM
02-07-2003 04:50 PM