- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Primary DNS and Secondary DNS
Operating System - HP-UX
1824941
Members
3829
Online
109678
Solutions
Forums
Categories
Company
Local Language
юдл
back
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
Forums
Discussions
юдл
back
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
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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
тАО09-21-2001 05:41 AM
тАО09-21-2001 05:41 AM
Primary DNS and Secondary DNS
Hi all,
I have two different networks and two different scenarios for configuring DNS.
First Network and First Scenario:
I have a SUN Netra Server and a Windows NT(high config) Server. Presently SUN Server is the Primary DNS Server.
My Question: I want to make Windows NT Server as the secondary DNS server.
1) IS it possible?
2) Is there be any issues with regard to cross-platforms?
Second Network and Second Scenario:
I have a HP-UX Server as primary DNS Server. I have a spare SUN Ultra server with Solaris 8.
My Question: I want to make Sun Solaris Server as the secondary DNS server.
1) IS it possible?
2) Is there be any issues with regard to cross-platforms?
IF possible Can you experts give me some suggestions on how to do it?
I have two different networks and two different scenarios for configuring DNS.
First Network and First Scenario:
I have a SUN Netra Server and a Windows NT(high config) Server. Presently SUN Server is the Primary DNS Server.
My Question: I want to make Windows NT Server as the secondary DNS server.
1) IS it possible?
2) Is there be any issues with regard to cross-platforms?
Second Network and Second Scenario:
I have a HP-UX Server as primary DNS Server. I have a spare SUN Ultra server with Solaris 8.
My Question: I want to make Sun Solaris Server as the secondary DNS server.
1) IS it possible?
2) Is there be any issues with regard to cross-platforms?
IF possible Can you experts give me some suggestions on how to do it?
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-21-2001 05:58 AM
тАО09-21-2001 05:58 AM
Re: Primary DNS and Secondary DNS
Hi Ramesh,
I don't know much about NT. But it is possible.
HP - Sun no problem. We have exact same configuration. HP is master and SUN is secondary server. I am assuming that you are using bind 8.x on HP. Install bind 8.x on SUN.
Create named.conf file in /etc/. If you have BIND 4.X then use
#/usr/sbin/named-bootconf.pl /etc/named.boot > /etc/named.conf
This will create new named.conf using your named.boot file.
vi /etc/named.conf. Change directory to appropriate location.
options {
check-names master ignore;
check-names slave ignore;
directory "/usr/local/named";
};
change the servers if they are different.
So it looks like
zone "movie.com" {
type slave;
file "sec.hosts.movie.com";
masters {
10.10.10.1;
};
};
/* 10.10.10.1 is HP server */
And so on......
Restart the named and you will have all your map pulled from HP server
Book: DNS and BIND from O'Reilly
Sachin
I don't know much about NT. But it is possible.
HP - Sun no problem. We have exact same configuration. HP is master and SUN is secondary server. I am assuming that you are using bind 8.x on HP. Install bind 8.x on SUN.
Create named.conf file in /etc/. If you have BIND 4.X then use
#/usr/sbin/named-bootconf.pl /etc/named.boot > /etc/named.conf
This will create new named.conf using your named.boot file.
vi /etc/named.conf. Change directory to appropriate location.
options {
check-names master ignore;
check-names slave ignore;
directory "/usr/local/named";
};
change the servers if they are different.
So it looks like
zone "movie.com" {
type slave;
file "sec.hosts.movie.com";
masters {
10.10.10.1;
};
};
/* 10.10.10.1 is HP server */
And so on......
Restart the named and you will have all your map pulled from HP server
Book: DNS and BIND from O'Reilly
Sachin
Is photography a hobby or another way to spend $
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-21-2001 06:28 AM
тАО09-21-2001 06:28 AM
Re: Primary DNS and Secondary DNS
Hi, it has been a while since I tried this, so I do not remember the specifics, but when I tried to mix NT DNS servers with HP-UX or Free BSD DNS servers they did not get along well at all. I recommend the Sun/HP combination or an all NT, heresy, DNS server configuration. Hope this helps.
Rob
Rob
Learn the rules so you can break them properly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-21-2001 06:38 AM
тАО09-21-2001 06:38 AM
Re: Primary DNS and Secondary DNS
Both scenarios are possible. But assuming you are running BIND on both HP and SUN then you should have very few (if any) problems there. Microsoft's DNS is not using the same standards as BIND (surprise, surprise), so certain things do not work the same way (dynamic updates, forwarding zones, security, etc). If the DNS is real basic, then the 2 should be able to work together.
Definitely get a copy of DNS and Bind 4th Edition from O'Reilly
Also, here are some very helpful web sites:
http://www.acmebw.com/askmrdns/
http://www.microsoft.com/technet/treeview/default.asp?url=/TechNet/prodtechnol/windows2000serv/reskit/tcpip/part2/tcpch06.asp
http://www.dns.net/dnsrd/
http://www.isc.org/products/BIND/
http://www.isc.org/ml-archives/bind-users/
Good luck.
Definitely get a copy of DNS and Bind 4th Edition from O'Reilly
Also, here are some very helpful web sites:
http://www.acmebw.com/askmrdns/
http://www.microsoft.com/technet/treeview/default.asp?url=/TechNet/prodtechnol/windows2000serv/reskit/tcpip/part2/tcpch06.asp
http://www.dns.net/dnsrd/
http://www.isc.org/products/BIND/
http://www.isc.org/ml-archives/bind-users/
Good luck.
Ye who thinks he has a lot to say, probably shouldn't.
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Learn About
News and Events
Support
© Copyright 2025 Hewlett Packard Enterprise Development LP