Unbound forward zones de subdomínios se sobrepõem

1

Eu tenho um subdomínio (imap) que é acessível a partir de uma rede externa e tenho alguns subdomínios (unidade de arquivo) que são acessíveis somente a partir da rede interna. Eu não tenho acesso ao servidor de DNS da universidade. Eu tentei usar o servidor DNS diferente para alguns subdomínios, mas isso não funcionou.

Eu quero para imap.example.com. o dns-server 8.8.8.8 e somente para o resto do domínio example.com o dns-server 192.168.1.15.

Eu tentei o seguinte no unbound.conf:

server:
  use-syslog: yes
  username: "unbound"
  directory: "/etc/unbound"
  trust-anchor-file: trusted-key.key
  root-hints: "/etc/unbound/root.hints"
forward-zone:
  name: "imap.example.com."
  forward-addr: 8.8.8.8
forward-zone:
  name: "example.com."
  forward-addr: 192.168.1.15
forward-zone:
  name: "."
  forward-addr: 8.8.8.8 
remote-control:
    # Enable remote control with unbound-control(8) here.
    # set up the keys and certificates with unbound-control-setup.
    control-enable: yes

    # what interfaces are listened to for remote control.
    # give 0.0.0.0 and ::0 to listen to all interfaces.
    control-interface: 127.0.0.1

    # port number for remote control operations.
    control-port: 8953

    # unbound server key file.
    server-key-file: "/etc/unbound/unbound_server.key"

    # unbound server certificate file.
    server-cert-file: "/etc/unbound/unbound_server.pem"

    # unbound-control key file.
    control-key-file: "/etc/unbound/unbound_control.key"

    # unbound-control certificate file.
    control-cert-file: "/etc/unbound/unbound_control.pem"
    
por Charlie 04.05.2018 / 18:56

0 respostas