ola povo

tenho dhcpd+bind atualizando meus hosts dinamicamente..

eu tenho um host que é fixo, especificando o MAC..

só esse host que não está sendo atualizado no reverso

ele estava atualizando, mas após consertar alguns erros, ele parou de atualizar
pois quando ele atualizava, o ip do servidor de dhcp ficava fora do reverso.. muito louco

$TTL 86400 ; 1 day
3 IN PTR SERVDHCP.xxx.br.
254.168.192.in-addr.arpa SOA ns1.xxx.br. root.xxx.br. (
155 ; serial
86400 ; refresh (1 day)
300 ; retry (5 minutes)
2592000 ; expire (4 weeks 2 days)
86400 ; minimum (1 day)
)
NS ns1.xxx.br.
$ORIGIN 254.168.192.in-addr.arpa.
$TTL 30000 ; 8 hours 20 minutes
30.254.168.192 PTR FIXO.xxx.br.
36 PTR a.xxx.br.
39 PTR b.xxx.br.
40 PTR c.xxx.br.
ele estava atualizando assim.. mas o servdhcp estava sem consulta no reverso..

agora minha configuração está assim:

server-identifier 192.168.254.3;
ddns-updates on;
ddns-update-style interim;
ddns-domainname "xxx.br";
ddns-rev-domainname "254.168.192.in-addr.arpa";
update-static-leases on;
deny client-updates;
allow unknown-clients;

host FIXO {
hardware ethernet 00:06:4F:05:B4:30;
fixed-address 192.168.254.30;
}
e nos logs..
update: info: client 192.168.254.3#35415: updating zone 'xxx.br/IN': update failed: 'name not in use' prerequisite not satisfied (YXDOMAIN)
update: info: client 192.168.254.3#35415: updating zone 'xxx.br/IN': deleting an rrset
update: info: client 192.168.254.3#35415: updating zone 'xxx.br/IN': adding an RR
update: info: client 192.168.254.3#35415: updating zone '254.168.192.in-addr.arpa/IN': deleting an rrset
update: info: client 192.168.254.3#35415: updating zone '254.168.192.in-addr.arpa/IN': adding an RR
update: info: client 192.168.254.3#35415: updating zone 'xxx.br/IN': update failed: 'name not in use' prerequisite not satisfied (YXDOMAIN)
update: info: client 192.168.254.3#35415: updating zone 'xxx.br/IN': deleting an rrset
update: info: client 192.168.254.3#35415: updating zone 'xxx.br/IN': adding an RR
update: info: client 192.168.254.3#35415: updating zone '254.168.192.in-addr.arpa/IN': deleting an rrset
update: info: client 192.168.254.3#35415: updating zone '254.168.192.in-addr.arpa/IN': adding an RR
esse host FIXO é xp e é o único que está com erro.. os outros xp dinamicos estão corretos

abraços