Configuring Heimdal
Config files
/etc/heimdal/*
Configuration Information
Create the Kerberos configuration file with the following command:
cat > /etc/heimdal/krb5.conf << "EOF"
# Begin /etc/heimdal/krb5.conf
[libdefaults]
default_realm = LFS.ORG
encrypt = true
[realms]
LFS.ORG = {
kdc = belgarath.lfs.org
admin_server = belgarath.lfs.org
}
[domain_realm]
.lfs.org = LFS.ORG
[logging]
kdc = FILE:/var/log/kdc.log
admin_server = FILE:/var/log/kadmin.log
default = FILE:/var/log/krb.log
# End /etc/heimdal/krb5.conf
EOF
You will need to substitute your domain and proper hostname for the
occurances of the belgarath and lfs.org names.
default_realm should be the name of your domain changed to ALL CAPS.
This isn't required, but both Heimdal and MIT
recommend it.
encrypt = true provides encryption of all traffic between kerberized
clients and servers. It's not necessary and can be left off. If you
leave it off, you can encrypt all traffic from the client to the server
using a switch on the client program instead.
The [realms] parameters tell the client programs where to look for the
KDC authentication services.
The [domain_realm] section maps a domain to a realm.
Store the master password in a key file using the following commands:
install -d -m 755 /var/lib/heimdal &&
kstash
Create the KDC database:
kadmin -l
Choose the defaults for now. You can go in later and change the
defaults, should you feel the need. At the
kadmin> prompt, issue the following statement:
init LFS.ORG
Now we need to populate the database with principles (users). For now,
just use your regular login name or root.
add loginname
The KDC server and any machine running kerberized
server daemons must have a host key installed:
add --random-key host/belgarath.lfs.org
After choosing the defaults when prompted, you will have to export the
data to a keytab file:
ext host/belgarath.lfs.org
This should have created two files in
/etc/heimdal;
krb5.keytab (Kerberos 5) and
srvtab (Kerberos 4). Both files should have 600
(root rw only) permissions. Keeping the keytab files from public access
is crucial to the overall security of the Kerberos installation.
Eventually, you'll want to add server daemon principles to the database
and extract them to the keytab file. You do this in the same way you
created the host principles. Below is an example:
add --random-key ftp/belgarath.lfs.org
(choose the defaults)
ext ftp/belgarath.lfs.org
Exit the kadmin program (use quit
or exit) and return back to the shell prompt. Start
the KDC daemon manually, just to test out the
installation:
/usr/sbin/kdc &
Attempt to get a ticket with the following command:
kinit loginname
You will be prompted for the password you created. After you get your
ticket, you can list it with the following command:
klist
Information about the ticket should be displayed on the screen.
To test the functionality of the keytab file, issue the following
command:
ktutil list
This should dump a list of the host principal, along with the encryption
methods used to access the principal.
At this point, if everything has been successful so far, you can feel
fairly confident in the installation and configuration of the package.
Install /etc/rc.d/init.d/heimdal init script
included in the
package.
make install-heimdal