Reputation: 397
I'm trying to build up a Kerberos Server on a Debian computer but I'm kind of lost with all the configuration files. Can anyone tell me any good step by step tutorial of how to install and configure a kerberos Server? Or what's the best distriburion where I can install Kerberos?
Upvotes: 1
Views: 7473
Reputation: 3887
Debian's packages try to do most of the configuration for you. There is a full transcript of a Kerberos KDC installation in the openafs-client package (as the first part of a full installation transcript of OpenAFS), but the basic steps are:
apt-get install krb5-admin-server
krb5_newrealm
. You'll be prompted for a master key password. Enter a really good password and record it somewhere secure.That's all there is to it. You have a realm set up. To add principals to your realm, run kadmin.local
. You'll probably want to create a principal you use for administrative actions (<username>/admin
is the convention), and then add it to /etc/krb5kdc/kadmin.acl with full access:
<username>/admin@<realm> *
where <username>/admin
is the admin principal you chose and <realm>
is the name of the realm you chose as above.
Upvotes: 3