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

在很多生产环境中会需要测试端口是否连通,在很多时候生产环境中未安装 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 -vuz 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.

  • 8
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值