首页 > 系统相关 >Centos8和stream 9防火墙基本使用

Centos8和stream 9防火墙基本使用

时间:2022-12-25 16:01:00浏览次数:47  
标签:zone stream -- cmd 防火墙 firewall permanent Print Centos8

查发行版:

[root@localhost nps-0.26.10]# cat /etc/redhat-release

CentOS Stream release 9

Centos8和stream 9防火墙基本使用_端口号

查看防火墙状态

systemctl status firewalld

Centos8和stream 9防火墙基本使用_端口号_02

firewall-cmd --state

Centos8和stream 9防火墙基本使用_重启_03

开启/关闭/重启防火墙

systemctl start firewalld

[root@localhost conf]# systemctl start firewalld
[root@localhost conf]# firewall-cmd --state
running

systemctl stop firewalld

[root@localhost conf]#systemctl stop firewalld
[root@localhost conf]# firewall-cmd --state
not running

​systemctl restart firewalld

​放行指定端口

firewall-cmd --zone=public --add-port=端口号/tcp --permanent

firewall-cmd --zone=public --add-port=80/tcp --permanent # http
firewall-cmd --zone=public --add-port=443/tcp --permanent #https

放行范围端口

firewall-cmd --zone=public --add-port=5000-6000/tcp --permanent

删除防火墙端口

firewall-cmd --zone=public --remove-port=5000-6000/tcp --permanent

修改防火墙后,都要对防火墙进行刷新

firewall-cmd --reload

查看防火墙某个端口是否开放与开放哪些端口

firewall-cmd --query-port=端口号/tcp

firewall-cmd --zone=public --list-ports

Centos8和stream 9防火墙基本使用_重启_04

关于firewall-cmd使用,请查看firewall-cmd -h

[root@localhost conf]# firewall-cmd -h
Usage: firewall-cmd [OPTIONS...]
General Options
-h, --help Prints a short help text and exits
-V, --version Print the version string of firewalld
-q, --quiet Do not print status messages
Status Options
--state Return and print firewalld state
--reload Reload firewall and keep state information
--complete-reload Reload firewall and lose state information
--runtime-to-permanent
Create permanent from runtime configuration
--check-config Check permanent configuration for errors
Log Denied Options
--get-log-denied Print the log denied value
--set-log-denied=<value>
Set log denied value
Permanent Options
--permanent Set an option permanently
Usable for options marked with [P]
Zone Options
--get-default-zone Print default zone for connections and interfaces
--set-default-zone=<zone>
Set default zone
--get-active-zones Print currently active zones
--get-zones Print predefined zones [P]
--get-services Print predefined services [P]
--get-icmptypes Print predefined icmptypes [P]

标签:zone,stream,--,cmd,防火墙,firewall,permanent,Print,Centos8
From: https://blog.51cto.com/wyf1226/5968212

相关文章

  • centos8、9 设置服务开机自动开启
    第一步:进入到/lib/systemd/system/目录cd/lib/systemd/system/第二步:创建nginx.service文件,并编辑vimnginx.service文件内容[Unit]Description=ng......
  • Java8 各种集合的 Stream 操作示例
    前言本篇文章是个笔记篇......其实专门是写给同事的,他说他不会用Java8之后的lambda操作,这Java18都出来了,你Java8还没玩熟,这真是狗听了都摇摇头啊吐槽不愿意......
  • firewalld -- Centos7防火墙
    启停#启动firewalld防火墙,并加入开机自启动服务systemctlstartfirewalld.servicesystemctlenablefirewalld.service#关闭systemctlstopfirewalldsystemctl......
  • win7防火墙里开启端口的图文教程
    开启端口:打开“控制面板”中的“Windows防火墙”,点击左侧的“高级设置”右击“入站规则”在快捷菜单中选择“新建规则”在“要创建的规则类型”中选择“端口”,点击“下一步......
  • ffmpeg打开视频解码器失败:Could not find codec parameters for stream 0 (Video: h26
    在使用ffmpeg进行拉流分离音视频数据再解码播放操作的时候;有时候经常会报错:Couldnotfindcodecparametersforstream0(Video:h264):unspecifiedsizeffmpeg默认......
  • 解决RockyLinux和Centos Stream 9中firefox无法播放HTML视频问题
    如题在测试两种centos后续系统时,发现firefox无法播放HTML视频问题。经过一番折腾找到了解决的办法,具体解决如下:首先下载VLC$sudoyuminstallvlc而后重启浏览器就可......
  • CentOs8 MySQL8.0.31 忘记密码修改密码
     最近忙一段时间没有上来忘记了MySQL得密码了,因为之前得5.7版本得不一样所以还修改不了,啊哈哈首先进去/etc/my.cnf  插入skip-grant-tables :wq保存退出syste......
  • Windows10/11中VirtualBox7.0安装CentOS Stream 8
    Windows10/11中VirtualBox安装CentOSStream8二.虚拟机内安装0.安装选择Testthismedia&InstallCentOSStream8-stream一).系统设置(SYSTEM)1.磁盘分区Instal......
  • Flink:DataStreamAPI
    执行环境获取的执行环境是StreamExecutionEnvironment类的对象。在代码中创建执行环境的方法,就是调用这个类的静态方法。getExecutionEnvironment根据上下文直接得到......
  • linux远程连接注意防火墙
    当我们远程连接linux服务器的时候,有时候会遇到连接不上服务器的情况,在确定一切都没问题的时候,那很可能就是防火墙开启了,此时我们只要关闭防火墙就行了。命令如下:serviceipt......