centos 7.x預設使用的是firewall作為防火牆,如果你想用centos主機做乙個伺服器和其他主機互動,socket通訊什麼的,不把預設防火牆關掉是不行的。那我們來看下如何在一台新裝centos 7.x的主機關閉預設防火牆。
一.關閉預設firewall:
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall開機啟動
firewall-cmd --state #檢視預設防火牆狀態(關閉後顯示notrunning,開啟後顯示running)
二.開啟iptables
yum -y install iptables-services #安裝iptables
systemctl enable iptables #設定開機自啟
systemctl enable iptables.service #兩個都執行
之後,你就可以寫socket程式和centos主機互動了。 CentOS 7 x 防火牆操作
永久的開放需要的埠 sudo firewall cmd zone public add port 22 tcp permanent sudo firewall cmd reload 檢查新的防火牆規則 firewall cmd state firewall cmd list all 開啟防火牆 sy...
Centos7 x防火牆配置
1 檢視firewall服務狀態 2 檢視firewall的狀態 firewall cmd state3 開啟 重啟 關閉 firewalld.service服務 開啟 service firewalld start 重啟 service firewalld restart 關閉 service f...
CentOS7 x 防火牆命令總結
最近在使用linux時,總是記不住防火牆的命令。所以總結一下防火牆的命令。第一部分 開發環境下 檢視防火牆狀態 systemctl status firewalld.service 關閉防火牆命令 systemctl stop firewalld.service 檢視防火牆狀態 systemctl ...