阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

如何实现SSH通过扫二维码登录Linux服务器

183次阅读
没有评论

共计 3188 个字符,预计需要花费 8 分钟才能阅读完成。

背景

Linux 服务器通过 ssh 远程连接的时候,如果使用的是用户名 + 密码的验证方式,万一密码泄露或者密码过于简单被暴 li 破解,服务器的安全就得不到保障。由此,可以结合谷歌动态验证口令来为服务器再加一道安全防护门。此时,就算是用户密码被泄露,但没有动态验证口令也是无法登录服务器的。

环境

OS:CentOS7
软件包:google-authenticator.x86_64
安卓手机一部
谷歌动态口令的下载及使用自行百度

操作步骤

1. 一键安装脚本

# 安装 epel
yum install -y epel-release.noarch &> /dev/null
yum makecache  &> /dev/null
#安装 google authenticator
yum install -y google-authenticator.x86_64 &> /dev/null

echo -e "\033[31mDo you want me to update your"/root/.google_authenticator"file? (y/n) y"
echo -e "\033[31m 你希望我更新你的“/root/.google_authenticator”文件吗 (y/n)?\033[0m"
echo -e "\033[31mDo you want to disallow multiple uses of the same authentication"
echo -e "\033[31mtoken? This restricts you to one login about every 30s, but it increases"
echo -e "\033[31myour chances to notice or even prevent man-in-the-middle attacks (y/n) y"
echo -e "\033[31m 你希望禁止多次使用同一个验证令牌吗? 这限制你每次登录的时间大约是 30 秒,但是这加大了发现甚至防止中间人攻 ji 的可能性 (y/n)?\033[0m"
echo -e "\033[31mBy default, a new token is generated every 30 seconds by the mobile app."
echo -e "\033[31mIn order to compensate for possible time-skew between the client and the server,"
echo -e "\033[31mwe allow an extra token before and after the current time. This allows for a"
echo -e "\033[31mtime skew of up to 30 seconds between authentication server and client. If you"
echo -e "\033[31mexperience problems with poor time synchronization, you can increase the window"
echo -e "\033[31mfrom its default size of 3 permitted codes (one previous code, the current"
echo -e "\033[31mcode, the next code) to 17 permitted codes (the 8 previous codes, the current"
echo -e "\033[31mcode, and the 8 next codes). This will permit for a time skew of up to 4 minutes"
echo -e "\033[31mbetween client and server."
echo -e "\033[31mDo you want to do so? (y/n) y"
echo -e "\033[31m 默认情况下,令牌保持 30 秒有效; 为了补偿客户机与服务器之间可能存在的时滞,\033[0m"
echo -e "\033[31m 我们允许在当前时间前后有一个额外令牌。如果你在时间同步方面遇到了问题,可以增加窗口从默认的 3 个可通过验证码增加到 17 个可通过验证码,\033[0m"
echo -e "\033[31m 这将允许客户机与服务器之间的时差增加到 4 分钟。你希望这么做吗 (y/n)?\033[0m"
echo -e "\033[31mIf the computer that you are logging into isn't hardened against brute-force"echo -e"\033[31mlogin attempts, you can enable rate-limiting for the authentication module."echo -e"\033[31mBy default, this limits attackers to no more than 3 login attempts every 30s."echo -e"\033[31mDo you want to enable rate-limiting? (y/n) y"echo -e"\033[31m 如果你登录的那台计算机没有经过固化,以防范运用蛮力的登录企图,可以对验证模块 \033[0m"echo -e"\033[31m 启用尝试次数限制。默认情况下,这限制攻 ji 者每 30 秒试图登录的次数只有 3 次。你希望启用尝试次数限制吗 (y/n)?\033[0m"echo -e"\033[32m 在 App Store 搜索 Google Authenticator 进行 App 安装 \033[0m"

expect << EOF
spawn google-authenticator
expect {"y/n" {send "y\n";exp_continue}
    "y/n" {send "y\n"}
    "y/n" {send "y\n"}
    "y/n" {send "y\n"}
}
EOF

#/etc/pam.d/sshd 文件,修改或添加下行保存
#auth required pam_google_authenticator.so
sed -i '1a\auth       required     pam_google_authenticator.so' /etc/pam.d/sshd
#编辑 /etc/ssh/sshd_config 找到下行
#ChallengeResponseAuthentication no
#更改为
#ChallengeResponseAuthentication yes
sed -i 's/ChallengeResponseAuthentication no/ChallengeResponseAuthentication yes/' /etc/ssh/sshd_config

#重启 SSH 服务
systemctl restart sshd

2. 运行脚本后直接扫屏幕生成的二维码或者复制二维码上方的 URL 到浏览器打开后扫码,然后使用扫码生成的动态口令进行登录
2.1 打开远程连接工具 xshell,如图
如何实现 SSH 通过扫二维码登录 Linux 服务器
2.2 输入动态口令
如何实现 SSH 通过扫二维码登录 Linux 服务器
2.3 输入服务器密码
如何实现 SSH 通过扫二维码登录 Linux 服务器
2.4 查看 /var/log/secure 日志可以发现 ssh 远程登录通过了 pam_google_authenticator 动态模块的验证并且成功登录服务器
如何实现 SSH 通过扫二维码登录 Linux 服务器

遇到的问题

1. 使用某米手机扫二维码的时候出现如下提示
如何实现 SSH 通过扫二维码登录 Linux 服务器
于是安装了 Google play 应用,但是打开后闪退,搜索相关资料后貌似是没有谷歌服务框架的原因,于是又下载了谷歌服务框架应用,仍然没有成功,可能科学上网可以解决此问题。
如何实现 SSH 通过扫二维码登录 Linux 服务器
由于时间问题没再折腾,后面换了某为手机就行了。
2. 如果手机扫码不成功,可以 chrome 网上应用店搜索“身份验证器”插件,然后添加到 Chrome 浏览器进行扫码
如何实现 SSH 通过扫二维码登录 Linux 服务器
如何实现 SSH 通过扫二维码登录 Linux 服务器
如何实现 SSH 通过扫二维码登录 Linux 服务器
如何实现 SSH 通过扫二维码登录 Linux 服务器
3. 如果手机丢失或者其它情况导致无法获取到动态口令,可以使用紧急刮刮码来登录服务器,默认配置文件是 /root/.google_authenticator,不过这里面的刮刮码用一个少一个,建议保存到安全的地方。
如何实现 SSH 通过扫二维码登录 Linux 服务器 

正文完
星哥说事-微信公众号
post-qrcode
 0
星锅
版权声明:本站原创文章,由 星锅 于2022-01-21发表,共计3188字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中