我是靠谱客的博主 妩媚冬天,最近开发中收集的这篇文章主要介绍linux 自启动iptable_Linux防火墙iptables的设置与启动[转],觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

查看当前配置:iptables -L

防火墙配置文件:

vi /etc/sysconfig/iptables

开放80端口:

/*-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT经测试无效/

iptables -A INPUT -p tcp -s 0/0 --dport 8180 -j ACCEPT

重启服务:

/etc/rc.d/init.d/iptables restart

启动和停止服务分别用start、stop

chkconfig –level 2345 iptables off

service iptables stop不推荐关闭防火墙

1) 重启后生效

开启: chkconfig iptables on

关闭: chkconfig iptables off

2) 即时生效,重启后失效

开启: service iptables start

关闭: service iptables stop

最后

以上就是妩媚冬天为你收集整理的linux 自启动iptable_Linux防火墙iptables的设置与启动[转]的全部内容,希望文章能够帮你解决linux 自启动iptable_Linux防火墙iptables的设置与启动[转]所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部