-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On Friday 28 December 2001 11:20 pm, daniel wrote:

> so when i type "/usr/sbin/rndc start"
> i get the following message:
>
> "rndc: get key definition: not found"
>
> what's the deal?
> how do i get a "key definition"?

You need to configure the server accept rndc requests.

[root@tuxfan root]# cat /etc/rndc.conf
[snip]
options {
        default-server  localhost;
        default-key     "key";
};

server localhost {
        key     "key";
};

key "key" {
        algorithm       hmac-md5;
        secret "your secret key here";
};

[root@tuxfan root]# cat /etc/named.conf
[snip]
controls {
        inet 127.0.0.1 allow { localhost; } keys {"key"; };
};
key "key" {
        algorithm hmac-md5;
        secret "Your matching secret key here";
};

See file:///usr/share/doc/bind-9.1.0/arm/Bv9ARM.ch03.html
section 3.4.1.2. Administrative Tools
Should get you started.

Hope that helps,

- -D

- -- 

pgp key:  http://www.tuxfan.homeip.net:8080/pgpkey.txt

- --
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE8LUj2eMAUbzJhSVcRAl+cAJwNIIUYlGTDOifAqqey69ScfjDhygCfbCz+
nmtI6SWSu8CqEk+8o220010=
=G8Nc
-----END PGP SIGNATURE-----



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to