diff options
Diffstat (limited to 'bin/tests/system/rndc/ns2/named.conf')
-rw-r--r-- | bin/tests/system/rndc/ns2/named.conf | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/bin/tests/system/rndc/ns2/named.conf b/bin/tests/system/rndc/ns2/named.conf index fa2000aa..12d6f147 100644 --- a/bin/tests/system/rndc/ns2/named.conf +++ b/bin/tests/system/rndc/ns2/named.conf @@ -1,5 +1,5 @@ /* - * Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2011, 2012 Internet Systems Consortium, Inc. ("ISC") * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -32,8 +32,13 @@ key rndc_key { algorithm hmac-md5; }; +key secondkey { + secret "abcd1234abcd8765"; + algorithm hmac-md5; +}; + controls { - inet 10.53.0.2 port 9953 allow { any; } keys { rndc_key; }; + inet 10.53.0.2 port 9953 allow { any; } keys { rndc_key; secondkey; }; }; |