标签:linux res host nbsp 5.0 star restart 3.0 服务
可以直接服务配置nginx.conf
添加 deny+IP 例如:
封禁单个IP
deny 106.5.76.83;
#封整个段即从123.0.0.1到123.255.255.254的命令
deny 123.0.0.0/8
#封IP段即从123.45.0.1到123.45.255.254的命令
deny 124.45.0.0/16
#封IP段即从123.45.6.1到123.45.6.254的命令是
deny 123.45.6.0/24
重启nginx 服务 ./nginx -s reload
也可以 在tcpd服务器配置中封禁
/etc/hosts.deny
封禁单个IP
ALL: 106.5.76.83;
#封整个段即从123.0.0.1到123.255.255.254的命令
ALL: 123.0.0.0/8
#封IP段即从123.45.0.1到123.45.255.254的命令
ALL: 124.45.0.0/16
#封IP段即从123.45.6.1到123.45.6.254的命令是
ALL: 123.45.6.0/24
重启服务 service xinetd restart
标签:linux res host nbsp 5.0 star restart 3.0 服务
原文地址:http://www.cnblogs.com/longlonglong/p/7235540.html