Que tal lista,

Estoy tratando de poner mi servidor dhcp a actualizar mis zonas DNS, y el error arrojados por el dhcp cuando intenta agregar el registro en la zona es:

May  8 18:20:11 localhost dhcpd: unable to add reverse map from 14.70.197.172..in-addr.arpa. to jesusdiaz.jmv.local: ran out of space

mi archivo de configuracion del dhcp es dhcpd.conf:

ddns-updates on;
ddns-update-style interim;
ddns-domainname "prueba.ind.";
ddns-rev-domainname ".in-addr.arpa.";
key DHCP_UPDATER {
         algorithm HMAC-MD5.SIG-ALG.REG.INT;
         secret el4GnFF9hnjiv64VsIsLtA==;
};
option domain-name "prueba.ind";
option domain-name-servers 172.197.70.1;
default-lease-time 60;
max-lease-time 72;
authoritative;
log-facility local7;
subnet 172.197.0.0 netmask 255.255.0.0 {
       option routers 172.197.25.1;
       lease-file-name "/var/lib/dhcp/dhcpd.leases";
pool {
      max-lease-time 28800;
      range 172.197.70.10 172.197.70.15;
      zone pruebas.ind. {primary 127.0.0.1; key DHCP_UPDATER;}
      zone 70.197.172.in-addr.arpa. {primary 127.0.0.1; key DHCP_UPDATER;}
      }
}

Asi estan declaradas mis zonas en el DNS named.conf.local

key DHCP_UPDATER {
         algorithm HMAC-MD5.SIG-ALG.REG.INT;
         secret el4GnFF9hnjiv64VsIsLtA==;
};
zone "prueba.ind." {
        type master;
        file "/etc/bind/db.prueba";
        allow-update { key DHCP_UPDATER;};
};
zone "70.197.172.in-addr.arpa." {
        type master;
        file "/etc/bind/db.172";
        allow-update { key DHCP_UPDATER;};
};

gracias de antemano

_________________________________
      ****
   **       *
  **     * *
    **
       *  
Carlos Palacios
Linux User# 395648
GPG Key Fingerprint = Key fingerprint = ED3C 6EA3 4985 6BCD 1A40  FD19 A5B2 16E2 6778 4D4E
Esp. en Telecomunicaciones
Asistente de telematica
http://sos.homelinux.org
Movil: 04141959148
Ofc: 4096314  

Responder a