最新消息:关注【太平洋学习网】微信公众号,可以获取全套资料,【全套Java基础27天】【JavaEE就业视频4个月】【Android就业视频4个月】

Linux Centos 6,7关闭或开启防火墙的方法

Linux 太平洋学习网 浏览 评论

在Linux Centos 6与Centos 7中该如何关闭或开启防火墙呢?因为Linux防火墙很重要,比如我们的web网站服务器或SVN如果要让外部直接访问,就得关闭防火墙,否则网页就会出错,无法访问。

在Centos 6服务器中关闭或开启防火墙的方法,使用service命令,分别如下:

查询防火墙状态    :    [root@localhost ~]# service iptables status
停止防火墙   :       [root@localhost ~]# service iptables stop
启动防火墙   :       [root@localhost ~]# service iptables start
重启防火墙   :       [root@localhost ~]# service iptables restart
永久关闭防火墙    :    [root@localhost ~]# chkconfig iptables off
永久关闭后启用    :    [root@localhost ~]# chkconfig iptables on

那么在Centos 6中如何只开启某个端口的防火墙呢?以开启8080端口为例,请运行如下命令:

//开启8080端口防火墙
sudo iptables -I INPUT -p tcp -m tcp --dport 8080 -j ACCEPT

//保存设置
sudo service iptables save

注意:此设置并不是永久性的,Linux重启之后会恢复以前的设置。

在Centos7中关闭或开启防火墙的方法,使用systemctl命令,如下:

永久关闭防火墙:systemctl disable firewalld
开启防火墙:systemctl start firewalld
关闭防火墙:systemctl stop firewalld
重启防火墙:systemctl reload firewalld
查询防火墙状态:systemctl status firewalld

那么在Centos 7中如何只开启某个端口的防火墙呢?例如仍以开启8080网页端口为例,请使用如下命令:

//开启8080端口
sudo firewall-cmd --zone = public --add-port = 8080 / tcp --permanent 

//重新启动防火墙
sudo firewall-cmd --reload

注意:在开启某个端口的防火墙时,如果没有“--permanent”标识,则标识它不是永久开启的,在服务器重启之后会恢复之前的设置。

来源网站:太平洋学习网,转载请注明出处:http://www.tpyyes.com/a/linux/745.html
"文章很值,打赏犒劳作者一下"
微信号: Javaweb_engineer

打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

与本文相关的文章

发表我的评论
取消评论

表情

您的回复是我们的动力!

  • 昵称 (必填)

网友最新评论