Ssh

Raspberry Pi OS Google 2FA over SSH 不斷詢問密碼和 OTP

  • March 8, 2022

我遵循了本指南:https ://pimylifeup.com/setup-2fa-ssh/但是這是我在嘗試連接時得到的(它卡在一個循環中並不斷詢問密碼和密鑰):

ssh jacob@192.168.4.141                                
(jacob@192.168.4.141) Password: 
(jacob@192.168.4.141) Verification code: 
(jacob@192.168.4.141) Password: 
(jacob@192.168.4.141) Verification code: 
(jacob@192.168.4.141) Password: 
(jacob@192.168.4.141) Verification code: 
jacob@192.168.4.141's password: 

如果程式碼是對還是錯,就會發生這種情況,這無關緊要。如果密碼錯誤,會再次詢問(無驗證碼)

我也遇到過這種情況。

我通過不執行來修復它:

sudo google-authenticator

確保您已登錄到您想要使用 ssh 的使用者,然後執行:

google-authenticator

提示來自這一行:

“你想讓我更新你的“/root/.google_authenticator”文件嗎?(y/n)”

應該說:

“你想讓我更新你的”/home/

$$ your user $$/.google_authenticator" 文件?(y/n)"

引用自:https://unix.stackexchange.com/questions/691592