Linux下防火墙配置
Posted Spiritual space on the net cul
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下防火墙配置相关的知识,希望对你有一定的参考价值。
查看防火墙的状态:/etc/init.d/iptables status 或 service iptables status
1) 临时生效,重启后复原
开启: service iptables start
关闭: service iptables stop 或 /etc/init.d/iptables stop
重启:/etc/init.d/iptables restart
2) 永久性生效,重启后不会复原
开启: chkconfig iptables on
关闭: chkconfig iptables off
在当开启了防火墙时,做如下设置,开启相关端口
修改/etc/sysconfig/iptables 文件,添加以下内容:
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
以上是关于Linux下防火墙配置的主要内容,如果未能解决你的问题,请参考以下文章
Linux下配置jupyter notebook远程访问实战:配置Jupyter的连接密码启动jupyter服务远程访问jupyter(关闭防火墙)