Mr Ed sorry to bother you, can you help me to analyze my dns script using
bind.
what should i do to correct the problem, because i try netstat -n and server
can response quickly.
above my script, please help meee

bind.conf
// generated by named-bootconf.pl

options {
 directory "/var/named";
 /*
  * 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;
};

//
// a caching only nameserver config
//
zone "." IN {
 type hint;
 file "named.ca";
};

zone "localhost" IN {
 type master;
 file "localhost.zone";
 allow-update { none; };
};

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

zone "domain.com" IN {
        type master;
        file "domain.com.zone";
        allow-update { none; };
};

zone "domain.co.id" IN {
        type master;
        file "domain.co.id.zone";
        allow-update { none; };
};

key "key" {
 algorithm hmac-md5;
        secret
"kXliVemuPvkQvTavosVZzOEJcwvi0IoZvqkWzeTMHPSfMHwEzcTZ0fruanHL";
};

domain.com.zone
$TTL 86400
$ORIGIN  domain.com.
@      IN        SOA      domain.com. hostmaster.domain.com. (
                                   2003013003 ; Serial
                                   28800      ; Refresh
                                   14400      ; Retry
                                   3600000    ; Expire
                                   86400 )    ; Minimum
           IN    NS      mail
           IN    MX 10   mail
mail       IN    A       ip

domain.co.id.zone
$TTL 86400
$ORIGIN  domain.co.id.
@      IN        SOA      domain.co.id. hostmaster.domain.co.id. (
                                   2003013003 ; Serial
                                   28800      ; Refresh
                                   14400      ; Retry
                                   3600000    ; Expire
                                   86400 )    ; Minimum
           IN    NS      mail
           IN    MX 10   mail
mail       IN    A       ip



----- Original Message -----
From: "Ed Greshko" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, August 11, 2003 2:41 PM
Subject: Re: Help smtp in qmail

> When the problem happens try "netstat -n".  I suspect that it will
> respond quickly.  This will confirm my suspicion that you have a DNS
> problem.  i.e. Your DNS servers are responding slowly.
>
> Ed
> >
> --
> http://www.shorewall.net       Shorewall, for all your firewall needs
>
>
> --
> redhat-list mailing list
> unsubscribe mailto:[EMAIL PROTECTED]
> https://www.redhat.com/mailman/listinfo/redhat-list
>


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list

Reply via email to