centos 7防火情配置

2022-09-04 11:09:10 字數 624 閱讀 6455

檢視版本

firewall-cmd --version

2 檢視指定埠是否開放

firewall-cmd --query-port=埠號/tcp

3 開放指定埠(--permanent表示永久,如果沒有這個引數,系統重啟後埠還是未開放的)

firewall-cmd --zone=public --add-port=埠號/tcp --permanent

firewall-cmd --reload #重啟防火牆生效

4.停止防火牆

systemctl stop firewalld.service

5.禁止防火牆開機啟動

systemctl disable firewalld.service

6.刪除

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

來自為知筆記(wiz)

Centos7配置firewalld防火牆

firewalld提供了支援網路 防火牆區域 zone 定義網路鏈結以及介面安全等級的動態防火牆管理工具。它支援 ipv4,ipv6 防火牆設定以及乙太網橋接,並且擁有執行時配置和永久配置選項。它也支援允許服務或者應用程式直接新增防火牆規則的介面 firewall daemon可實現動態管理防火牆,...

centos7防火牆配置

centos7防火牆配置 centos7使用的是linux kernel 3.10.0的核心版本,新版的kernel核心已經有了防火牆netfilter,並且firewalld的使用效能更高,穩定性更好。centos7配置防火牆的兩種方法 一 使用xml配置檔案的方式配置 方法一cp usr lib...

centos7防火牆配置

使用命令的方式配置centos7 防火牆 add firewall cmd permanent zone public add port 8080 tcp remove firewall cmd permanent zone public remove port 8080 tcp reload fi...