- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- 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-29-2004 08:01 PM
11-29-2004 08:01 PM
I have a DNS root server (internal network) running bind 8.3.3 (also tried on 9.2.2). I have been asked to set up a forwarder to allow domain.net. to be forwarded to a private network though firewalls.
I have read all the info and it appeared to be as easy as adding this to the named.conf file;
zone "domain.net" {
type forward;
forwarders { xx.xx.xx.xx ; };
forward only;
};
I did this and it did not work. I have tried to forward everything but supplied a empty list of forwarders in the included named.conf file for our internal top level domain. This did not work. To test it I supplied another dev server as a dns server and all the requests were forwarded but still not the domain.net names.
Has anyone ever done this and is there something I am missing?
Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2004 08:23 PM
11-29-2004 08:23 PM
Re: DNS Forwarding
Check this post from yesterday.
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=752565
Hope this helps,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2004 08:30 PM
11-29-2004 08:30 PM
Re: DNS Forwarding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2004 12:59 AM
11-30-2004 12:59 AM
SolutionI do this for a particular zone:
options {
directory "/etc/namedb";
forwarders {
X.X.X.1; X.X.X.2; Y.Y.Y.Y; // first 2 are internet servers last 1 is for session.specialdomain.com
};
forward only; // while in transition
};
Then the zone section like so:
// special zone for specialdomain.com
zone "specialdomain.com" in {
type master;
file "named.specialdomain.com";
allow-transfer {
192.168/16;
127.0.0.1;
};
};
The actual zone file:
$ORIGIN .
$TTL 14400 ; 4 hours
rservices.com IN SOA sentinel.specialdomain.com. dnsguy.mydomain.ca. (
18 10800 1800 3600000 259200)
IN NS sentinel.specialdomain.com.
sentinel.specialdomain.com. IN A 192.168.162.157
session.specialdomain.com. IN NS ss1.specialdomain.com.
ss1.specialdomain.com. IN A Y.Y.Y.200
So what does that do? instead of me checking the "real" domain for specialdomain.com for the A record of ss1.specialdomain.com, we set it to Y.Y.Y.200 - which really isn't advertised. Then for all other requests, check the forwarder Y.Y.Y.Y name server.
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2004 03:56 AM
11-30-2004 03:56 AM
Re: DNS Forwarding
Thanks for the detailed response. We tried it and had problems. We have gone back to the third party who are offering the DNS service and they gave us misleading info! We have discovered a much simpler fix and will test it tonight.
I will post the resolution if it works just in case someone else has the same problem.