您好,登錄后才能下訂單哦!
本篇內容主要講解“怎么在Linux中查找服務的端口號”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“怎么在Linux中查找服務的端口號”吧!
要使用 grep
命令在 Linux 中查找指定服務的默認端口號,只需運行:
$ grep <port> /etc/services
例如,要查找 SSH 服務的默認端口,只需運行:
$ grep ssh /etc/services
就這么簡單。此命令應該適用于大多數 Linux 發行版。以下是我的 Arch Linux 測試機中的示例輸出:
ssh 22/tcpssh 22/udpssh 22/sctpsshell 614/tcpsshell 614/udpnetconf-ssh 830/tcpnetconf-ssh 830/udpsdo-ssh 3897/tcpsdo-ssh 3897/udpnetconf-ch-ssh 4334/tcpsnmpssh 5161/tcpsnmpssh-trap 5162/tcptl1-ssh 6252/tcptl1-ssh 6252/udpssh-mgmt 17235/tcpssh-mgmt 17235/udp
正如你在上面的輸出中所看到的,SSH 服務的默認端口號是 22。
讓我們找到 Apache Web 服務器的端口號。為此,命令是:
$ grep http /etc/services# http://www.iana.org/assignments/port-numbershttp 80/tcp www www-http # WorldWideWeb HTTPhttp 80/udp www www-http # HyperText Transfer Protocolhttp 80/sctp # HyperText Transfer Protocolhttps 443/tcp # http protocol over TLS/SSLhttps 443/udp # http protocol over TLS/SSLhttps 443/sctp # http protocol over TLS/SSLgss-http 488/tcpgss-http 488/udpwebcache 8080/tcp http-alt # WWW caching servicewebcache 8080/udp http-alt # WWW caching service[...]
FTP 端口號是什么?這很簡單!
$ grep ftp /etc/servicesftp-data 20/tcpftp-data 20/udp# 21 is registered to ftp, but also used by fspftp 21/tcpftp 21/udp fsp fspdtftp 69/tcp[...]
如你所見,上面的命令顯示指定搜索詞 “ssh”、“http” 和 “ftp” 的所有端口名稱和數字。這意味著,你將獲得與給定搜索詞匹配的所有端口名稱的相當長的輸出。
但是,你可以使用 getent
命令精確輸出結果,如下所示:
$ getent services sshssh 22/tcp $ getent services httphttp 80/tcp www www-http $ getent services ftpftp 21/tcp
如果你不知道端口名稱,但是知道端口號,那么你只需將端口名稱替換為數字:
$ getent services 80http 80/tcp
要顯示所有端口名稱和端口號,只需運行:
$ getent services
Whatportis 是一個簡單的 Python 腳本,來用于查找端口名稱和端口號。與上述命令不同,此程序以漂亮的表格形式輸出。
確保已安裝 pip 包管理器。如果沒有,請參考以下鏈接。
如何使用 pip 管理 Python 包
安裝 pip 后,運行以下命令安裝 Whatportis 程序。
$ pip install whatportis
現在,你可以找到與服務關聯的端口,如下所示。
$ whatportis ssh $ whatportis ftp $ whatportis http
我的 CentOS 7 服務器的示例輸出:
在 Linux 中查找服務的端口號
如果你不知道服務的確切名稱,請使用 –like
標志來顯示相關結果。
$ whatportis mysql --like
上述命令幫助你查找與服務關聯的端口。你還可以找到與端口號相關聯的服務,如下所示。
$ whatportis 993
你甚至可以以 JSON 格式顯示結果。
$ whatportis 993 --json
到此,相信大家對“怎么在Linux中查找服務的端口號”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。