解决方案:1、在文件【/etc/profile】中添加tmout=300,等保要求不大于600秒
2、执行命令source /etc/profile使配置生效
#设置所有用户将在600秒内(即10分钟)无操作后自动注销
TMOUT=600
解决方案:1、使用chmod u-s/g-s 【文件名】命令修改文件的权限
# chmod g-s /usr/bin/chage /usr/bin/gpasswd /usr/bin/wall /usr/bin/chfn /usr/bin/chsh /usr/bin/newgrp /bin/mount /bin/umount
# chmod u-s /usr/bin/chage /usr/bin/gpasswd /usr/bin/wall /usr/bin/chfn /usr/bin/chsh /usr/bin/newgrp /bin/mount /bin/umount
解决方案:1、在【/etc/ssh/sshd_config】文件中添加或修改Protocol 2
2、在【/etc/ssh/sshd_config】文件中设置【ClientAliveInterval】设置为900
3、随后执行命令systemctl restart sshd重启进程
Port 54322
Protocol 2
...
ClientAliveInterval 900
# chmod 600 /boot/grub/grub.cfg
解决方案:1、在【/etc/sysctl.conf】文件中添加net.ipv4.tcp_syncookies=1
2、然后执行命令sysctl -p生效配置