本文最后更新于 2025-03-18T14:25:39+00:00
Linux SSH 安全加固,这里使用CentOS7.5 做演示
一、配置SSH双因素登录 **1.确定系统时钟是正确的**
**2.安装相关依赖**
yum install -y git gcc automake autoconf libtool make pam-devel
**3.安装google 验证器**
1 2 3 4 5 6 git clone https://github.com/google/google-authenticator-libpamcd google-authenticator-libpam ./bootstrap.sh ./configure make && make installln -fs /usr/local/lib/security/pam_google_authenticator.so /lib64/security/
**4.配置验证器**
修改SSH文件 将ChallengeResponseAuthentication 修改为yes
修改PAM文件 vim /etc/pam.d/sshd 在auth substack password-auth下面一行添加 `auth required pam_google_authenticator.so`
关闭selinux 修改/etc/sysconfig/selinux 文件 将 SELINUX=enforcing 修改为disabled
google-authenticator
重启SSH服务
二、设置密码长度以及复杂度 **1.设置密码长度**
1 2 3 4 修改 /etc/ login.defs文件 将PASS_MIN_LEN 数值修改 修改 /etc/ pam.d/system_auth配置文件 在password requisite 行后边添加: minlen=数值
**2.设置密码复杂度**
1 2 3 4 5 6 7 8 9 10 11 方法一:修改/etc/pam.d/system-auth 在password requisite 行后边添加: ucredit=-1 lcredit=-1 ocredit=-1 dcredit=-1 方法二:使用如下命令: authconfig --enablereqlower --update authconfig --enablerequpper --update authconfig --enablereqdigit --update authconfig --enablereqother --update
三、设置密码重试限制 1.限制tty登录
1 2 3 4 5 6 7 8 9 10 11 修改login文件: 在#%PAM-1.0下面插入一行,也就是在第二行插入如下内容: auth required pam_tally2.so deny =5 unlock_time =1800 even_deny_rootroot_unlock_time =3600
2.限制ssh登录
1 2 3 4 5 在#%PAM-1.0下面插入一行,也就是在第二行插入如下内容: auth required pam_tally2.so deny =5 unlock_time =1800 even_deny_rootroot_unlock_time =1800
如有问题,欢迎指出,谢谢!