iptables 常用命令

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iptables 常用命令相关的知识,希望对你有一定的参考价值。

一、命令

  1. 查看某表中的规则:iptables --line-number -t 表名 -nL
  2. 添加新的入站规则:iptables -A INPUT -s ip地址 -p 协议 --dport 端口 -j 处理方式
  3. 替换规则:iptables -R INPUT 编号 -s ip地址 -p 协议 --dport 端口 -j 处理方式
  4. 删除规则:iptables -D INPUT 编号
  5. 修改默认规则:iptables -t 表名 -P INPUT 处理方式
  6. 允许路由转发(由内向外):iptables -t nat -A POSTROUTING -s 内网ip/网段 -j SNAT --to-source 外网ip
  7. 允许路由转发(由外向内):iptables -t nat -A POSTROUTING -d 外网ip -p 协议 -dport 端口 -j DNAT --to-destination 内网ip/网段
  8. 限制每秒钟接受到的数据包的个数(防止垃圾攻击):iptables -I INPUT -m limit --limit 个数/sec -j ACCEPT
  9. 拒绝新的连接请求:iptables -A INPUT -m state --state NEW -j DROP
    二、备份:iptables-save > 文件
    三、还原:iptables-restore < 文件
    四、常用的文件:
  10. 查看系统中标准的端口信息:/etc/services
    技术分享图片
  11. 开启路由转发的文件:/etc/sysctl.conf
    技术分享图片

以上是关于iptables 常用命令的主要内容,如果未能解决你的问题,请参考以下文章

iptables 常用命令

Linux常用命令

Linux iptables常用命令

Linux--iptables常用命令

iptables command 常用命令列表

linux iptables常用命令之配置生产环境iptables及优化