一、firewalld的基本使用
启动: systemctl start firewalld
查看状态: systemctl status firewalld
禁止随系统启动: systemctl disable firewalld
关闭: systemctl stop firewalld
启动: systemctl start firewalld
查看状态: systemctl status firewalld
禁止随系统启动: systemctl disable firewalld
关闭: systemctl stop firewalld
原理:
通过定时脚本检查系统登录失败日志/var/log/secure
,统计每个IP
失败登录次数,当统计到失败次数大于阀值时,将IP
加入系统屏蔽名单/etc/hosts.deny
中。
CloudFlare恐怕无人不知无人不晓了吧?大名鼎鼎的CDN服务商,拥有众多数据节点,CDN加速效果极其出色(当然说的是在国外,国内另算)。
CloudFlare
拥有免费套餐,对于咱们普通站长来说,免费套餐是绰绰有余的,当然,如果想自己指定亚洲节点,那就得升级套餐了,套餐费用可不便宜!
原来安装过Transmission-daemon的KS服务器不知道怎么回,被我玩坏了。怎么也找不到原来安装过的程序,索性重新安装一下算了。这次简单化安装 ,不再编译安装了。
yum install epel-release
yum -y update
统计IP访问量(独立ip访问数量)
`
awk '{print $1}' access.log | sort -n | uniq | wc -l`
查看某一时间段的IP访问量(4-5点)grep "07/Apr/2017:0[4-5]" access.log | awk '{print $1}' | sort | uniq -c| sort -nr | wc -l