在 Linux 中查找服務(wù)的端口號(hào)
方法1:使用 grep 命令
要使用 grep 命令在 Linux 中查找指定服務(wù)的默認(rèn)端口號(hào),只需運(yùn)行:
- $ grep <port> /etc/services
例如,要查找 SSH 服務(wù)的默認(rèn)端口,只需運(yùn)行:
- $ grep ssh /etc/services
就這么簡(jiǎn)單。此命令應(yīng)該適用于大多數(shù) Linux 發(fā)行版。以下是我的 Arch Linux 測(cè)試機(jī)中的示例輸出:
- ssh 22/tcp
- ssh 22/udp
- ssh 22/sctp
- sshell 614/tcp
- sshell 614/udp
- netconf-ssh 830/tcp
- netconf-ssh 830/udp
- sdo-ssh 3897/tcp
- sdo-ssh 3897/udp
- netconf-ch-ssh 4334/tcp
- snmpssh 5161/tcp
- snmpssh-trap 5162/tcp
- tl1-ssh 6252/tcp
- tl1-ssh 6252/udp
- ssh-mgmt 17235/tcp
- ssh-mgmt 17235/udp
正如你在上面的輸出中所看到的,SSH 服務(wù)的默認(rèn)端口號(hào)是 22。
讓我們找到 Apache Web 服務(wù)器的端口號(hào)。為此,命令是:
- $ grep http /etc/services
- #
- http 80/tcp www www-http # WorldWideWeb HTTP
- http 80/udp www www-http # HyperText Transfer Protocol
- http 80/sctp # HyperText Transfer Protocol
- https 443/tcp # http protocol over TLS/SSL
- https 443/udp # http protocol over TLS/SSL
- https 443/sctp # http protocol over TLS/SSL
- gss-http 488/tcp
- gss-http 488/udp
- webcache 8080/tcp http-alt # WWW caching service
- webcache 8080/udp http-alt # WWW caching service
- [...]
FTP 端口號(hào)是什么?這很簡(jiǎn)單!
- $ grep ftp /etc/services
- ftp-data 20/tcp
- ftp-data 20/udp
- # 21 is registered to ftp, but also used by fsp
- ftp 21/tcp
- ftp 21/udp fsp fspd
- tftp 69/tcp
- [...]
方法 2:使用 getent 命令
如你所見,上面的命令顯示指定搜索詞 “ssh”、“http” 和 “ftp” 的所有端口名稱和數(shù)字。這意味著,你將獲得與給定搜索詞匹配的所有端口名稱的相當(dāng)長(zhǎng)的輸出。
但是,你可以使用 getent 命令精確輸出結(jié)果,如下所示:
- $ getent services ssh
- ssh 22/tcp
- $ getent services http
- http 80/tcp www www-http
- $ getent services ftp
- ftp 21/tcp
如果你不知道端口名稱,但是知道端口號(hào),那么你只需將端口名稱替換為數(shù)字:
- $ getent services 80
- http 80/tcp
要顯示所有端口名稱和端口號(hào),只需運(yùn)行:
- $ getent services
方法 3:使用 Whatportis 程序
Whatportis 是一個(gè)簡(jiǎn)單的 Python 腳本,來用于查找端口名稱和端口號(hào)。與上述命令不同,此程序以漂亮的表格形式輸出。
確保已安裝 pip 包管理器。如果沒有,請(qǐng)參考以下鏈接。
安裝 pip 后,運(yùn)行以下命令安裝 Whatportis 程序。
- $ pip install whatportis
現(xiàn)在,你可以找到與服務(wù)關(guān)聯(lián)的端口,如下所示。
- $ whatportis ssh
- $ whatportis ftp
- $ whatportis http
我的 CentOS 7 服務(wù)器的示例輸出:
在 Linux 中查找服務(wù)的端口號(hào)
如果你不知道服務(wù)的確切名稱,請(qǐng)使用 –like 標(biāo)志來顯示相關(guān)結(jié)果。
- $ whatportis mysql --like
上述命令幫助你查找與服務(wù)關(guān)聯(lián)的端口。你還可以找到與端口號(hào)相關(guān)聯(lián)的服務(wù),如下所示。
- $ whatportis 993
你甚至可以以 JSON 格式顯示結(jié)果。
- $ whatportis 993 --json
1.《linux如何打開443端口》援引自互聯(lián)網(wǎng),旨在傳遞更多網(wǎng)絡(luò)信息知識(shí),僅代表作者本人觀點(diǎn),與本網(wǎng)站無關(guān),侵刪請(qǐng)聯(lián)系頁腳下方聯(lián)系方式。
2.《linux如何打開443端口》僅供讀者參考,本網(wǎng)站未對(duì)該內(nèi)容進(jìn)行證實(shí),對(duì)其原創(chuàng)性、真實(shí)性、完整性、及時(shí)性不作任何保證。
3.文章轉(zhuǎn)載時(shí)請(qǐng)保留本站內(nèi)容來源地址,http://f99ss.com/keji/3213251.html