centos7端口管理

1、firewalld的基本使用

启动: systemctl start firewalld

查看状态: systemctl status firewalld

停止: systemctl disable firewalld

禁用: systemctl stop firewalld

2.systemctl是CentOS7的服务管理工具中主要的工具,它融合之前service和chkconfig的功能于一体。

启动一个服务: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
查看已启动的服务列表:systemctl list-unit-files|grep enabled
查看启动失败的服务列表:systemctl --failed

3.配置firewalld-cmd

查看版本: firewall-cmd --version

查看帮助: firewall-cmd --help

显示状态: firewall-cmd --state

查看所有打开的端口: firewall-cmd --zone=public --list-ports

更新防火墙规则: firewall-cmd --reload

查看区域信息:  firewall-cmd --get-active-zones

查看指定接口所属区域: firewall-cmd --get-zone-of-interface=eth0

拒绝所有包:firewall-cmd --panic-on

取消拒绝状态: firewall-cmd --panic-off

查看是否拒绝: firewall-cmd --query-panic

那怎么开启一个端口呢

添加

firewall-cmd --zone=public --add-port=80/tcp --permanent    (--permanent永久生效,没有此参数重启后失效)

重新载入

firewall-cmd --reload

查看

firewall-cmd --zone= public --query-port=80/tcp

删除

firewall-cmd --zone= public --remove-port=80/tcp --permanent

原文地址:https://www.cnblogs.com/moxiaoan/p/5683743.html

原文地址:https://www.cnblogs.com/yc-c/p/9255716.html

时间: 2024-10-10 13:20:52

centos7端口管理的相关文章

centOS7服务管理与启动流程

centOS7服务管理与启动流程 centOS7启动流程 systemd简介 unit对象 unit类型 特性 service unit文件格式 service unit file文件通常由三部分组成 unit段的常用选项 Service段的常用选项 Install段的常用选项 管理服务 管理系统服务 服务查看 chkconfig命令的对应关系 其他命令 服务状态 systemctl示例 运行级别 运行级别与target的对照 运行级别的切换 CentOS7引导顺序 设置简单的内核参数 简单的启

linux常用命令---centOS7的管理服务(针对yum安装的)

centOS7的管理服务(针对yum安装的) 原文地址:https://www.cnblogs.com/open-yang/p/11253289.html

【小白到大牛之路11】交换机后台管理之端口管理的优化

项目需求 项目10中的使用port1,port2,port3,port4,prot5,以及set_port1, set_port2, set_port3, set_port4, set_port5来管理5个端口.代码臃肿.重复,不便于维护. 解决方案:使用结构体数组. 项目实现 修改部分: //定义了5个端口变量 //struct port port1; //struct port port2; //struct port port3; //struct port port4; //struct

【小白到大牛之路12】交换机后台管理之端口管理的再次优化

项目12交换机后台管理之端口管理的再次优化项目精讲 1.为什么要使用指针 函数的值传递,无法通过调用函数,来修改函数的实参. 2.指针定义 指针是什么 指针本质是一个地址值: #include <stdio.h> int main(void){ int age; //定义了一个指针 //指针是一个变量 //这个变量的名称是 p //这个指针,可以用来指向一个整数! //就是说:p的值是一个整数的地址!!! int * p; //指针p指向了age //p的值,就是变量age的地址 p = &a

CentOS7防火墙管理firewalld

学习apache安装的时候需要打开80端口,由于centos 7版本以后默认使用firewalld后,网上关于iptables的设置方法已经不管用了,想着反正iptable也不太熟悉,索性直接搬官方文档,学习firewalld了,好像比iptables要简单点了. 官方文档地址:https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/Security_Guide/sec-Using_Firewal

CentOS7进程管理systemd详解

概述: 系统启动过程中,当内核启动完成,后加载根文件系统,后就绪的一些用户空间的服务的管理工作,就交由init进行启动和管理,在CentOS6之前的init的管理方式都类似,相关的内容我们在之前的文章中也做出过介绍.在CentOS7上,init变成了systemd,其管理方式也发生了重大的变化,本章就跟大家欧一起探讨一些关于CentOS7上的systemd的新特性的内容.具体分为一下几个方面: 1.systemd新特性简介 2.systemd如何管理系统系统上的各服务 3.systemd管理各个

centos7 系统进程管理

学习目标: 通过本实验掌握centos7/rhel7进程的查看及管理,以及如何禁止占用cpu过多的进程. 操作步骤: 1. 打开Firefox浏览器,如果可访问互联网,打开一个较大的网站(如新浪)2. 查看系统进程,此时Firefox占用cpu资源最多,终止Firefox进程. 参考命令: 1. 通过top查看占用cpu高的进程[[email protected] instructors]# ps aux 2. 关掉火狐浏览器进程[[email protected] instructors]#

CentOS7软件包管理

软件包管理 rpm,yum,源码编译安装 rpm 1.rpm工具的安装.升级.卸载平时都是很少使用的.对于安装来说,它经常需要认为的解决依赖关系.yum经常用于安装或升级软件包 2.但是,虽然rpm的安装功能很少使用,但rpm的查询功能非常实用. rpm -qf rpm -ql rpm -qRp ... 3.说到查询,yum-utils包中的repoquery也很强大 rpm -ivhUe --nodeps --test --force --prefix 选项说明: -i 表示安装,instal

centos7 systemctl 管理 mysql

centos 7 开始使用systemctl 管理服务 服务脚本目录 /etc/systemd/system/mysql.service 脚本如下: # # Simple MySQL systemd service file # # systemd supports lots of fancy features, look here (and linked docs) for a full list: #  http://www.freedesktop.org/software/systemd/