Answers:
只需输入:
/etc/init.d/fail2ban start
然后知道fail2ban类型的状态:
/etc/init.d/fail2ban status
我们知道所有服务都可以在中使用/etc/init.d/
。
systemctl status fail2ban
对于习惯使用的人来说,似乎可以产生相同的信息systemctl
。
首先进行快速检查,查看一下fail2ban是否添加了一些iptable规则:
sudo iptables -L f2b-sshd
这就是我得到的结果:
target prot opt source destination
REJECT all -- mgt.pnu.ac.th anywhere reject-with icmp-port-unreachable
REJECT all -- plex1.domin8.media anywhere reject-with icmp-port-unreachable
REJECT all -- 218.92.0.197 anywhere reject-with icmp-port-unreachable
REJECT all -- 223.68.10.247 anywhere reject-with icmp-port-unreachable
REJECT all -- promote.cache-dns.local anywhere reject-with icmp-port-unreachable
RETURN all -- anywhere anywhere
看来我的服务器吸引了一些兴趣。;)
sudo fail2ban-client status