Operating System - HP-UX
1833875 Members
1554 Online
110063 Solutions
New Discussion

upgrade the BIND from 8.1.2. to 9.2.0

 
SOLVED
Go to solution
j773303
Super Advisor

upgrade the BIND from 8.1.2. to 9.2.0

Today I upgrade the BIND from 8.1.2. to 9.2.0 . Now I got the lots of message in the syslog.log. Please help me to verify this message. Thanks.


Jun 29 17:51:36 ns1 named[25971]: client 120.130.33.17#3434: updating zone 'stone.com.tw/IN': update failed: 'RRset exists (value dependent)' prerequisite not satisfied (NXRRSET)
Jun 29 17:51:36 ns1 named[25971]: client 120.130.33.17#3437: update 'stone.com.tw/IN' denied


Jun 29 17:52:40 ns1 named[22404]: lame server resolving 'conmart.co.tl' (in 'co.tl'?): 113.155.150.208#53
Jun 29 17:52:43 ns1 named[22404]: lame server resolving '187.111.229.203.in-addr.arpa' (in '111.229.203.in-addr.arpa'?): 203.238.128.24#53
Jun 29 17:52:43 ns1 named[22404]: lame server resolving '187.111.229.203.in-addr.arpa' (in '111.229.203.in-addr.arpa'?): 103.238.128.22#53
Jun 29 17:52:46 ns1 named[22404]: lame server resolving 'conmart.co.tl' (in 'co.tl'?): 163.209.15.208#53

Hero
5 REPLIES 5
Bejoy C Alias
Respected Contributor
Solution

Re: upgrade the BIND from 8.1.2. to 9.2.0

First message indicates that the client 120.130.33.17 is trying to do a dynamic update to the zone stone.com.tw and failed because a rr record already exists or the client is not allowed to do a dyanamic update . Is this client is in ur network ? . R u using dynamic updates for ur dns server ?

The second message ( lame server resolving ) indicates that named has learned from a
nameserver that a particular domain is served by a particular
nameserver. When asked, however, that nameserver denies all
knowledge of the particular domain. This means that the server is not an authoritive server for the domain 'conmart.co.tl' .
Be Always Joy ......
j773303
Super Advisor

Re: upgrade the BIND from 8.1.2. to 9.2.0

Does it an error message such as "lame server resolving" ? thanks in advanced.
Hero
Bejoy C Alias
Respected Contributor

Re: upgrade the BIND from 8.1.2. to 9.2.0

No. it is not considered as an err message, its just a warning.
Be Always Joy ......
j773303
Super Advisor

Re: upgrade the BIND from 8.1.2. to 9.2.0

Is it possbile let syslog.log don't such ttat message ? Thanks in advanced.
Hero
Bejoy C Alias
Respected Contributor

Re: upgrade the BIND from 8.1.2. to 9.2.0

U can use the logging option in named.conf to discard the lame server messages . Add the following to the named.conf file .
logging {
category lame-servers {
null;
};
};

This will log the messages of category lame-servers to the channel null , which will actually log that messages nowhere.
Be Always Joy ......