- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Problem w/ DNS forwarding
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-21-2006 12:27 AM
11-21-2006 12:27 AM
I am running a DNS server for some domains and am forwarding request for other domains. Here is a sample of my zone configurations...
zone "zone1.corp" {
type forward;
forwarders {100.1.19.25; 100.1.1.168; };
};
zone "zone1.corp" {
type forward;
forwarders {100.1.19.11; 100.1.1.88; };
};
zone "zone2.com" {
type master;
file "db.zone1";
};
I'm trying to add a second domain to forward to but after modifying the named.conf file in /etc it will still forward to the first domain (zone1) but it is not forwarding the request to the new domain (zone3). I'm running HP-UX 11.11.
What am I missing? Any and all help will be appreciated.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2006 12:44 AM
11-21-2006 12:44 AM
Re: Problem w/ DNS forwarding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2006 12:49 AM
11-21-2006 12:49 AM
Re: Problem w/ DNS forwarding
zone "zone1.corp" {
type forward;
forwarders {100.1.19.25; 100.1.1.168; };
};
zone "zone3.corp" {
type forward;
forwarders {100.1.19.11; 100.1.1.88; };
};
zone "zone2.com" {
type master;
file "db.zone1";
};
And yes, I restarted named. I did both a sig_named restart and I also manually killed it and restarted the daemon.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2006 01:10 AM
11-21-2006 01:10 AM
Solutiondig zone1.corp NS
dig zone2.corp NS
dig zone3.corp NS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2006 01:19 AM
11-21-2006 01:19 AM
Re: Problem w/ DNS forwarding
zone "zone1.corp" {
type forward only;
forwarders {100.1.19.25; 100.1.1.168; };
};
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2006 01:45 AM
11-21-2006 01:45 AM
Re: Problem w/ DNS forwarding
zone "zone3.corp" {
type forward;
forward only;
forwarders {100.1.19.11; 100.1.1.88; };
};
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2006 02:09 AM
11-21-2006 02:09 AM
Re: Problem w/ DNS forwarding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2006 03:17 AM
11-21-2006 03:17 AM
Re: Problem w/ DNS forwarding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2006 03:25 AM
11-21-2006 03:25 AM
Re: Problem w/ DNS forwarding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2006 04:23 AM
11-21-2006 04:23 AM