Galois fermat wrote:
> I have set up a dns server with the firewall (linux 2.0.30)
>
> I am usinf bind-8-1-1
This probably isn't related to this problem, but the named from
BIND-8.* doesn't (by default) use port 53 for outgoing queries. It
uses an ephemeral port, which may not work from behind a firewall. You
need to use the query-source option to specify the port which is used
for outbound queries e.g.
options {
query-source address * port 53;
};
> my named.conf file
> ----------------------------------------------------------------------
> options
> {
> directory "/var/named"
> listen-on{xx.xx.xx.1;}
> };
There should be a semicolon at the end of each line.
> I try to query the dns by using 2 way. Only one way succeed
>
> 1st way (succeed)
>
> # nslookup
> > server xx.xx.xx.1
> > set type=any
> > abc.com.au.
>
> 2nd way (failed)
> nslookup -q=any abc.com.au xx.xx.xx.1
These should be identical, apart from the fact that the second
approach is missing a dot. This may or may not be significant.
--
Glynn Clements <[EMAIL PROTECTED]>
-
To unsubscribe from this list: send the line "unsubscribe linux-net" in
the body of a message to [EMAIL PROTECTED]