SUSE Linux Enterprise 12  

 
Định cấu hình Máy chủ DNS phụ.
Ví dụ sau đây cho thấy môi trường mà DNS chính là "dlp.srv.world", DNS phụ là "ns.example.host".
[1] Định cấu hình máy chủ DNS chính.
dlp:~ #
vi /etc/named.conf
# add an IP address of slave DNS server

allow-transfer { localhost;
172.16.0.85;
};
dlp:~ #
vi /var/lib/named/srv.world.wan
$TTL 86400
@   IN  SOA     dlp.srv.world. root.srv.world. (
# update serial

        2015112103  ;Serial
        3600        ;Refresh
        1800        ;Retry
        604800      ;Expire
        86400       ;Minimum TTL
)
        IN  NS      dlp.srv.world.
# add Slave server

        IN  NS      ns.example.host.
        IN  A       172.16.0.82
        IN  MX 10   dlp.srv.world.

dlp     IN  A       172.16.0.82

dlp:~ #
systemctl restart named

[2] Định cấu hình máy chủ DNS phụ.
ns:~ #
vi /etc/named.conf
# add lines like follows

    zone "srv.world" IN {
        type slave;
        masters { 172.16.0.82; };
        file "slave/srv.world.wan";
        notify no;
    };

ns:~ #
systemctl restart named

ns:~ #
ls /var/lib/named/slave

srv.world.wan    
# zone file from Master server has been transfered