2017年5月7日 星期日

[Linux] 用iptables封鎖ip

iptables封鎖ip

1. 封鎖整個IP,會DROP所有此IP的連線
sudo iptables -A INPUT -s IP_ADDRESS -j DROP

2. 查看iptables清單
sudo iptables –L
sudo iptables –S


沒有留言:

張貼留言

[CentOS] httpd port 9000 to 80

<VirtualHost *:80>     ServerName domain.name     ProxyRequests Off     ProxyVia Block     ProxyPreserveHost On     <Proxy *...