1、開啟關閉防火牆服務
檢視狀態: systemctl status firewalld
啟動: systemctl start 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.開啟關閉埠
檢視幫助: firewall-cmd --help
顯示狀態: firewall-cmd --state
檢視所有開啟的埠: firewall-cmd --zone=public --list-ports、firewall-cmd --list-ports
更新防火牆規則: firewall-cmd --reload
使用樣本
新增firewall-cmd --zone=public --add-port=80/tcp --permanent (--permanent永久生效,沒有此引數重啟後失效)
刪除firewall-cmd --zone=public --remove-port=80/tcp --permanent
重新載入,埠更改後需要重啟後才能生效
firewall-cmd --reload
CentOS7 防火牆開啟與關閉
1 firewalld的基本使用 啟動 systemctl start firewalld 關閉 systemctl stop firewalld 檢視狀態 systemctl status firewalld 開機禁用 systemctl disable firewalld 開機啟用 system...
CentOS7關閉 開啟防火牆
centos 7.0預設使用的是firewall作為防火牆,使用iptables必須重新設定一下 1 直接關閉防火牆 systemctl stop firewalld.service 停止firewall systemctl disable firewalld.service 禁止firewall開...
CentOS 7 防火牆開啟 關閉
centos 7.0預設使用的是firewall作為防火牆 使用systemctl來管理服務和程式,包括了service和chkconfig 1 檢視預設防火牆狀態 關閉後顯示not running,開啟後顯示running firewall cmd state 2 檢查防火牆的狀態 systemc...