linux7以上使用
systemctl status firewalld 查看状态
systemctl enable firewalld 启用防火墙 永久
systemctl stop firewalld 停止防火墙 重启后失效
systemctl disable firewalld 禁用防火墙 永久
systemctl start firewalld 启动
查看已打开的端口 netstat -anp
添加允许的端口 firewall-cmd --add-port=8080/tcp --permanent
若移除端口 firewall-cmd --permanent --remove-port=8080/tcp
linux 7 以下使用
service iptables status
service iptables start
service iptables stop
service iptables restart
防火墙配置规则 端口 允许得端口 /etc/sysconfig/iptables
-A INPUT -p tcp -m state --state NEW -m tcp --dport 22 -j ACCEPT
-A INPUT -p tcp -m state --state NEW -m tcp --dport 21 -j ACCEPT
-A INPUT -p tcp -m state --state NEW -m tcp --dport 8080 -j ACCEPT
-A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEP
-A INPUT -p tcp -m state --state NEW -m tcp --dport 3366 -j ACCEP
linux7 下设置防火墙允许得端口
原创
©著作权归作者所有:来自51CTO博客作者口袋里的小龙的原创作品,请联系作者获取转载授权,否则将追究法律责任
下一篇:linux配置防火墙
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Linux防火墙
Linux防火墙
Linux运维 iptables firewall firewalld -
Linux7/Centos7新特性之防火墙
Rhel7防火墙Redhat Enterprise Linux7已经默认使用firewalld作为防火墙,其使用方
Linux Centos 系统 运维 客户端 -
开启防火墙后重启docker 防火墙自动重启
IIS自动重启解决方案参考-----源自网络 1. 解决方案一:打上微软red Code(红色代码)补丁Ø 到microsoft网站上看有关红色代码病毒的告示,然后下载升级包。运行即可。杀
开启防火墙后重启docker IIS microsoft 解决方案