BIND error

Discussion in 'Server Operation' started by Nelox, Feb 5, 2015.

  1. Nelox

    Nelox New Member

    Hey i need help with this error, i dont know how to fix...

    Code:
    dns_rdata_fromtext: /etc/named/directo.hostix:8: near eol: unexpected end of inpu
    dns_master_load: /etc/named/directo.hostix:15: beta.hostixprovider.tk.hostixprovi
    zone hostixprovider.tk/IN: loading from master file /etc/named/directo.hostix fai
    zone hostixprovider.tk/IN: not loaded due to errors.                            
    _default/hostixprovider.tk/IN: unexpected end of input                          
    zone localhost.localdomain/IN: loaded serial 0                                  
    zone localhost/IN: loaded serial 0
    zone 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa/IN:
    zone 1.0.0.127.in-addr.arpa/IN: loaded serial 0
    zone 0.in-addr.arpa/IN: loaded serial 0
    Directo:
    Code:
    $TTL 172800     ;2 days
    $ORIGIN hostixprovider.tk
    @       IN      SOA     charlie.hostixprovider.tk. (
            20150302
            7200
            900
            1857600
            8400
    )
    
    @       IN      NS      charlie.hostixprovider.tk.
    @       IN      NS      alfa.hostixprovider.tk.
    @       IN      NS      beta.hostixprovider.tk.
    beta    IN      A       192.168.59.126
    beta    IN      CNAME   www
    charlie IN      A       192.168.59.124
    alfa    IN      A       192.168.59.125
    
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    Dont add a A and cname record for the same subdomain:

    beta IN A 192.168.59.126
    beta IN CNAME www

    and there is no www subdomain, so this cnae wont work anyway. maybe you men:

    www IN CNAME beta

    which would make more sense.
     

Share This Page