博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos7关闭防火墙(转)
阅读量:6454 次
发布时间:2019-06-23

本文共 1122 字,大约阅读时间需要 3 分钟。

直接命令:service firewalld stop

 

 

1. Disable Firewalld Service.

 

[root@rhel-centos7-tejas-barot-linux ~]# systemctl mask firewalld

2. Stop Firewalld Service.

 

[root@rhel-centos7-tejas-barot-linux ~]# systemctl stop firewalld

3. Install iptables service related packages. Linux学习,http:// linux.it.net.cn

[root@rhel-centos7-tejas-barot-linux ~]# yum -y install iptables-services Linux学习,http:// linux.it.net.cn

4. Make sure service starts at boot:

 

[root@rhel-centos7-tejas-barot-linux ~]# systemctl enable iptables

# If you do not want ip6tables, You can skip following command. Linux学习,http:// linux.it.net.cn

[root@rhel-centos7-tejas-barot-linux ~]# systemctl enable ip6tables Linux学习,http:// linux.it.net.cn

5. Now, Finally Let’s start the iptables services.

 

[root@rhel-centos7-tejas-barot-linux ~]# systemctl start iptables

# If you do not want ip6tables, You can skip following command.

[root@rhel-centos7-tejas-barot-linux ~]# systemctl start ip6tables

Firewalld Service is now disabled and stop, You can use iptables. 

http://linux.it.net.cn/CentOS/fast/2015/0314/13904.html

转载于:https://www.cnblogs.com/softidea/p/5271726.html

你可能感兴趣的文章
PHP学习笔记1:基础知识快速浏览
查看>>
Oracle 事务表实验
查看>>
Linux ACL 体验
查看>>
一篇不错的对于乐观锁和悲观锁的解释帖子
查看>>
一点感慨, 小小记录
查看>>
KVM分布式共享存储解决方案-sheepdog
查看>>
在 ubuntu 搭建 docker registry 私有仓库
查看>>
沃通免费SSL证书2018新版上线,全球信任、限时申请!
查看>>
Oracle Linux 7.3 下安装 Oracle Database 12c R2
查看>>
java String比较相等时必须使用equals的引申
查看>>
报表开发FineReport优化报表取数
查看>>
你应该知道的计算机网络知识
查看>>
linux下单个网卡设置多IP
查看>>
大硬盘在服务器上使用
查看>>
阿里五年晋升三次,这个程序员要聊聊他的选择
查看>>
Linux 开机流程及修复MBR
查看>>
How-to use MySQL-python in Python
查看>>
从用户层面考虑如何做好一款产品
查看>>
MYSQL的limit和offset
查看>>
基于Corosync + LNMP + NFS 服务实现高可用
查看>>