centos7 開啟關閉防火牆注意事項

2021-09-12 18:36:19 字數 589 閱讀 3630

最近在telnet虛擬機器裡的23埠,卻一直不通,猜測是防火牆禁止了telnet服務,於是從網上找到了這篇文章,果然就通了,記錄一下以防下次忘記。

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)

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...

CentOS7 防火牆開啟與關閉

1 firewalld的基本使用 啟動 systemctl start firewalld 關閉 systemctl stop firewalld 檢視狀態 systemctl status firewalld 開機禁用 systemctl disable firewalld 開機啟用 system...