RHEL login guide (challenge response)


1 Introduction

This guide covers how to secure a local Linux login using the HMAC-SHA1 challenge-response feature on YubiKeys. This does not work with remote logins via SSH or other methods. The commands in the guide are for a Red Hat Enterprise Linux (or RHEL based distribution such as CentOS or Fedora) system, but the instructions can be adapted for any distribution of Linux.

 

2 Installing the required software

  1. Download the following packages from the EPEL repository to your home folder: pam_yubico, ykclient, and ykpers
  2. Open Terminal
  3. Run the following command:
    sudo rpm -i ykclient*.rpm ykpers*.rpm pam_yubico*.rpm
    manual-icon.svg Note: You may also need to install the libyubikey package, depending on which distribution you are using

3 Configuring the YubiKey

bulb-light-icon.svg Tip: This section can be skipped if you already have a challenge-response credential stored in slot 2 on your YubiKey, such as one made for Yubico Login for Windows.
  1. Open Terminal
  2. Insert your YubiKey
  3. Run the following command:
    ykpersonalize -2 -ochal-resp -ochal-hmac -ohmac-lt64 -oserial-api-visible
  4. Press Y and then Enter to confirm the configuration.

Repeat these steps for any additional YubiKeys you want associated with your account.

bulb-light-icon.svg Tip: Setting up additional YubiKeys is strongly recommended so that if your YubiKey is lost or broken you are not locked out of your computer.

4 Associating the YubiKey(s) with your account

  1. Open Terminal
  2. Insert your YubiKey
  3. Run the following command:
    ykpamcfg -2
  4. If your key's challenge-response credential was configured to require touch, your YubiKey will begin flashing, indicating that you should touch its sensor to complete the challenge.

If successful, you will see an output such as Stored initial challenge and expected response in '/home/<USER>/.yubico/challenge-<SERIAL>' where <USER> is your username and <SERIAL> is the serial number printed on the YubiKey. 

If you have backup YubiKeys, repeat the steps above to associate them with your account. If you do not have a backup device available at this time, you can add one later using the same steps as long as you still have access to your account.

bulb-light-icon.svg Tip: Having a backup YubiKey is strongly recommended so that if your device is lost or broken, you will not be locked out of your computer.

5 Configuring the system to use the YubiKey(s)

5.1 Test configuration with the sudo command

This section covers how to require the YubiKey when using the sudo command, which should be done as a test so that you do not lock yourself out of your computer.

  1. Open Terminal
  2. Run the following command:
    sudo nano /etc/pam.d/sudo
  3. Add the following line above the auth include system-auth line.
auth       required   pam_yubico.so mode=challenge-response
  1. Press Ctrl+O and then Enter to save the file. Be sure you do not close the Terminal window, otherwise you will not be able to revert the changes.
  2. Remove your YubiKey from the computer
  3. Open a new Terminal window
  4. In the new Terminal window, run the following command:
    sudo echo test
    When prompted, enter your password and press Enter
    1. Even with the correct password, the authentication should fail as the YubiKey is not plugged in. If the authentication succeeds without the YubiKey, that indicates the Yubico PAM module was not installed or there is a typo in the changes you made to /etc/pam.d/sudo
  5. Insert your YubiKey
  6. Open a new Terminal window and run the following command again:
    sudo echo test
    When prompted, enter your password and press Enter. If your key's challenge-response credential was configured to require touch, your YubiKey will begin flashing, indicating that you should touch its sensor.

If the password was accepted this time, you have configured the YubiKey and system correctly and can continue on to the next section for requiring the YubiKey to login.

bulb-light-icon.svg Tip: If you do not want to require the YubiKey to run the sudo command, remove the line you added to the /etc/pam.d/sudo file.

5.2 Configuring the system to require the YubiKey for login

  1. Open Terminal
  2. Run the following command:
    sudo nano /etc/pam.d/gdm-password
  3. Add the following line above the auth substack password-auth line.
auth       required   pam_yubico.so mode=challenge-response
  1. Press Ctrl+X and then Enter to save and close the file

You will no longer be able to log in to the computer without the YubiKey.

6 Alternate configurations

6.1 Login with YubiKey only (single-factor authentication)

If you would prefer to not require a password for login or running sudo, you can use

auth sufficient

rather than

auth required 

in the configuration files.

7 Troubleshooting

7.1 Running ykpamcfg -2 fails

If you see the File … already exists, refusing to overwrite error when running ykpamcfg -2, this indicates you have already associated this YubiKey with your account. If you want to clear the existing association to start again, you can run the command below in Terminal, where <SERIAL> is the serial of the YubiKey:

rm ~/.yubico/challenge-<SERIAL>

7.2 Enabling debug mode

If you are unable to login and are unsure why, you can enable debugging on the Yubico PAM module using the steps below. This provides insight into why the module is not allowing the login.

    1. Open Terminal
    2. Run the following command:
      sudo touch /var/log/pam_yubico.log
    3. Run the following command:
      sudo nano /etc/pam.d/gdm-password
    4. Add the following to the end of the line that contains pam_yubico.so
      debug debug_file=/var/log/pam_yubico.log

Each subsequent login event will have the debug log saved in the /var/log/pam_yubico.log file.