Linux测试端口连通的几种方式

2023-12-13 04:29:39

在很多生产环境中会需要测试端口是否连通,在很多时候生产环境中未安装 telnet 等一系列命令,这就需要我们学习更多的几种测试端口的方式。以下是对常用的几种方式进行整理。

  1. curl
curl -v ip:port
# 成功
# About to connect() to xxx port xx(#0)
#   Trying 192.168.3.234...
# Connected to xxx (xxx) port xxx (#0)
  1. ssh
ssh -v  -p port  ip
#成功
#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 x.x.x.x [x.x.x.x] port xx.
#debug1: Connection established.
  1. telnet
telnet ip port
# 成功
#Trying x.x.x.x...
#Connected to x.x.x.x.
#Escape character is '^]'.
  1. wget
wget ip:port
#成功
# 正在连接 x.x.x.x:xx... 已连接。
# 已发出 HTTP 请求,正在等待回应... 200 OK

  1. nc
#tcp
nc -vz ip port
#udp
nc -uz ip port
#成功
#Ncat: Version 7.50 ( https://nmap.org/ncat )
#Ncat: Connected to x.x.x.x:xx.
#Ncat: 0 bytes sent, 0 bytes received in 0.01 seconds.

文章来源:https://blog.csdn.net/hongchenshijie/article/details/134849550
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。