首页 > 系统服务 > 详细

linux 防火墙

时间:2017-10-22 10:54:06      阅读:268      评论:0      收藏:0      [点我收藏+]

1,netfilter iptables 

2,四个规则表 raw表 mangle表 nat表 filter表

3,五中规则链prerouting postrouting input output forward

4,规则链之间的顺序

 入站:prerouting --> input

 出站:output --> postrouting

 转发:prerouting --> forfard --> postrouting

iptables -t filter -I INPUT -p icmp -j REJECT

      表名      -I插入 -nL查看 链名     条件    操作ACCEPT DROP

iptables -L 查看表 一般搭配 -n速度更快 iptables -nL

      -A追加策略,从最后一行添加,-I是从第一行加。我觉得-A使用的多

iptables -F清空所有策略,但是不能清空默认策略

      -P设置默认规则 + DROP & ACCEPT

      -D INPUT 4 删除表filter INPUT 的第三行策略。

      -p后面接 -dport 80 端口号限制。

iptables -A INPUT -s 192.168.4.120 -j DROP

Linux和三层交换一样,有个路由转发功能需要开启。/etc/sysctl.conf 文件控制 sysctl -p刷新这个文件

本文出自 “10557356” 博客,请务必保留此出处http://10567356.blog.51cto.com/10557356/1974881

linux 防火墙

原文:http://10567356.blog.51cto.com/10557356/1974881

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!