Networking Forums

Networking Forums > Computer Networking > Linux Networking > not able to access bind from windows client machine

Reply
Thread Tools Display Modes

not able to access bind from windows client machine

 
 
Danish
Guest
Posts: n/a

 
      10-10-2006, 09:23 AM
Hi,
Im using Fedora4 and a VMware on it which runs Fedora5. Im running
bind-9.3.1-4 on Fedora4. Im not able to access my the index.html under
/var/ww/html on the Fedora4 machine from a Windows machine, but the
same is accessible under the VMmachine.

Under the Window system: a static ip is configured with the dns server
ip as default gateway and also as the dns server.

Following are my named.conf and est-it-03.zone file

//
// named.conf for Red Hat caching-nameserver
//

options {
directory "/var/named";
};

controls {
inet 127.0.0.1 allow{ localhost; } keys { rndc_key; };
};

zone "."{
type hint;
file "named.ca";
};

zone "est-it-03.lab" {
type master;
notify yes;
file "est-it-03.zone";
};

zone "0.0.127.in-addr.arpa"{
type master;
file "named.local";
allow-update { none; };
};


est-it-03.zone file:

$TTL 86400
@ IN SOA @ root (
42 ; serial (d.
adams)
3H ; refresh
15M ; retry
1W ; expiry
1D ) ; minimum

IN NS 192.168.10.240
IN A 127.0.0.1
IN AAAA ::1



windows machine: 192.168.10.243
DNS server machine: 192.168.10.240

On doing nslookup on windows command prompt, I get the following error:
C:\ nslookup est-it-03.lab
Cant find server name for address 192.168.10.240: Non existant domain
Default servers are not available
Server: Unknown
Address 192.168.10.240


Thanks
Danish

 
Reply With Quote
 
 
 
 
Jeroen Geilman
Guest
Posts: n/a

 
      10-15-2006, 08:48 PM
Danish wrote:

> est-it-03.zone file:
>
> $TTL 86400
> @ IN SOA @ root (
> 42 ; serial (d.
> adams)
> 3H ; refresh
> 15M ; retry
> 1W ; expiry
> 1D ) ; minimum
>
> IN NS 192.168.10.240
> IN A 127.0.0.1
> IN AAAA ::1


You have to define at least one glue record for the nameserver:

server IN A 192.168.10.240
@ IN NS server

And remove all the other records.

Without glue records, it won't know that it is, in fact, a nameserver.
Which is reflected in the error you get.


J.
 
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to configure windows machine as client on linux domain sem Linux Networking 1 12-14-2006 09:22 AM
Simple client/server socket program works on one Linux machine, it doesnot work on other machine GS Linux Networking 2 05-09-2006 12:55 PM
Cannot Ping New Windows Server 2003 Machine from XP Client Charles Law Windows Networking 4 04-21-2006 04:19 PM
Windows 98 machine won't access Internet or local shared devices on startup Ture Magnusson Wireless Networks 1 06-21-2005 10:03 AM
server cannot access client machine =?Utf-8?B?SXNhaXI=?= Windows Networking 4 12-21-2004 03:12 PM



1 2 3 4 5 6 7 8 9 10 11