centos 7 and 6 防火墙 开启端口 并测试

Posted n37-shiguoqing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos 7 and 6 防火墙 开启端口 并测试相关的知识,希望对你有一定的参考价值。

1、防火墙

CentOS升级到7之后,发现无法使用iptables控制Linuxs的端口,google之后发现Centos 7使用firewalld代替了原来的iptables。下面记录如何使用firewalld开放Linux端口:

查看防火墙状态

systemctl status firewalld

开启防火墙

systemctl start firewalld

关闭防火墙

systemctl stop firewalld

查看当前firewall状态

firewall-cmd --state
重启firewall
firewall-cmd --reload

禁止开机启动

systemctl disable firewalld.service 

2、开启端口

查看已经开放的端口:

firewall-cmd --list-ports
开启端口
firewall-cmd --zone=public --add-port=80/tcp --permanent

命令含义:

--zone #作用域

--add-port=80/tcp  #添加端口,格式为:端口/通讯协议

--permanent  #永久生效,没有此参数重启后失效

开启断绝口后需要重启防火墙

技术图片

3、测试端口

在开启的端口启动一个服务,如tomcat,我使用的是zookeeper。

 技术图片

在dos中输入 

telnet  服务器ip  端口

技术图片

回车后

技术图片

表明端口开启成功

 

Centos6防火墙配置

 

1、基本操作

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 查看防火墙状态
service iptables status
 
# 停止防火墙
service iptables stop
 
# 启动防火墙
service iptables start
 
# 重启防火墙
service iptables restart
 
# 永久关闭防火墙
chkconfig iptables off
 
# 永久关闭后重启
chkconfig iptables on

以上是关于centos 7 and 6 防火墙 开启端口 并测试的主要内容,如果未能解决你的问题,请参考以下文章

Centos 7和 Centos 6开放查看端口 防火墙关闭打开

如何在Centos 7快速开启端口

Centos 7开启端口问题

centos 7 开启端口重启防火墙

centos 7的防火墙怎么开放端口

关于centOS 7的服务启动,端口查询,防火墙管理