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