- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: dns configuration
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
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
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-20-2006 07:59 AM
тАО11-20-2006 07:59 AM
dns configuration
i have a redhat linux server which had a private IP and a public IP (NAT) , i try to configure this aerver as a secondary dns server , i installed the bind add and do all the configuration needed from the primary dns server side , when i start the bind service the to get the zones trasfair my primary dns IP try to deal with the secondary server private IP and the zones trasfair did not complete , what is the cause for this problem and how to solve it.
BR;
fadia
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-20-2006 08:28 AM
тАО11-20-2006 08:28 AM
Re: dns configuration
which version von RedHat Linux did you use for your server. Please post the content of the "options" section of your named.conf. Is there an entry like this?
listen-on port 53 { 127.0.0.1; 192.168.20.2; };
With this entry you can tell you named on which interfaces it should listen.
Regards,
Patrick
Patrick
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-20-2006 11:02 PM
тАО11-20-2006 11:02 PM
Re: dns configuration
options {
directory "/var/named";
allow-transfer { 212.14.224.1 ; };
# query-source address * port 53;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-20-2006 11:19 PM
тАО11-20-2006 11:19 PM
Re: dns configuration
generally the information wirtten there is very usefull (especially when dealing with DNS).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-20-2006 11:24 PM
тАО11-20-2006 11:24 PM
Re: dns configuration
Nov 21 14:22:26 localhost named[10696]: starting BIND 9.3.2-P2
Nov 21 14:22:26 localhost named[10696]: loading configuration from '/etc/named.conf'
Nov 21 14:22:26 localhost named[10696]: listening on IPv4 interface lo, 127.0.0.1#53
Nov 21 14:22:26 localhost named[10696]: listening on IPv4 interface eth0, 10.100.20.230#53
Nov 21 14:22:26 localhost named[10696]: listening on IPv4 interface eth0:0, 195.68.208.230#53
Nov 21 14:22:26 localhost named[10696]: listening on IPv4 interface eth1, 10.100.20.231#53
Nov 21 14:22:26 localhost named[10696]: none:0: open: /etc/rndc.key: file not found
Nov 21 14:22:26 localhost named[10696]: /etc/named.conf:19: couldn't install keys for command channel 195.68.208.230#953: file not found
Nov 21 14:22:26 localhost named[10696]: /etc/named.conf:19: couldn't add command channel 195.68.208.230#953: file not found
Nov 21 14:22:26 localhost named[10696]: zone 0.0.127.in-addr.arpa/IN: has no NS records
Nov 21 14:22:26 localhost named[10696]: running
Nov 21 14:22:27 localhost named[10696]: zone paltel.net/IN: Transfer started.
Nov 21 14:22:27 localhost named[10696]: transfer of 'paltel.net/IN' from 212.14.224.1#53: connected using 10.100.20.230#33347
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-20-2006 11:57 PM
тАО11-20-2006 11:57 PM
Re: dns configuration
http://www.redhat.com/docs/manuals/linux/RHL-9-Manual/ref-guide/s1-bind-rndc.html
Can you do a traceroute to the primary DNS server? I don't understand why is trying to connect using private ip as source address.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-21-2006 12:13 AM
тАО11-21-2006 12:13 AM
Re: dns configuration
Can you post your named.conf file?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-21-2006 12:32 AM
тАО11-21-2006 12:32 AM
Re: dns configuration
options {
directory "/var/named";
allow-transfer { 212.14.224.1 ; };
query-source address 195.68.208.230 port 53;
#listen-on port 53 { 127.0.0.1; 195.68.208.230; };
};
key "rndc-key" {
algorithm hmac-md5;
secret "MjPngJNvWhd3u9hW0/eWWw==";
};
controls {
inet 195.68.208.230 port 953
allow { 195.68.208.230; } keys { "rndc-key"; };
};
zone "." in {
type hint;
file "root.hints";
};
zone "0.0.127.in-addr.arpa" in {
type master;
file "zone/db.127.0.0";
};
zone "paltel.net" in {
type slave;
file "zone/db.paltel.net";
masters { 212.14.224.1; };
#allow-notify { 212.14.224.1; };
};
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-21-2006 12:41 AM
тАО11-21-2006 12:41 AM
Re: dns configuration
Do you have the directories/files in write places?
It's hard to see what line is 19, so can you please post just that line?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-21-2006 12:59 AM
тАО11-21-2006 12:59 AM
Re: dns configuration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-21-2006 06:18 AM
тАО11-21-2006 06:18 AM
Re: dns configuration
Nov 21 14:22:26 localhost named[10696]: none:0: open: /etc/rndc.key: file not found
Nov 21 14:22:26 localhost named[10696]: /etc/named.conf:19: couldn't install keys for command channel 195.68.208.230#953: file not found
Nov 21 14:22:26 localhost named[10696]: /etc/named.conf:19: couldn't add command channel 195.68.208.230#953: file not found
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-22-2006 12:46 AM
тАО11-22-2006 12:46 AM
Re: dns configuration
Nov 22 15:43:28 localhost named[13720]: transfer of 'paltel.net/IN' from 212.14.224.1#53: connected using 10.100.20.230#48521
from the IP 10.100.20.230 to another IP which is the NAT IP , how can I do this
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-22-2006 03:18 AM
тАО11-22-2006 03:18 AM
Re: dns configuration
The problem seems some rndc configuration files are missing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-22-2006 03:29 AM
тАО11-22-2006 03:29 AM
Re: dns configuration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-22-2006 03:46 AM
тАО11-22-2006 03:46 AM
Re: dns configuration
You have a work DNS server which is in public site with a public IP;
You want to create a seconary DNS server that is dual-homed with one public IP and one private IP;
You have problem on the second DNS sever.
Then your DNS zone transferring traffic should flow through the public IP only. port 53 (udp and tcp) or whatever port you configured should be open on both PUBLIC IPs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-22-2006 03:49 AM
тАО11-22-2006 03:49 AM