Secure your logins with two-factor authentication
Secure Remote Access
There's no dearth of tricks to harden an SSH connection. For example, you can change its default port and restrict access by IP addresses. The most commonly suggested mechanism is to switch to key-based authentication instead of passwords, but this still presents a single point of failure. To make it more difficult for an attacker to compromise an SSH connection, you can also enable two-factor authentication for remote logins (Figure 6).
The procedure for adding OTP-based logins to an SSH connection is similar to the one for local logins. The only difference is that you need to install and setup the Google Authenticator PAM module on the remote SSH machine instead of the local machine. Begin by SSHing into the remote server as the user you wish to protect such as ssh bodhi@remote-machine
.
Now open another SSH connection to the machine and use this second connection to make changes to SSH's configuration. When you restart the SSH service on the remote machine, it won't close open connections. So the first connection acts as a fail-safe and ensures you won't lock yourself out in case of any accidental misconfiguration.
After you've logged into the remote machine, follow the steps described earlier to first install the Google Authenticator PAM module and then use the helper script to generate the 16 digit key for the remote user. Then add the details of this remote SSH user in the Google Authenticator mobile app.
Next, you can edit SSH's PAM configuration file on this remote machine with nano /etc/pam.d/sshd
. Scroll down to the bottom and add the following lines to the file:
# Secure SSH with OTPs auth required pam_google_authenticator.so nullok
Just like earlier, nullok
tells PAM that this authentication method is optional. This allows users without a Google Authenticator key to still log in using their SSH password. Remember that this is just a fail safe to prevent you from being locked out in case something goes wrong with the setup process. However, once you've tested it successfully, generate a key for all SSH users and delete nullok
from the end of this line to make logins via OTP mandatory.
After editing SSH's PAM file, it's time to configure SSH to support this kind of authentication. Open the SSH configuration file for editing with:
nano /etc/ssh/sshd_config
Look for the line that reads ChallengeResponseAuthentication
and change its value from no to yes. If the line doesn't exist, make sure you add it manually. Save and close the file, and then restart SSH to reload the configuration files with:
systemctl restart sshd.service
When you now re-establish the SSH connection, in addition to the remote user's password, you'll also be prompted for the Google Authenticator code.
Two-factor authentication is relatively straightforward to roll out but it takes some getting used to. However, you can rest easy knowing that you've increased the security of your computer by making it virtually impossible for crackers to brute force their way into your home directory.
Infos
- Google Authenticator: https://en.wikipedia.org/wiki/Google_Authenticator
- FreeOTP app: https://freeotp.github.io/
- The TOTP protocol: https://en.wikipedia.org/wiki/Time-based_One-time_Password_Algorithm
« Previous 1 2
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Wine 10 Includes Plenty to Excite Users
With its latest release, Wine has the usual crop of bug fixes and improvements, along with some exciting new features.
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.