centos 关于防火墙的命令

CentOS7默认的防火墙不是iptables,而是firewalle.

安装iptable iptable-service

#先检查是否安装了iptables
service iptables status
#安装iptables
yum install -y iptables
#升级iptables
yum update iptables
#安装iptables-services
yum install iptables-services

注:防火墙的基本操作命令:

查询防火墙状态:

[[email protected] ~]# service   iptables status<回车>

 

停止防火墙:

[[email protected] ~]# service   iptables stop <回车>

 

启动防火墙:

[[email protected] ~]# service   iptables start <回车>

 

重启防火墙:

[[email protected] ~]# service   iptables restart <回车>

 

永久关闭防火墙:

[[email protected] ~]# chkconfig   iptables off<回车>

 

永久关闭后启用:

[[email protected] ~]# chkconfig   iptables on<回车>

时间: 2024-11-01 19:38:43

centos 关于防火墙的命令的相关文章

CentOS 7 开放防火墙端口命令

CentOS 7 开放防火墙端口 命令 最近公司新的server要求用CentOS7, 发现以前CentOS 6 系列中的 iptables 相关命令不能用了,查了下,发现Centos 7使用firewalld代替了原来的iptables. 使用方法如下: >>> 关闭防火墙 systemctl stop firewalld.service             #停止firewallsystemctl disable firewalld.service        #禁止firew

CentOS中防火墙相关的命令(CentOS7中演示)

CentOS中防火墙程序主要是firewall和iptables,CentOS7中firewall服务已经默认安装好了,而iptables服务需要自己用yum  install  iptabes-services来安装.        说明:以下演示均在CentOS7中进行,其他版本也大同小异 1.firewall相关的操作 查看防火墙状态 firewall-cmd    --state 关闭防火墙 systemctl  stop   firewalld.service 开启防火墙 system

CentOS 7 开放防火墙端口 命令(转载)

CentOS 7 开放防火墙端口 命令 最近公司新的server要求用CentOS7, 发现以前CentOS 6 系列中的 iptables 相关命令不能用了,查了下,发现Centos 7使用firewalld代替了原来的iptables. 使用方法如下: >>> 关闭防火墙 systemctl stop firewalld.service             #停止firewallsystemctl disable firewalld.service        #禁止firew

centos 防火墙相关命令

防火墙关闭: systemctl stop firewalld systemctl disable firewalld 重启防火墙: systemctl enable firewalld systemctl start firewalld systemctl restart firewalld 查看状态: systemctl status firewalld 查看已经开放的端口 firewall-cmd --list-ports 开启端口 firewall-cmd --zone=public -

Centos 7防火墙firewalld开放80端口

Centos 7防火墙firewalld开放80端口 作者:巧克力发布时间:2015-11-08 18:47:14分类:Linux浏览:1943 返回上一页 开启80端口 1 firewall-cmd --zone=public --add-port=80/tcp --permanent 出现success表明添加成功 命令含义: --zone #作用域 --add-port=80/tcp #添加端口,格式为:端口/通讯协议 --permanent #永久生效,没有此参数重启后失效 重启防火墙

redhat and centos 系统经常使用命令

查看cpu信息: more /proc/cpuinfo |grep "model name" 通常是至强系统 查看内存信息: grep MemTotal /proc/meminfo free -m 查看系统的位数: getconf LONG_BIT 查看系统版本号: cat /etc/redhat-release 查看系统内核版本号: uname -r uname -a 使用经常使用命令查看当前时间 date 使用命令查看硬盘和分区 df -h fdisk -l 也能够查看分区 du

CentOS 配置防火墙操作实例(启、停、开、闭端口)

CentOS 配置防火墙操作实例(启.停.开.闭端口): 注:防火墙的基本操作命令: 查询防火墙状态: [root@localhost ~]# service   iptables status<回车>   停止防火墙: [root@localhost ~]# service   iptables stop <回车>   启动防火墙: [root@localhost ~]# service   iptables start <回车>   重启防火墙: [root@loc

centos 7 没有ifconfig 命令

centos 7 没有ifconfig 命令: 安装命令: yum install net-tools centos 7 没有ifconfig 命令,布布扣,bubuko.com

linux下防火墙开启某个端口号及防火墙常用命令使用

linux防火墙常用命令 1.永久性生效,重启后不会复原 开启:chkconfigiptables on 关闭:chkconfigiptables off 2.即时生效,重启后复原 重启防火墙 方式一:/etc/init.d/iptables restart 方式二:service iptables restart 关闭防火墙: 方式一:/etc/init.d/iptables stop 方式二:service iptables stop 启动防火墙 方式一:/etc/init.d/iptabl