Re: [expert] OT DNS Server and nslookup Problems

2000-05-09 Thread Charles L. Burkins

On 9 May 00, at 11:32, Brian Schroeder wrote:

I'm sure someone will stop me if I'm wrong , but haven't you 
asked for named to find your zone file in /etc/etc/named.local? The 
directive directory "/etc"; lets you specify your zone files without 
a path. 

Also according to my docs, you are missing an "in" in the named.conf 

> zone "112.132.10.in_addr.arpa"{
> type master;
> file "/etc/oerl.au.rev";
> notify no;
> };

should have it's first line as 
zone "112.132.10.in_addr.arpa" in {
although I expect that what you have may be a legal abbreviation.

Finally, do you have two nameservers selected? It seems to me that
> @   IN  NS  ls2
> @   IN  NS  ls2.oerl.au.

point to the same thing.

Hope this helps.

Good Luck
Chuck Burkins

--
Charles L. Burkins
[EMAIL PROTECTED]

[Insert pithy saying here]




Re: [expert] OT DNS Server and nslookup Problems

2000-05-09 Thread Dave Lers

On Mon, 08 May 2000, Brian Schroeder wrote:
> I provided as little information as I did in the hope that someone would
> recognize my problem and be able to help me, without me swamping the
> list with lots of data.  The files are:

What is the problem?, I don't see it mentioned in this post but your zone file
looks a bit off. What messages are you getting for named in /log/messages?

> @   IN  SOA ls2.oerl.au.hostmaster.oerl.au. (
> 250401 ; serial
> 28800 ; refresh
> 7200 ; retry
> 604800 ; expire
> 86400 ; default_ttl
> )
> ;
> @   IN  NS  ls2
> @   IN  NS  ls2.oerl.au.

The name server on your box is listed twice. I'd get rid of the first record

> ;
> ; Adresses for the canonical names
> ;
> localhost   IN  A   127.0.0.1
> sun1IN  A   10.132.112.21
> sun2IN  A   10.132.112.22

What are sun1 and 2?

The A record for your box is missing

ls2.oerl.au.IN  A   xxx.xxx.xxx.xxx



Re: [expert] OT DNS Server and nslookup Problems

2000-05-08 Thread Brian Schroeder

This has taken me a little while to get back to.  Unfortunately, I am
the only person in the company with a Linux desktop, and the "Love Bug"
struck...



Bill Shirley wrote:
> 
> You know, it's amazing how little information you've given us.
> 
> Although, I'm no DNS guru I have configured my DNS server and, I far as I
> can tell, it works correctly.  If you need help, for starters, post your:
> 
> /etc/HOSTNAME
> /etc/resov.conf
> /etc/named.conf
> /var/named/localhost   (or whatever it's called)
> /var/named/127 (or whatever it's called)
> 
> Bill

I provided as little information as I did in the hope that someone would
recognize my problem and be able to help me, without me swamping the
list with lots of data.  The files are:

/etc/HOSTNAME

ls2.oerl.au

/etc/resov.conf

search oerl.au
nameserver 10.132.112.245

/etc/named.conf

options {
directory "/etc";
forwarders{
10.132.64.29;
10.129.62.21;
10.25.64.21;
};
pid-file "/var/run/named.pid";
};
zone "112.132.10.in_addr.arpa"{
type master;
file "/etc/oerl.au.rev";
notify no;
};
zone "oerl.au"{
type master;
file "/etc/oerl.au.hosts";
};
zone "0.0.127.in-addr.arpa"{
type master;
file "/etc/named.local";
};


/etc/oerl.au.hosts

@   IN  SOA ls2.oerl.au.hostmaster.oerl.au. (
250401 ; serial
28800 ; refresh
7200 ; retry
604800 ; expire
86400 ; default_ttl
)
;
@   IN  NS  ls2
@   IN  NS  ls2.oerl.au.
;
; Adresses for the canonical names
;
localhost   IN  A   127.0.0.1
sun1IN  A   10.132.112.21
sun2IN  A   10.132.112.22



RE: [expert] OT DNS Server and nslookup Problems

2000-05-05 Thread Bill Shirley

You know, it's amazing how little information you've given us.

Although, I'm no DNS guru I have configured my DNS server and, I far as I
can tell, it works correctly.  If you need help, for starters, post your:

/etc/HOSTNAME
/etc/resov.conf
/etc/named.conf
/var/named/localhost   (or whatever it's called)
/var/named/127 (or whatever it's called)

Bill


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Brian Schroeder
Sent: Thursday, May 04, 2000 11:39 PM
To: [EMAIL PROTECTED]
Subject: [expert] OT DNS Server and nslookup Problems


I am trying to setup a new DNS server under Mandrake 7, to replace our
existing one currently running on Solaris 2.6.

So far as I can see I have done everything correctly.  When I try to
ping a node using the new domain name & server (via resolv.conf) it
works as expected.  However, nslookup returns the following error:

*** Can't find server name for address 10.132.112.245: No response from
server
*** Default servers are not available

(I have never used bind 8 before).  What would be causing this?

Brian.
--
---
Brian Schroeder  |
 ,-_|\   [EMAIL PROTECTED]   |
/ \  Origin Energy Resources Ltd |Anyone can hate,
\_,-*_/  Adelaide Australia  |  but it costs to love.
 v   GPO Box 2576 Adelaide 5001  |
PH +61 8 8217 5782   |
---




Re: [expert] OT DNS Server and nslookup Problems

2000-05-05 Thread Chuck Burkins

On 5 May 00, at 13:09, Brian Schroeder wrote:

> I am trying to setup a new DNS server under Mandrake 7, to replace our
> existing one currently running on Solaris 2.6.
> 
> So far as I can see I have done everything correctly.  When I try to
> ping a node using the new domain name & server (via resolv.conf) it
> works as expected.  However, nslookup returns the following error:

are you running 'nslookup - localhost' or 
'nslookup - your.boxes.ip.address' to test it?

Or are you testing by using another box pointing at your mandrake box 
for dns?

> 
> *** Can't find server name for address 10.132.112.245: No response
> from server *** Default servers are not available

I assume since you are replacing a solaris box, your upstream 
provider has already got your reverse dns mapped?

> 
> (I have never used bind 8 before).  What would be causing this?
Oh, a semicolon or curly bracket out of place . Seriously, I 
find that the syntax for bind is pretty unforgiving, but Mandrake 
stuffs some error information into the system log. Check and see 
which zone is getting rejected.

-Chuck Burkins

--
Chuck Burkins
[EMAIL PROTECTED]

Error Message Haiku:

Serious error.
All shortcuts have disappeared. 
Screen. Mind. Both are blank.