centos 6:
1) 永久性生效,重啟後不會復原
** 開啟: chkconfig iptables on
關閉: chkconfig iptables off
2) 即時生效,重啟後復原
開啟: service iptables start
關閉: service iptables stop
centos 7:
systemctl start firewalld.service#啟動firewall
systemctl stop firewalld.service#停止firewall
systemctl disable firewalld.service#禁止firewall開機啟動
查詢tcp連線情況:
netstat -n | awk '/^tcp/ end '
查詢埠占用情況:
netstat -anp | grep portno(例如:netstat –apn | grep 80)
centos防火牆關閉操作
centos防火牆關閉操作 cnetos 6.5之前的版本 sudo service firewalld stop 停止服務 sudo service firewalld start 啟動服務 sudo service firewalld status 檢視狀態 centos7 sudo syste...
CentOS下關閉防火牆
centos 7.0預設使用的是firewall作為防火牆 1 檢視防火牆的狀態 命令 firewall cmd state 關閉後顯示notrunning,開啟後顯示running 2 從centos7開始使用systemctl來管理服務和程式,包括了service和chkconfig,我們可以通...
linux 關閉防火牆(Centos)
centos 7 系統 一 防火牆的開啟 關閉 禁用命令 1 設定開機啟用防火牆 systemctl enable firewalld.service 2 設定開機禁用防火牆 systemctl disable firewalld.service 3 啟動防火牆 systemctl start fi...