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

相关推荐

  1. Linux测试端口方式

    2023-12-10 16:58:03       38 阅读
  2. Linux端口转发常用方法

    2023-12-10 16:58:03       39 阅读
  3. 网络安全-端口扫描和服务识别方式

    2023-12-10 16:58:03       36 阅读
  4. linux c获取pid tid方式

    2023-12-10 16:58:03       29 阅读
  5. Linux 设置一个程序开机启动方式

    2023-12-10 16:58:03       16 阅读
  6. Linux查看日志方法

    2023-12-10 16:58:03       16 阅读

最近更新

  1. TCP协议是安全的吗?

    2023-12-10 16:58:03       18 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2023-12-10 16:58:03       19 阅读
  3. 【Python教程】压缩PDF文件大小

    2023-12-10 16:58:03       19 阅读
  4. 通过文章id递归查询所有评论(xml)

    2023-12-10 16:58:03       20 阅读

热门阅读

  1. spring bean的生命周期

    2023-12-10 16:58:03       39 阅读
  2. ARM系统软件工程师必备的资源

    2023-12-10 16:58:03       45 阅读
  3. Reactor模型

    2023-12-10 16:58:03       38 阅读
  4. 猜数字游戏与关机程序

    2023-12-10 16:58:03       38 阅读
  5. 安装部署Docker-Compose

    2023-12-10 16:58:03       28 阅读
  6. Linux C++快速入门

    2023-12-10 16:58:03       38 阅读
  7. Vue笔记(二)基本语法

    2023-12-10 16:58:03       34 阅读
  8. 二、安全与风险管理—信息安全治理

    2023-12-10 16:58:03       46 阅读