Google Authenticator
Google身份验证器是一款TOTP与HOTP的两步验证软件令牌,此软件用于Google的认证服务。此项服务所使用的算法已列于 RFC 6238 和 RFC 4226 中。
Google身份验证器给予用户一个六位到八位的一次性密码用于进行登录Google或其他站点时的附加验证。其同样可以给第三方应用生成口令,例如密码管理员或网络硬盘。
一、安装使用
-
软件安装
a. 二进制安装
yum install -y epel-* mercurial autoconf automake libtool pam-develyum install -y google-authenticatorb. 编译安装
yum install -y epel-* mercurial autoconf automake libtool pam-devel gitgit clone https://github.com/google/google-authenticator-libpam.gitcd google-authenticator-libpam-master/ #进入目录chmod +x bootstrap.sh #设置可执行权限./bootstrap.sh./configuremake installln -s /usr/local/lib/security/pam_google_authenticator.so /usr/lib64/security/pam_google_authenticator.so -
PAM配置
vim /etc/pam.d/sshdauth required pam_google_authenticator.so# 或者echo "auth required pam_google_authenticator.so" >>/etc/pam.d/sshd -
SSH配置
vim /etc/ssh/sshd_config# 将ChallengeResponseAuthentication no# 改为ChallengeResponseAuthentication yes# 或者sed -i 's/ChallengeResponseAuthentication no/ChallengeResponseAuthentication yes/g' /etc/ssh/sshd_config# 重启sshd服务systemctl restart sshd.service -
google-authenticator运行配置
总的来说,首先运行google-authenticator二进制程序,然后一路y下来即可,中间使用二维码,或者密钥与手机端进行绑定,下方是具体过程。
google-authenticatorDo you want authentication tokens to be time-based (y/n) yWarning: pasting the following URL into your browser exposes the OTP secret to Google:https://www.google.com/chart?chs=200x200&chld=M|0&cht=qr&chl=otpauth://totp/root@demo%3Fsecret%3DEXAMPLE_SECRET_DO_NOT_USE%26issuer%3Ddemo这里会有一个二维码,需要在手机上下载`googleauthenticator`APP扫码绑定安卓 IOS手机都可以在应用商店搜索安装Your new secret key is: EXAMPLE_SECRET_DO_NOT_USEYour verification code is 917990Your emergency scratch codes are:4262331972314571144766959576438938976136Do you want me to update your "/root/.google_authenticator" file? (y/n) yDo you want to disallow multiple uses of the same authenticationtoken? This restricts you to one login about every 30s, but it increasesyour chances to notice or even prevent man-in-the-middle attacks (y/n) yBy 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 atime skew of up to 30 seconds between authentication server and client. If youexperience problems with poor time synchronization, you can increase the windowfrom its default size of 3 permitted codes (one previous code, the currentcode, the next code) to 17 permitted codes (the 8 previous codes, the currentcode, and the 8 next codes). This will permit for a time skew of up to 4 minutesbetween client and server.Do you want to do so? (y/n) yIf the computer that you are logging into isn't hardened against brute-forcelogin 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) y -
登录
a. xshell