码迷,mamicode.com
首页 > 其他好文 > 详细

iptables 常用命令

时间:2018-01-13 16:51:49      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:strong   ext   开启路由转发   vpd   store   图片   png   ffffff   lin   

一、命令

  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 常用命令

标签:strong   ext   开启路由转发   vpd   store   图片   png   ffffff   lin   

原文地址:http://blog.51cto.com/12173069/2060597

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!