码迷,mamicode.com
首页 > 系统相关 > 详细

Linux cent OS 命令 防火墙-端口

时间:2015-09-17 21:05:11      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:

1)打开端口号:
#/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
#/sbin/iptables -I INPUT -p tcp --dport 22 -j ACCEPT
#/sbin/iptables -I INPUT -p tcp --dport 3306 -j ACCEPT
2)然后保存:
#/etc/rc.d/init.d/iptables save
3)查看打开的端口:
# /etc/init.d/iptables status

 

 
-------------------------------------------------------
补充说明:
 
关闭防火墙
#/etc/init.d/iptables stop
#service iptables stop  #停止服务
#service iptables start #开启服务
查看防火墙信息
#/etc/init.d/iptables status
开放端口:8080
#/sbin/iptables -I INPUT -p tcp --dport 8080 -j ACCEPT
 
 
 
---------------------- Cent OS 7 的操作 ------------------
# firewall-cmd --permanent --zone=public --add-port=8080-8081/tcp #开发端口 8080至 8081
# firewall-cmd --reload #重新载入
# firewall-cmd --zone=public --list-ports 
# firewall-cmd --permanent --zone=public --list-ports
# firewall-cmd --permanent --zone=public --remove-port=8080-8081/tcp

 

 
 
 
 
 
 
 
 
 

Linux cent OS 命令 防火墙-端口

标签:

原文地址:http://www.cnblogs.com/guonan/p/4817404.html

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