在 Linux 中查找服務(wù)的端口號(hào)

方法1:使用 grep 命令

要使用 grep 命令在 Linux 中查找指定服務(wù)的默認(rèn)端口號(hào),只需運(yùn)行:

  1. $ grep <port> /etc/services

例如,要查找 SSH 服務(wù)的默認(rèn)端口,只需運(yùn)行:

  1. $ grep ssh /etc/services

就這么簡(jiǎn)單。此命令應(yīng)該適用于大多數(shù) Linux 發(fā)行版。以下是我的 Arch Linux 測(cè)試機(jī)中的示例輸出:

  1. ssh 22/tcp
  2. ssh 22/udp
  3. ssh 22/sctp
  4. sshell 614/tcp
  5. sshell 614/udp
  6. netconf-ssh 830/tcp
  7. netconf-ssh 830/udp
  8. sdo-ssh 3897/tcp
  9. sdo-ssh 3897/udp
  10. netconf-ch-ssh 4334/tcp
  11. snmpssh 5161/tcp
  12. snmpssh-trap 5162/tcp
  13. tl1-ssh 6252/tcp
  14. tl1-ssh 6252/udp
  15. ssh-mgmt 17235/tcp
  16. ssh-mgmt 17235/udp

正如你在上面的輸出中所看到的,SSH 服務(wù)的默認(rèn)端口號(hào)是 22。

讓我們找到 Apache Web 服務(wù)器的端口號(hào)。為此,命令是:

  1. $ grep http /etc/services
  2. #
  3. http 80/tcp www www-http # WorldWideWeb HTTP
  4. http 80/udp www www-http # HyperText Transfer Protocol
  5. http 80/sctp # HyperText Transfer Protocol
  6. https 443/tcp # http protocol over TLS/SSL
  7. https 443/udp # http protocol over TLS/SSL
  8. https 443/sctp # http protocol over TLS/SSL
  9. gss-http 488/tcp
  10. gss-http 488/udp
  11. webcache 8080/tcp http-alt # WWW caching service
  12. webcache 8080/udp http-alt # WWW caching service
  13. [...]

FTP 端口號(hào)是什么?這很簡(jiǎn)單!

  1. $ grep ftp /etc/services
  2. ftp-data 20/tcp
  3. ftp-data 20/udp
  4. # 21 is registered to ftp, but also used by fsp
  5. ftp 21/tcp
  6. ftp 21/udp fsp fspd
  7. tftp 69/tcp
  8. [...]

方法 2:使用 getent 命令

如你所見,上面的命令顯示指定搜索詞 “ssh”、“http” 和 “ftp” 的所有端口名稱和數(shù)字。這意味著,你將獲得與給定搜索詞匹配的所有端口名稱的相當(dāng)長(zhǎng)的輸出。

但是,你可以使用 getent 命令精確輸出結(jié)果,如下所示:

  1. $ getent services ssh
  2. ssh 22/tcp
  3. $ getent services http
  4. http 80/tcp www www-http
  5. $ getent services ftp
  6. ftp 21/tcp

如果你不知道端口名稱,但是知道端口號(hào),那么你只需將端口名稱替換為數(shù)字:

  1. $ getent services 80
  2. http 80/tcp

要顯示所有端口名稱和端口號(hào),只需運(yùn)行:

  1. $ getent services

方法 3:使用 Whatportis 程序

Whatportis 是一個(gè)簡(jiǎn)單的 Python 腳本,來用于查找端口名稱和端口號(hào)。與上述命令不同,此程序以漂亮的表格形式輸出。

確保已安裝 pip 包管理器。如果沒有,請(qǐng)參考以下鏈接。

安裝 pip 后,運(yùn)行以下命令安裝 Whatportis 程序。

  1. $ pip install whatportis

現(xiàn)在,你可以找到與服務(wù)關(guān)聯(lián)的端口,如下所示。

  1. $ whatportis ssh
  2. $ whatportis ftp
  3. $ whatportis http

我的 CentOS 7 服務(wù)器的示例輸出:

在 Linux 中查找服務(wù)的端口號(hào)

如果你不知道服務(wù)的確切名稱,請(qǐng)使用 –like 標(biāo)志來顯示相關(guān)結(jié)果。

  1. $ whatportis mysql --like

上述命令幫助你查找與服務(wù)關(guān)聯(lián)的端口。你還可以找到與端口號(hào)相關(guān)聯(lián)的服務(wù),如下所示。

  1. $ whatportis 993

你甚至可以以 JSON 格式顯示結(jié)果。

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