檢視防火牆狀態: systemctl status firewalld
開啟防火牆: systemctl start firewalld
關閉防火牆: systemctl stop firewalld
重啟防火牆: systemctl restart firewalld
開機禁用防火牆: systemctl disable firewalld
開機啟用防火牆: systemctl enable firewalld
遮蔽防火牆:systemctl mask firewalld
解除遮蔽防火牆:systemctl unmask firewalld
查詢是否安裝防火牆:rpm -qa firewalld
安裝防火牆: yum install firewalld
如果需要圖形介面的話,則再安裝:yum install firewall-config
解除安裝防火牆: yum remove firewalld
是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
firewalld預設配置檔案有兩個:
(1)/usr/lib/firewalld/ (系統配置,盡量不要修改)
(2)/etc/firewalld/ (使用者配置位址)
firewalld有字元介面和圖形具介面。
(1)字元介面管理工具是#firewall-cmd,下面會具體介紹。
(2)圖形介面管理工具是#firewall-config,如下圖所示,與windows防火牆配置方法基本類似,以後再介紹。
檢視版本: 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-inte***ce=eth0
拒絕所有包:firewall-cmd --panic-on
取消拒絕狀態: firewall-cmd --panic-off
檢視是否拒絕: firewall-cmd --query-panic
Linux CentOS7 X 新增使用者
1 建立使用者 useradd username 其中,username是要建立使用者的使用者名稱 root使用 2 設定密碼 passwd username 其中,username是指定要修改密碼的使用者名稱 root使用 3 使用者授權 建立賬戶必須授權,不然,個人使用者的許可權只可以在本hom...
Linux centos7防火牆問題
centos7預設採用了新的防火牆 關閉防火牆的指令 systemctl stop firewalld 禁止防火牆開機啟動指令 systemctl disable firewalld.service 如果想要用iptables需要自己安裝外掛程式,並且禁用firewalld 安裝 yum y ins...
Linux centos7 防火牆命令
firewall操作 service firewalld status 檢視防火牆狀態 disabled 表明 已經禁止開啟啟動 enable 表示開機自啟,inactive 表示防火牆關閉狀態 activated running 表示為開啟狀態 service firewalld start 或者...