Tuesday, December 6, 2016

Setting DNS update Desember 2016

named.conf.local

zone "cloudgng.com" {
        type master;
        file "/etc/bind/db.cloudgng.local-fwd";
};

zone "1.168.192.in-addr.arpa" {
        type master;
        file "/etc/bind/db.cloudgng.local-rev";
};

zone "." IN {
        type forward;
        forwarders { 192.168.1.61; 192.168.1.1; };
};

# zona lainnya

    zone "localhost" {
        type master;
        file "/etc/bind/db.local";
    };

    zone "127.in-addr.arpa" {
        type master;
        file "/etc/bind/db.127";
    };

    zone "0.in-addr.arpa" {
        type master;
        file "/etc/bind/db.0";
    };

    zone "255.in-addr.arpa" {
        type master;
        file "/etc/bind/db.255";
    };

named.conf.options

dnssec-enable no;
dnssec-validation no;
dnssec-lookaside auto;

        auth-nxdomain no;    # conform to RFC1035
        listen-on-v6 { none; };
};

db.cloudgng.local-fwd

; BIND data file for zone "cloudgng.local" [via] Internal view forward
;

$TTL    604800
@       IN      SOA     ns1.cloudgng.  root.cloudgng. (
                         2016112900     ; Serial
                             604800         ; Refresh
                              86400          ; Retry
                            2419200        ; Expire
                             604800 )       ; Negative Cache TTL
;
@               IN      NS          ns1.cloudgng.
@               IN      A           192.168.1.61


;ip vm

ubuntu60        IN      A       192.168.1.60
ubuntu61        IN      A       192.168.1.61
ubuntu62        IN      A       192.168.1.62
ns1             IN      A       192.168.1.61

db.cloudgng.local-rev

; BIND data file for REVERSE zone "1.168.192.in-addr.arpa"
;

$TTL    604800
@       IN      SOA     ns1.cloudgng.   ubuntu61.cloudgng. (
                         2016112900         ; Serial
                             604800             ; Refresh
                              86400              ; Retry
                            2419200            ; Expire
                             604800 )           ; Negative Cache TTL

@       IN      NS      ns1.cloudgng.

;PTR VM
60       IN      PTR     ubuntu60.
61       IN      PTR     ubuntu61.
62       IN      PTR     ubuntu62.
61       IN      PTR     ns1.

No comments:

Post a Comment

have a question, just spill it :D