当前位置:   article > 正文

iptables命令整理,禁止固定端口(例5500)的访问_iptables 4500:5000

iptables 4500:5000
说明命令
iptables -t 表名 -L查看对应表中的所有规则
iptables -t 表名 -L 链名查看表的指定链中的规则
iptables -t 表名 -v -L查看对应表中的所有规则 -v显示跟详细的信息
iptables -t 表名 -n -L-n 表示不解析IP地址
iptables --line-numbers -t 表名 -L–line-numbers 显示规则的序号
iptables -t 表名 -v -x -L-x 显示计数器的精确值

禁止固定端口(例5500)的访问:

命令语法:iptables -t 表名 -A 链名 匹配条件 -j 动作

iptables -t filter -A INPUT -j DROP -p tcp --dport 5500
iptables -t filter -A INPUT -j DROP -p tcp --dport 5000
  • 1
  • 2
  • 3
  • 4

参考:https://www.cnblogs.com/kcxg/p/10350870.html

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号