mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
These are either config file or zone file snippets. Their license is declared in REUSE.toml.
14 lines
245 B
Text
14 lines
245 B
Text
options {
|
|
default-key "rndc_key";
|
|
};
|
|
|
|
key rndc_key {
|
|
algorithm hmac-sha256;
|
|
secret "1234abcd8765";
|
|
};
|
|
|
|
/* Regresssion test for [GL #4991] */
|
|
server example.com {
|
|
key rndc-key;
|
|
addresses { localhost; 127.0.0.1; ::1; };
|
|
};
|