centos7使用的是firewall防火牆,不再是原來的iptables
1:檢視firewall防火牆狀態
firewall-cmd --state
或者systemctl status firewalld
2:開啟防火牆
systemctl start firewalld
3:關閉防火牆
systemctl stop firewalld
4:重啟防火牆
firewall-cmd --relaod
或者systemctl reload firewalld
5:開機自啟動防火牆
systemctl enable firewalld
6:禁止開機啟動防火牆
systemctl disable firewalld
6:檢視已開啟的埠
firewall-cmd --list-ports
7:開啟埠
firewall-cmd --permanent --zone=public --add-port=8080/tcp
其中permanent表示永久生效,public表示作用域,8080/tcp表示埠和型別
8:關閉埠
firewall-cmd --permanent --zone=public --remove-port=8080/tcp
【完】
CentOS7開啟 關閉埠
centos7使用的是firewall防火牆,不再是原來的iptables 1 檢視firewall防火牆狀態 firewall cmd state 或者systemctl status firewalld 2 開啟防火牆 systemctl start firewalld 3 關閉防火牆 syst...
CentOS7 開啟關閉防火牆埠
1,檢視防火牆狀態 firewall cmd state systemctl status firewalld.service 2,開啟防火牆 systemctl start firewalld.service 3,設定開機自啟 systemctl enable firewalld.service ...
centos7 開啟關閉服務
centos 7 中使用systemctl工具來管理服務程式,包括了service和chkconfig 啟動乙個服務 systemctl start firewalld.service 關閉乙個服務 systemctl stop firewalld.service 重啟乙個服務 systemctl ...