Cannot resolve DNS from the windows
From: wahid (wahiddxb_at_yahoo.com)
Date: 11/09/05
- Next message: Ste: "Load balancing with linux"
- Previous message: bill: "make atmel usb adapter on linux <-communicate-> 2wire 1702hg home portal ?"
- Next in thread: Baho Utot: "Re: Cannot resolve DNS from the windows"
- Reply: Michael Heiming: "Re: Cannot resolve DNS from the windows"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: 9 Nov 2005 06:23:02 -0800
Hi Guys,
I have configured LAN DNS with Red Hat 9.0. Everything seems ok with
the Linux box and I am able to ping the DNS and able to browse with the
DNS in the Linux box itself but none of this is working from windows. I
can only ping with the IP address...but not with the DNS. Ipconfig
shows all the entries properly. I need to resolve the DNS so that I can
connect all my LAN windows pcs with the LAN DNS done in Linux.
I will appreciate if anyone among you can help me to sort out this
problem. I am pasting all configuration files below:
********************dhcpd.conf START***********************************
ddns-update-style interim;
subnet 192.168.0.0 netmask 255.255.255.0 {
range dynamic-bootp 192.168.0.50 192.168.0.225;
default-lease-time 86400;
max-lease-time 86400;
option routers 192.168.0.1;
option ip-forwarding off;
option broadcast-address 192.168.0.255;
option subnet-mask 255.255.255.0;
option domain-name-servers 192.168.0.1;
option domain-name "crystalgallery.co.ae";
option nntp-server 192.168.0.1;
option netbios-name-servers 192.168.0.1;
}
********************dhcpd.conf END***********************************
********************named.conf START***********************************
options {
directory "/var/named";
};
acl "mylan" {
127/8; 192.168.0.0/8;
};
view "inside" {
match-clients { "mylan"; };
recursion yes;
zone "." IN {
type hint;
file "named.ca";
};
zone "0.168.192.in-addr.arpa" IN {
type master;
file "yourlan.db";
};
zone "crystalgallery.co.ae" {
type master;
file "db.crystalgallery.co.ae.inside";
allow-transfer { 192.168.0.2; };
};
};
include "/etc/rndc.key";
********************named.conf END***********************************
********************db.crystalgallery.co.ae.inside
START***********************************
$TTL 86400
@ IN SOA crystalgallery.co.ae. www.crystalgallery.co.ae. (
42 ; serial (d. adams)
3H ; refresh
15M ; retry
1W ; expiry
1D ) ; minimum
IN NS www.crystalgallery.co.ae.
IN MX 10 mail.crystalgallery.co.ae.
www IN A 192.168.0.1
********************db.crystalgallery.co.ae.inside
END***********************************
********************yourlan.db START***********************************
$TTL 86400
@ IN SOA crystalgallery.co.ae. www.crystalgallery.co.ae.
(
1997022700 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
86400 ) ; Minimum
IN NS www.crystalgallery.co.ae.
1 IN PTR crystalgallery.co.ae.
********************yourlan.db END***********************************
********************resolv.conf
START***********************************
search crystalgallery.co.ae
nameserver 192.168.0.1
********************resolv.conf END***********************************
********************resolv.conf
START***********************************
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost
192.168.0.1 www.crystalgallery.co.ae www
********************hosts END***********************************
Regards,
Wahid
- Next message: Ste: "Load balancing with linux"
- Previous message: bill: "make atmel usb adapter on linux <-communicate-> 2wire 1702hg home portal ?"
- Next in thread: Baho Utot: "Re: Cannot resolve DNS from the windows"
- Reply: Michael Heiming: "Re: Cannot resolve DNS from the windows"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|