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

防火墙放行80端口(初级)

时间:2017-08-19 12:55:38      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:清除   table   bsp   inpu   tables   默认   tab   tcp   for   

首先删除默认策略

iptables -P INPUT DROP

iptables -P FORWARD DROP

iptables -P OUTPUT DROP

清除已有iptables规则

iptables -F

放行出流量

iptables -P OUTPUT ACCEPT.

放行默认22,80端口

iptables -A INPUT -p tcp --dport 22 -j ACCEPT

iptables -A INPUT -p tcp --dport 80 -j ACCEPT

保存写入的策略

service iptables save

 

防火墙放行80端口(初级)

标签:清除   table   bsp   inpu   tables   默认   tab   tcp   for   

原文地址:http://www.cnblogs.com/bky185392793/p/7395866.html

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