Linuxfirewalld配置與systemctl開啟啟動配置(轉載)
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
相關文章
- MySQL配置與啟動MySql
- MongoDB配置與啟動MongoDB
- Linux啟動流程與Grub的配置(轉)Linux
- Supervisor安裝、配置、開啟啟動
- oracle配置開機自啟動Oracle
- OpenHarmony的init程式、init配置與啟動項配置
- Linux開機啟動分析與系統配置Linux
- Linux開機自啟動配置Linux
- redis sentinel配置啟動Redis
- goland的啟動配置GoLand
- systemctl 命令設定開機自啟動失敗
- Linux下啟動ftp及xdm配置(轉)LinuxFTP
- spring boot啟動載入外部配置檔案Spring Boot
- kafka部署配置與啟停Kafka
- 啟動掛載(轉)
- Ubuntu自動啟動配置指令碼Ubuntu指令碼
- systemctl 命令在 Linux 中啟動、停止和重新啟動服務Linux
- 命令列開啟windows下的iis資訊服務,開啟及配置http埠,開啟及配置ftp埠命令列WindowsHTTPFTP
- Apollo啟動配置排查,超時時間的配置
- springboot 配置熱啟動 不需重啟自動部署Spring Boot
- Idea開啟Run DashBoard配置Idea
- Linux開機自啟配置Linux
- 配置Nginx/Redis開機自啟NginxRedis
- 在Linux上配置Resin 80埠自啟動(轉)Linux
- 負載均衡開啟Gzip配置及檢測方法說明負載
- 配置單例項自動重啟單例
- hadoop叢集配置和啟動Hadoop
- Win10開啟FTP與配置(完整無錯版)Win10FTP
- CentOS 7 - 配置服務實現開機自啟動CentOS
- 『學了就忘』Linux啟動引導與修復 — 70、grub啟動載入程式的配置檔案說明Linux
- oracle11g啟動過程中載入配置檔案Oracle
- 4 配置Oracle資料庫自動啟動Oracle資料庫
- linux 配置oracle+asm自動啟動LinuxOracleASM
- httpd使用systemctl啟動超時解決過程httpd
- MySQL讀取配置檔案的順序、啟動方式、啟動原理MySql
- docker Redis 自定義配置檔案啟動DockerRedis
- HIVE配置啟動Hwi方法,版本0.14.0Hive
- 配置PXE Server實現網路啟動Server