mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
base64-ify the secrets in the test config files.
This commit is contained in:
parent
3bed75bb2d
commit
36b8b0b251
2 changed files with 7 additions and 7 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: named.conf,v 1.48 2001/01/11 20:04:12 gson Exp $ */
|
||||
/* $Id: named.conf,v 1.49 2001/01/24 15:17:35 brister Exp $ */
|
||||
|
||||
/*
|
||||
* This is a worthless, nonrunnable example of a named.conf file that has
|
||||
|
|
@ -259,10 +259,10 @@ zone "slave.demo.zone" {
|
|||
forwarders { 10.45.45.45; 10.0.0.3; 1:2:3:4:5:6:7:8; };
|
||||
};
|
||||
|
||||
key "non-viewkey" { secret "aaa" ; algorithm "zzz" ; };
|
||||
key "non-viewkey" { secret "YWFh" ; algorithm "zzz" ; };
|
||||
|
||||
view "test-view" in {
|
||||
key "viewkey" { algorithm "xxx" ; secret "yyy" ; };
|
||||
key "viewkey" { algorithm "xxx" ; secret "eXl5" ; };
|
||||
also-notify { 10.2.2.3; };
|
||||
trusted-keys {
|
||||
foo.com. 4 3 2 "abdefghijklmnopqrstuvwxyz";
|
||||
|
|
@ -402,12 +402,12 @@ zone "non-default-acl.demo.zone" {
|
|||
|
||||
key sample_key { // for TSIG; supported by parser
|
||||
algorithm hmac-md5; // but not yet implemented in the
|
||||
secret "your secret here"; // rest of the server
|
||||
secret "eW91ciBzZWNyZXQgaGVyZQ=="; // rest of the server
|
||||
};
|
||||
|
||||
key key2 {
|
||||
algorithm hmac-md5;
|
||||
secret "ereh terces rouy";
|
||||
secret "ZXJlaCB0ZXJjZXMgcm91eQ==";
|
||||
};
|
||||
|
||||
acl key_acl { key sample_key; }; // a request signed with sample_key
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: ndc.conf,v 1.7 2001/01/23 13:13:29 brister Exp $ */
|
||||
/* $Id: ndc.conf,v 1.8 2001/01/24 15:17:36 brister Exp $ */
|
||||
|
||||
options {
|
||||
default-server "velo.jab.fr" ;
|
||||
|
|
@ -31,6 +31,6 @@ include "ndc.conf-include";
|
|||
|
||||
key "akey" {
|
||||
algorithm "algo";
|
||||
secret "sec";
|
||||
secret "c2Vj";
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue