Erro (rede inacessível) resolvendo './DNSKEY/IN': 2001: 7fd :: 1 # 53

2

Eu estava tentando instalar o servidor dhcp3 no servidor de 32 bits Ubuntu 12.04 (Precise Pangolin). O servidor dhcp3 está instalado, mas não consegue encontrar o arquivo dhcp3.conf na pasta /etc/dhcp3 .

Eu usei o comando

tail -f /var/log/syslog

que exibe esta mensagem:

Sep 25 08:23:05 ubuntu AptDaemon: INFO: Quitting was requested
Sep 25 08:24:46 ubuntu named[1195]: error (network unreachable) resolving './DNSKEY/IN': 2001:7fd::1#53
Sep 25 08:24:46 ubuntu named[1195]: error (network unreachable) resolving './NS/IN': 2001:7fd::1#53
Sep 25 08:24:46 ubuntu named[1195]: error (network unreachable) resolving './DNSKEY/IN': 2001:500:2f::f#53
Sep 25 08:24:46 ubuntu named[1195]: error (network unreachable) resolving './NS/IN': 2001:500:2f::f#53
Sep 25 08:24:46 ubuntu named[1195]: error (network unreachable) resolving './DNSKEY/IN': 2001:500:3::42#53
Sep 25 08:32:51 ubuntu NetworkManager[1097]: <info> Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
Sep 25 08:32:51 ubuntu NetworkManager[1097]: <info> Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
Sep 25 08:35:03 ubuntu kernel: [ 1213.485377] type=1400 audit(1380078303.264:33): apparmor="DENIED" operation="capable" parent=1 profile="/usr/sbin/cupsd" pid=820 comm="cupsd" pid=820 comm="cupsd" capability=36  capname="block_suspend"
Sep 25 08:39:01 ubuntu CRON[2785]: (root) CMD (  [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -depth -mindepth 1 -maxdepth 1 -type f -cmin +$(/usr/lib/php5/maxlifetime) ! -execdir fuser -s {} 2>/dev/null \; -delete)

Como resolvo este problema?

    
por B Bishnu 25.09.2013 / 05:19

2 respostas

1

Edite o arquivo /etc/default/bind9 :

# run resolvconf?
RESOLVCONF=yes
# startup options for the server
OPTIONS="-4 -u bind"
    
por Safuwan 14.01.2015 / 11:02
1

Edite /etc/default/bind9 como na resposta acima.

Em seguida, reinicie o serviço bind9:

# service bind9 restart
    
por harryhendo 30.04.2015 / 00:33