Kerberos User Notes


Introduction

Fermilab employs Kerberos to authenticate users who want to access computer systems at the lab. A user must have a valid kerberos ticket before he can login to a machine. Tickets can be obtained by using the kinit client application on the user's workstation, or the user may obtain a ticket during the login process by using a cryptocard. Tickets expire in 24 hours, but generally can be renewed before expiration for a period of 7 days. Only users who have current (unexpired) kerberos principals issued by Fermilab can obtain kerberos tickets.

Kerberos clients include telnet, ftp, rsh, rcp, rlogin, and, if specially built, ssh and slogin. All of these clients can encrypt communications.




Kerberos Client Software

An Example

Here is a sample session showing a typical kerberos dialog. djholm@FNAL.GOV is the kerberos principal. `which rlogin` is used to verify that the kerberized version of rlogin is used (the non-kerberized version will be rejected).

dalrott:~$ kinit -r 7d djholm@FNAL.GOV
Password for djholm@FNAL.GOV:

dalrott:~$ which rlogin
/usr/krb5/bin/rlogin

dalrott:~$ rlogin lqcd.fnal.gov
This rlogin session is using DES encryption for all data transmissions.

Red Hat Linux release 7.1 (Seawolf)
Kernel 2.4.19-perfctr on a 4-processor i686
.
.
.
lqcd:~$ 

Getting the software

Many UNIX systems already have kerberos installed. Use `which kinit` to see whether this software is already in your path. If not, check if /usr/krb5 or /usr/kerberos directories exist on your workstation - if so, add /usr/kerberos/bin (or the equivalent for krb5) to the front of your path.

On RedHat Linux systems, you will need to install the following RPM's (versions will vary):

You may also download kerberos software from Fermilab. Recently, "lite" versions of Linux (RedHat 7.x) and Windows clients have been made available. You can download the software by following this link. After untarring the Linux version, or unzipping the Windows version, follow the instructions which accompany the software.

If you are connecting from home via a firewall which uses NAT (network address translation), you'll need to use "addressless" tickets. The Fermilab version of kerberos will give you addressless tickets if you use the "-n" switch. Other versions of kerberos may use the "-A" switch. Check your man page for kinit or use "kinit --help" to see which switch is supported. With addressless tickets, unfortunately rsh/rcp/rlogin will not work when traversing a NAT. However, telnet and ssh/scp do work. The Fermilab "lite" version of kerberos for Windows supports addressless tickets. The "lite" version for Linux currently does not. An unofficial cut of the Linux "lite" version (use at your own risk) which does support the "-n" switch is available here.

If you have an older version of Linux, you can download a statically-linked version of the kerberos clients using this link. You will also need this krb5.conf file. See these instructions for installing and using this software.

If kerberos software is already installed on your system, you will need to modify the configuration file so that your machine knows how to contact the Fermilab key servers. If you will only access Fermilab via kerberos, install krb5.conf in /etc. If you are already using kerberos to access another site, for example, NCSA, you will need to modify your existing /etc/krb5.conf file as follows:

Usage Notes


Cryptocards

Cryptocards generate passwords which are only valid for a single use. If kerberos client software isn't available, using a cryptocard is the only other means of accessing Fermilab systems. These cards look like a calculator:

Two styles of cryptocard have been issued by Fermilab, and unfortunately their usage is different. The Computing Division has a good chapter in their kerberos documentation which explains how to use both types of cards.

Example

Here's a typical session with a cryptocard:

dalrott:~$ /usr/bin/telnet lqcd.fnal.gov
Trying 131.225.202.12...
Connected to dellquad2.fnal.gov.
Escape character is '^]'.


4.4 BSD UNIX (lqcd.fnal.gov) (26) Portal


Red Hat Linux release 7.1 (Seawolf)
Kernel 2.4.19-perfctr on a 4-processor i686

login: djholm
Press ENTER and compare this challenge to the one on your display: [00160613]
Enter the displayed response: a37ddb18

Fermi Linux 6.1.1 INSTALL for FermiStandAlone via NFS on Fri Jun  1 13:49:03 CDT 2001
                              NOTICE TO USERS

...

lqcd:~$ 

In this example, the telnet server on lqcd issued a cryptocard challenge. After turning on an old-style cryptocard and entering a valid pin, Fermilab is displayed. Hitting ENT displays a number which (almost always) matches the challenge. Hitting ENT again displays the response which must be typed at workstation. With the new-style cryptocards, the challenge is not displayed, only the response. For detailed instructions, see this link.

Notes