Bind uuendamine dhcp abil: Difference between revisions

From ICO wiki
Jump to navigationJump to search
(Created page with ' ==/etc/dhcp3/dhcpd.conf== <source lang="bash"> #include "/etc/bind/rndc.key"; key "rndc-key" { algorithm hmac-md5; secret "gYb4ju1sEbgpHm10wx…')
 
Line 1: Line 1:
==/etc/bind/named.conf.options==
<source lang="bash">
key "rndc-key" {
        algorithm hmac-md5;
        secret "gYb4ju1sEbgpHm10wxsofQ==";
};
controls {
        inet 127.0.0.1 allow {localhost; } keys { "rndc-key"; };
};
</source>


==/etc/dhcp3/dhcpd.conf==
==/etc/dhcp3/dhcpd.conf==

Revision as of 17:55, 23 March 2011

/etc/bind/named.conf.options

key "rndc-key" {
        algorithm hmac-md5;
        secret "gYb4ju1sEbgpHm10wxsofQ==";
};

controls {
        inet 127.0.0.1 allow {localhost; } keys { "rndc-key"; };
};

/etc/dhcp3/dhcpd.conf

#include                     "/etc/bind/rndc.key";
key "rndc-key" {
        algorithm hmac-md5;
        secret "gYb4ju1sEbgpHm10wxsofQ==";
};
#ddns-update-style none;
ddns-update-style interim;

zone ketas.ee. {
        primary 127.0.0.1;
        key "rndc-key"; 
}
zone 8.168.192.in-addr.arpa {
        primary 127.0.0.1;
        key "rndc-key";
}