구글 OTP 인증을 사용하여 SSH 서버에 접속하려하면 이유없이 서버가 끊기는 문제가 발생할 수 있습니다.
(구글 OTP를 사용하여 SSH 인증하는 방법은 다음 링크에 설명되어 있습니다 : https://jootc.com/p/201812291719)
인증 문제가 발생하는 원인을 찾아보기 위해 로그 파일을 살펴보았습니다.
[root@localhost ~]# tail -f /var/log/secure
secure
로그 파일에는 다음과 같이 나타났습니다.
Oct 19 09:29:58 myhost sshd(pam_google_authenticator)[45793]: Did not receive verification code from user Oct 19 09:29:58 myhost sshd(pam_google_authenticator)[45793]: Invalid verification code for test Oct 19 09:30:05 myhost sshd(pam_google_authenticator)[45797]: Accepted google_authenticator for test Oct 19 09:30:05 myhost sshd[45793]: Accepted keyboard-interactive/pam for test from 192.168.1.100 port 62416 ssh2 Oct 19 09:30:05 myhost sshd[45793]: fatal: PAM: pam_setcred(): Failure setting user credentials Oct 19 09:30:52 myhost sshd[45845]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=192.168.1.100 user=test Oct 19 09:30:52 myhost sshd(pam_google_authenticator)[45845]: Did not receive verification code from user Oct 19 09:30:52 myhost sshd(pam_google_authenticator)[45845]: Invalid verification code for test Oct 19 09:30:55 myhost sshd[45845]: error: Received disconnect from 192.168.1.100 port 62511:0: [preauth] Oct 19 09:30:55 myhost sshd[45845]: Disconnected from 192.168.1.100 port 62511 [preauth]
SSH 서버 설정 파일에서 PermitEmptyPassword
의 값이 yes
로 지정된 경우 OTP 인증이 거부되는 현상이 발생하는 것으로 보입니다.
현재 SSH 서버의 설정을 확인한 후, 해당 옵션을 변경해주어야 합니다.
먼저 터미널을 열고 터미널 에디터를 사용하여 /etc/ssh/sshd_config
파일을 열어줍니다. (서버에 따라 sshd_config
파일 위치가 다를 수 있습니다.)
이후 다음 옵션을 찾아 yes
로 지정된 경우 no
로 변경합니다.
PermitEmptyPassword no
변경이 완료되었다면 파일을 저장하고 빠져나옵니다.
이후 sshd
서비스를 재시작해주어야 설정이 적용됩니다. 다음 명령어를 사용합니다.
[root@localhost ~]# service sshd restart
만약 systemd
를 사용 중인 경우 (최신 리눅스인 경우) 다음 명령어로도 서비스를 재시작할 수 있습니다.
[root@localhost ~]# systemctl restart sshd
이제 다시 사용자 로그인을 시도해봅니다.
Xcode에서 iOS 애플리케이션을 빌드(Archive)하고 App Store Connect에 앱을 업로드하는 도중, 아래와 같은 에러가 발생하면서 더…
INSTALL_FAILED_INSUFFICIENT_STORAGE 문제 안드로이드 스튜디오에서 에뮬레이터를 실행하고 개발중인 애플리케이션을 실행하려 하면 로그 창에 아래와 같이 표시되면서…
리눅스 명령어 - kill, killall 리눅스 kill 명령어는 특정 프로세스를 종료해주는 명령어입니다. 백그라운드에서 실행되고 있는…
JavaScript는 역사가 긴 스크립트 프로그래밍 언어입니다. 세월이 흐르면서 많은 자바스크립트 표준이 만들어졌고, 현재는 많은 문법적…
NodeJS 테스트 프레임워크인 Mocha는 비동기 테스트를 지원합니다. 간혹 특정 테스트 스크립트를 작성하고 실행하면 아래와 같이…