Настройка 2FA и MFA на CentOS7

Настройка 2FA и MFA на CentOS7.

Настройку выполняю на ОС CentOS Linux release 7.9.2009.

yum install -y epel-release
rpm --import http://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY*
yum install google-authenticator

Запуска самого приложения:

google-authenticator

Отвечаем на вопросы.

Do you want authentication tokens to be time-based (y/n)

Да, токены должны основываться на времени.

Далее появился QR-код, который надо занести в приложение google authenticator, например.

Do you want me to update your «/root/.google_authenticator» file? (y/n)

Да, этот файл с данными потом может пригодится.

Do you want to disallow multiple uses of the same authentication
token? This restricts you to one login about every 30s, but it increases
your chances to notice or even prevent man-in-the-middle attacks (y/n)

Тут ответитить лучше «ДА». Нам не надо (и вообще не надо в основном) чтобы можно было несколько раз использовать один и тот же токен. Пускай меняется каждые 30 секунд. Поэто запрещаем многократное использование токена.

By default, a new token is generated every 30 seconds by the mobile app.
In order to compensate for possible time-skew between the client and the server,
we allow an extra token before and after the current time. This allows for a
time skew of up to 30 seconds between authentication server and client. If you
experience problems with poor time synchronization, you can increase the window
from its default size of 3 permitted codes (one previous code, the current
code, the next code) to 17 permitted codes (the 8 previous codes, the current
code, and the 8 next codes). This will permit for a time skew of up to 4 minutes
between client and server.

Тут нам предлагает увеличить кол-во валидных кодов сгенерированных в промежутке времени, если вдруг у нас есть проблемы с интернетом и стандартные параметры генерации не дают нормально войти на сервер. В 99% случаев это, имхо, не надо. Ответ «Нет».

If the computer that you are logging into isn’t hardened against brute-force
login attempts, you can enable rate-limiting for the authentication module.
By default, this limits attackers to no more than 3 login attempts every 30s.
Do you want to enable rate-limiting? (y/n)

Лимит на кол-во попыток войти в период 30с. На моей практике 3 попытки на 30 секунд вполне рабочий лимит, чтобы самому не попасть под блок. Включаю такой лимит для защиты от перебора кода. Ответ «Да».


Настройка SSH

nano /etc/pam.d/sshd

Добавляем подсвеченую строчку (3-я строка)

# Used with polkit to reauthorize users in remote sessions
-session   optional     pam_reauthorize.so prepare
auth required pam_google_authenticator.so nullok

nullok параметр в конце строки говорит о том, что это опционально.

Теперь надо сконфигурировать SSH, чтобы была поддержка такого типа авторизации при входе.

nano /etc/ssh/sshd_config

# Change to no to disable s/key passwords
ChallengeResponseAuthentication yes
#ChallengeResponseAuthentication no

Перезапускаем SSH.

systemctl restart sshd.service

Далее, делаем новую сессию и проверяем вход. Учитывая, что делалось всё для пользователя root, то надо проверить включён ли доступ для root по SSH в файле конфигурации и доступна ли авторизацию по паролю, если она настроена именно так. Сервер сначала спросит пароль, а потом ключ, который надо будет взять из приложения, котое его генерирует.


Делалось по материалу — https://www.digitalocean.com/community/tutorials/how-to-set-up-multi-factor-authentication-for-ssh-on-centos-7

Добавить комментарий