摘要:
1、配置chrony服务,实现服务器时间自动同步 服务器端 [root@localhost ~]# systemctl enable chronyd[root@localhost ~]# systemctl restart chronyd 客户端 IP写为服务器ip [root@localhost 阅读全文
摘要:
1、编写脚本/root/bin/checkip.sh,每5分钟检查一次,如果发现通过ssh登录失败 次数超过10次,自动将此远程IP放入Tcp Wrapper的黑名单中予以禁止防问 root@localhost ~]# vim ssh.sh #!/bin/bashn=10cat /var/log/s 阅读全文
摘要:
1、编写脚本selinux.sh,实现开启或禁用SELinux功能 [root@centos7 ~]#vim selinux.sh #!/bin/bashconfdir=/etc/selinux/configcase "$1" in on) sed -ir 's/^SELINUX=.*/SELINU 阅读全文