linux 設定埠常用命令

2021-10-08 21:55:13 字數 823 閱讀 7547

一、防火牆的狀態。有時開啟防火牆外部不能訪問。

防火牆的命令:

檢視防火牆狀態 systemctl status firewalld

開啟防火牆 systemctl start firewalld

關閉防火牆 systemctl stop firewalld

開啟防火牆 service firewalld start

禁止開機啟動防火牆 systemctl disable firewalld.service

先用:systemctl unmask firewalld.service

然後:systemctl start firewalld.service

二、檢視你的服務的埠號是否對外開放。

命令:1.查詢已經對外開放的埠

netstat -anp

2.查詢指定埠是否已經開放

firewall-cmd --query-port=3306/tcp

返回yes/no。此時也有可能返回firewalld is not running,此時需要開啟防火牆在開放埠。

開放埠號命令:

新增指定需要開放的埠:

firewall-cmd --add-port=3306/tcp --permanent

重載入新增的埠:

firewall-cmd --reload

查詢指定埠是否開啟成功:

firewall-cmd --query-port=3306/tcp

注:移除指定埠:

firewall-cmd --permanent --remove-port=3306/tcp

參考:

linux設定常用命令

1,設定閘道器 route add default gw 192.168.1.x 2,掛載nfs命令 mount t nfs o nolock 192.168.1.x home work nfs usr nfsroot 3,grep grep string rn 在當前目錄及子目錄下搜尋字串 可以用...

Linux 檢視埠常用命令

一 firewall防火牆 檢視防火牆開放的埠 firewall cmd zone public list ports 檢視firewall服務狀態 systemctl status firewalld 檢視firewall的狀態 firewall cmd state 開啟 重啟 關閉 firewa...

linux檢視埠常用命令

netstat命令引數 t 指明顯示tcp埠 u 指明顯示udp埠 l 僅顯示監聽套接字 所謂套接字就是使應用程式能夠讀寫與收發通訊協議 protocol 與資料的程式 p 顯示程序識別符號和程式名稱,每乙個套接字 埠都屬於乙個程式。n 不進行dns輪詢,顯示ip 可以加速操作 即可顯示當前伺服器上...