CentOS7修改防火墙

开启端口

# firewall-cmd --zone=public --add-port=3306/tcp --permanent

命令含义:

--zone #作用域

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

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

重启防火墙

# firewall-cmd --reload
时间: 2024-10-29 04:00:43

CentOS7修改防火墙的相关文章

centos7的防火墙firewalld

centos7的防火墙引入了新的防火墙firewalld,和以前的iptables完全不同,不过我觉得用起来还是新的好. 新安装的系统默认就启用了新防火墙,老的虽然还有,但是需要把新的停了,才能启动. 新系统安装完了,默认就开启了SSH协议,和ping(ICMP)协议. 据介绍,有图显示,其实只是对操作界面进行了更换,内核的操作还是用iptables去netfilter 引入了防火墙真正的概念,zone(区域),然后把网络接口归属于zone,这些都是真正防火墙的概念. firewall-conf

修改防火墙

防火墙问题:添加22端口到防火墙 系统:Centos7 开启防火墙:systemctl start firewalld关闭防火墙:systemctl stop firewalld 开机自动启动防火墙:systemctl enable firewalld开机不自动启动防火墙:systemctl disable firewalld 方式一:图像化界面:1.点击左上角应用程序->杂项->防火墙 2.点击配置修改为永久状态注意:修改防火墙配置的时候需要将配置改为永久状态,否则reload的时候不会生效

centos7 修改网卡名为eth0及基本优化

1 Centos7 修改网卡名及修改静态ip [[email protected] ~]# cd /etc/sysconfig/network-scripts/ [[email protected] network-scripts]# cp ifcfg-ens33 ifcfg-ens33.bak [[email protected] network-scripts]# cp ifcfg-ens33.bak ifcfg-eth0 [[email protected] network-scripts

centOS7.2防火墙常用配置(转)

centOS7.2防火墙常用配置 firewall-cmd --state #查看默认防火墙状态(关闭后显示not running,开启后显示running) systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 systemctl start firewalld.service #开启防火墙 systemctl enable firewalld.servi

centos7 修改selinux 开机导致 faild to load SELinux policy freezing 错误

centos7 修改selinux 开机导致 faild to load SELinux policy  freezing 错误 之前把selinux关闭了,这次想打开selinux,于是修改了 /etc/selinux/config 文件,然后重启时,就开不了机了, 出现错误:faild to load SELinux policy  freezing,查了一些资料,完善方案 1. 重启时在启动页面 按 E, 进入 grub 编辑页面: 2. 找到 linux 那一行,在最后 language

CentOS7修改网卡为eth0

CentOS7修改网卡为eth0 1.编辑网卡信息 [[email protected]~]# cd /etc/sysconfig/network-scripts/  #进入网卡目录 [[email protected]]# mv ifcfg-eno16777728 ifcfg-eth0  #重命名网卡名称 [[email protected] network-scripts]# cat ifcfg-eth0  #编辑网卡信息 TYPE=Ethernet BOOTPROTO=static DEF

windows7/windows2008修改远程桌面连接并修改防火墙配置脚本

一.说明 为了安全我们经常对windows的管理都会修改默认的远程连接端口(tcp 3389)为其他的端口,要连接管理的windows机器一多,修改起来就比较烦琐,再加上修改防火墙,就更是麻烦,而且修改出错可能把自己关在外面,无法登录系统 ,所以此时你需要一个脚本工具一键修改端口,修改防火墙,备份修改前的注册表. 二.脚本 @echo off @echo [远程桌面端口修改]  CLS  MODE con: COLS=68 LINES=20  :: MODE语句为设定窗体的宽和高 SetLoca

CentOS7修改网卡名称为eth0

CentOS7修改网卡为eth0 1.编辑网卡信息 [[email protected]~]# cd /etc/sysconfig/network-scripts/  #进入网卡目录 [[email protected]]# mv ifcfg-eno16777728 ifcfg-eth0  #重命名网卡名称 [[email protected]]# cat ifcfg-eth0  #编辑网卡信息 TYPE=Ethernet BOOTPROTO=static DEFROUTE=yes PEERDN

centos6.5和centos7修改系统字符集

centos6.5和centos7修改系统默认字符集的方法不一样了,但是临时设置的都是一样的. 查看系统支持的字符集 [[email protected] ~]# locale -a centos6.5修改系统字符集 临时生效: [[email protected] mysqldata]# LANG="zh_CN.utf8" [[email protected] mysqldata]# echo $LANG zh_CN.utf8 永久生效: # vim /etc/sysconfig/i