博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Centos7防火墙操作
阅读量:5301 次
发布时间:2019-06-14

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

CentOS 7.0默认使用的是firewall作为防火墙

启动一个服务:systemctl start firewalld.service
 
关闭一个服务:systemctl stop firewalld.service
 
重启一个服务:systemctl restart firewalld.service
 
显示一个服务的状态:systemctl status firewalld.service
 
在开机时启用一个服务:systemctl enable firewalld.service
 
在开机时禁用一个服务:systemctl disable firewalld.service
 
查看服务是否开机启动:systemctl is-enabled firewalld.service;echo $?
 
查看已启动的服务列表:systemctl list-unit-files|grep enabled 
 
查看已经开放的端口:
firewall-cmd --list-ports
 
开启端口:
firewall-cmd --zone=public --add-port=80
/tcp
--permanent

      命令含义:

          –zone #作用域

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

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

 

 

 

CentOS 7默认使用的是firewall作为防火墙,使用iptables必须重新设置一下

1、直接关闭防火墙

systemctl stop firewalld.service #停止firewall

systemctl disable firewalld.service
#禁止firewall开机启动
2、设置 iptables service
yum -y
install
iptables-services
如果要修改防火墙配置,如增加防火墙端口3306:
vim
/etc/sysconfig/iptables
增加规则
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
保存退出后
systemctl restart iptables.service
#重启防火墙使配置生效
systemctl
enable
iptables.service
#设置防火墙开机启动
最后重启系统使设置生效即可。
 

转载于:https://www.cnblogs.com/dj0325/p/7990114.html

你可能感兴趣的文章
面对问题,如何去分析?(日报问题)
查看>>
数据分析-业务知识
查看>>
BZOJ1208[HNOI2004]宠物收养场——treap
查看>>
nodejs vs python
查看>>
poj-1410 Intersection
查看>>
艰难中前行
查看>>
[pytorch学习]1.pytorch ubuntu安装
查看>>
阿里云CentOS 安装配置ASPNET Core
查看>>
repeater 分页显示数据
查看>>
HDU-3666 THE MATRIX PROBLEM
查看>>
鼠标悬停放大图片 - 漂亮
查看>>
【转载】博士后了
查看>>
IDEA操作git的一些常用技巧
查看>>
Java多线程基础(一)
查看>>
TCP粘包拆包问题
查看>>
Java中Runnable和Thread的区别
查看>>
SQL Server中利用正则表达式替换字符串
查看>>
POJ 1015 Jury Compromise(双塔dp)
查看>>
UIScrollView,UICollectionView 和UITableView的属性和方法
查看>>
JavaScript-10(JavaScript事件)
查看>>