2016-06-08

iptables 封禁解封 IP

Views: 9635 | Add Comments

iptables 封禁 IP:

sudo iptables -I INPUT -s 1.2.3.4 -j DROP

iptables 解封 IP:

sudo iptables -D INPUT -s 1.2.3.4 -j DROP

Related posts:

  1. 告诉我应该选择哪一个Linux发行版
  2. 如何让 PHP json_encode 函数不转义中文?
  3. jQuery 设置复选框选中状态的 BUG
  4. ssh远程执行命令
  5. Mac 下创建隐藏用户
Posted by ideawu at 2016-06-08 11:45:28

Leave a Comment