dperez
12-19-2002, 01:17 AM
Hi
I have DNS setup on my server. If I try to ping any of the PCs on my network using the hostname from the linux box, I get an unknown host error. If I ping from windows to windows computers, it works fine. I can also ping the linux server using the host name from a win machine. I have no problem pinging internet addresses using hostnames from either windows or the linux box. Is there a setting I'm missing? I'm also using DHCP on the linux server. Any tips?
Here is my named.conf...
options {
// DNS tables are located in the /var/named directory
directory "/var/named";
pid-file "/var/run/named/named.pid";
// Forward any unresolved requests to our ISP's name server
forwarders {
24.160.227.33;
// __ISPN2__;
};
/*
* If there is a firewall between you and nameservers you want
* to talk to, you might need to uncomment the query-source
* directive below. Previous versions of BIND always asked
* questions using port 53, but BIND 8.1 uses an unprivileged
* port by default.
*/
// query-source address * port 53;
};
zone "." {
type hint;
file "root.hints";
};
// All our DNS information is stored in /var/named/domain.name.db
zone "mke-icafe.com" {
type master;
file "mke-icafe.com.db";
// some security
allow-transfer { 127.0.0.1; };
};
zone "0.0.127.in-addr.arpa" {
notify no;
type master;
file "127.0.0.rev";
allow-transfer { 127.0.0.1; };
};
zone "1168192.in-addr.arpa" {
notify no;
type master;
file "192.168.1.rev";
allow-transfer { 127.0.0.1; };
};
Thanks
Dennys
I have DNS setup on my server. If I try to ping any of the PCs on my network using the hostname from the linux box, I get an unknown host error. If I ping from windows to windows computers, it works fine. I can also ping the linux server using the host name from a win machine. I have no problem pinging internet addresses using hostnames from either windows or the linux box. Is there a setting I'm missing? I'm also using DHCP on the linux server. Any tips?
Here is my named.conf...
options {
// DNS tables are located in the /var/named directory
directory "/var/named";
pid-file "/var/run/named/named.pid";
// Forward any unresolved requests to our ISP's name server
forwarders {
24.160.227.33;
// __ISPN2__;
};
/*
* If there is a firewall between you and nameservers you want
* to talk to, you might need to uncomment the query-source
* directive below. Previous versions of BIND always asked
* questions using port 53, but BIND 8.1 uses an unprivileged
* port by default.
*/
// query-source address * port 53;
};
zone "." {
type hint;
file "root.hints";
};
// All our DNS information is stored in /var/named/domain.name.db
zone "mke-icafe.com" {
type master;
file "mke-icafe.com.db";
// some security
allow-transfer { 127.0.0.1; };
};
zone "0.0.127.in-addr.arpa" {
notify no;
type master;
file "127.0.0.rev";
allow-transfer { 127.0.0.1; };
};
zone "1168192.in-addr.arpa" {
notify no;
type master;
file "192.168.1.rev";
allow-transfer { 127.0.0.1; };
};
Thanks
Dennys