红联Linux门户
Linux帮助

SSH Google Authenticator

发布时间:2016-09-11 22:34:39来源:eallion.com作者:大大的小蜗牛
我经常需要用SSH连加家到自己的电脑上,如果单独用密码验证,存在很多安全隐患,如果用密钥,又很麻烦,所以我选择的是用Google的双重验证。顺便换了一个非22端口。
下面的方法同样适用于Ubuntu VPS,我的几个VPS都是这样设置的。
 
环境
Ubuntu 16.04.1 LTS 64bit
OpenSSH server
 
1、安装SSH服务
sudo apt update
sudo apt install openssh-server
 
2、安装Google-Authenticator
sudo apt update
sudo apt install libpam-google-authenticator
3、生成密钥
google-authenticator
过程中全部按y。
 
4、配置手机app
用Google-Authenticator、洋葱、Authy、身份宝等扫描上一步生成的二维码即可。
我个人使用的是Authy。
 
5、配置
sudo vim /etc/pam.d/sshd
添加:
auth required pam_google_authenticator.so
sudo vim /etc/ssh/sshd_config
修改:
ChallengeResponseAuthentication yes #改为yes
port 22222 #SSH默认使用22端口,这里看个人喜好修改成其他的或不修改
 
6、重启SSH
sudo service ssh restart
使用时,Verification code:输入手机app生成的验证码即可。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/24073.html