* OpenIMSCore * Falha ao reiniciar bind9 na etapa de instalação

-1

Eu tenho problema em instalar o OpenIMSCore. Eu uso o Ubuntu no VM Machine e segui os seguintes posts para instalar o OpenIMSCore Instalando um coração de rede IMS . Eu passei por todos os primeiros passos e agora fiquei preso na etapa de configuração do DNS. Eu sigo as instruções:

**An example of a DNS zone file is present in the installation directory openIMS. Copy it into your DNS configuration directory: ser_ims cp / cfg / open-ims.dnszone / etc / bind /

Edit named.conf.local (still in / etc / bind /) to reflect this new zone (add the following lines): area "open-ims.test" {type master; file "/etc/bind/open-ims.dnszone";};

Check that the named.conf to do well call this file. For this, the following line must be present in the named.conf: include "/etc/bind/named.conf.local"; Add it if it does not.

Edit the file /etc/resolv.conf, delete (or comment on) the existing content and add the following lines: search ims.test open-domain open-ims.test nameserver 127.0.0.1

Note: At each reboot of the OS, this file will be overwritten by the Network Manager. So, make a backup of the file (we will use in our script automatically launch servers, we will see at the end of this tutorial): cp /etc/resolv.conf /etc/resolv.conf.ims

Edit the file / etc / hosts file and add the following lines: 127.0.0.1 localhost 127.0.0.1 open ims.test mobicents.open-ims.test ue.open ims.test presence.ope-n-ims.test icscf.open-ims.test scscf.open-ims.test pcscf. open-ims.test hss.open-ims.test

Warning: As before, make a backup of this file: cp / etc / hosts /etc/hosts.ims

Restart the DNS server: /etc/init.d/bind9 restart. Check that the configuration change has been taken into account (via dig): open-dig ims.test**

Mas quando eu reinicio o bind9, ele mostra o erro que eu não consigo reiniciar. Há alguém que tenha uma ideia de como passar por este passo?

Editar : Saídas de comandos dos comentários e named.conf :

$ pidof named
< no output >
$ sudo named-checkconf
/etc/bind/named.conf.local:9: unknown option 'area'
/etc/bind/named.conf:13: 'options' redefined near 'options'

named.conf.local :

area "open-ims.test" {
    type master;
    file "/etc/bind/open-ims.dnszone";
};

named.conf :

include "/etc/bind/named.conf.options"
include "/etc/bind/named.conf.local";
include "/etc/bind/named.conf.default-zones";
options {
    forward first;
    forwarders { {127.0.1.1;} ; };
};
zone "open-ims.test" IN {
    type master;
    file "etc/bind/open-ims.dnszone";
    notify no;
};
    
por Ock 01.02.2016 / 00:17

1 resposta

0

Você tem vários erros bind9 config aqui. Um por um vamos consertá-los.

unknown option 'area' :

area não é uma opção de configuração bind9 suportada. Esse é o maior problema, remova essa seção inteira em named.conf.local

'options' redefined near 'options' :

Em uma configuração do Ubuntu, a seção 'opções' está em /etc/bind/named.conf.options . Revise o arquivo de acordo e coloque os novos itens de configuração da seção 'options' nele, enquanto comenta o que já está lá. Em seguida, remova a seção 'options' em /etc/bind/named.conf.

Problema não detectado: zone 'open-ims.test' is redefined

O que o erro "área" acima indica é que você tentou criar uma zona. Em seguida, você cria a zona em /etc/bind/named.conf diretamente, em vez de em /etc/bind/named.conf.local , onde tentou fazer isso anteriormente. Pegue a configuração da seção zone que você adicionou a /etc/bind/named.conf diretamente e adicione-a em vez de /etc/bind/named.conf.local . Isso deve torná-lo uma zona válida.

Depois de resolver os erros acima ...

Agora faça o seguinte:

sudo named-checkconf

Se isso não resultar, reinicie o bind9 service ...

sudo service bind9 stop
sudo service bind9 start
    
por Thomas Ward 01.02.2016 / 13:38