溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

總結(jié)幾種Linux環(huán)境下端口狀態(tài)判斷的方法

發(fā)布時間:2020-06-18 15:22:37 來源:網(wǎng)絡(luò) 閱讀:763 作者:邱團(tuán)長 欄目:系統(tǒng)運(yùn)維

1. nc命令
語法:nc -z -v -n IPADDRESS port
-z 僅用于端口掃描,0輸入輸出
-v 顯示指令執(zhí)行過程
-n 直接使用IP地址,而不是通過域名服務(wù)器

[root@shansibleqa ~]# nc -z -v -n IP 22
Ncat: Version 7.50 ( https://nmap.org/ncat )
Ncat: Connected to IP:22.
Ncat: 0 bytes sent, 0 bytes received in 0.01 seconds.
[root@shansibleqa ~]# nc -z -v -n IP 587
Ncat: Version 7.50 ( https://nmap.org/ncat )
Ncat: Connected to IP:587.
Ncat: 0 bytes sent, 0 bytes received in 0.01 seconds.

2. wget命令
語法:wget ip:port
如果通

[root@shansibleqa ~]# wget IP:22
--2019-12-24 17:43:50--  http://IP:22/
Connecting to IP:22... connected.
HTTP request sent, awaiting response... 200 No headers, assuming HTTP/0.9
Length: unspecified

如果不通

[root@shansibleqa ~]# wget IP:80
--2019-12-24 17:43:56--  http://IP/
Connecting to IP:80... failed: No route to host.

3. shell命令
語法:ssh -v -p port IP
能夠連上

[root@shansibleqa ~]# ssh -v -p 80 XX.XX.XX.XX
OpenSSH_7.4p1, OpenSSL 1.0.2k-fips  26 Jan 2017
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 58: Applying options for *
debug1: Connecting to XX.XX.XX.XX [XX.XX.XX.XX] port 80.
debug1: Connection established.
debug1: permanently_set_uid: 0/0

連不上

[root@shansibleqa ~]# ssh -v -p 23 XX.XX.XX.XX
OpenSSH_7.4p1, OpenSSL 1.0.2k-fips  26 Jan 2017
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 58: Applying options for *
debug1: Connecting to XX.XX.XX.XX [XX.XX.XX.XX] port 23.
debug1: connect to address XX.XX.XX.XX port 23: Connection timed out
ssh: connect to host XX.XX.XX.XXport 23: Connection timed out

4. curl命令
語法:curl ip:port
端口通

[root@shansibleqa ~]# curl ip:22
SSH-2.0-OpenSSH_7.4
curl: (56) Recv failure: Connection reset by peer

端口不通

[root@shansibleqa ~]# curl ip:443
curl: (52) Empty reply from server
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI