广告位联系
返回顶部
分享到

使用curl命令查看服务器端口开放情况的方法

linux shell 来源:互联网 作者:佚名 发布时间:2024-05-08 21:43:37 人浏览
摘要

1.ssh端口 22 curl -v 10.10.10.205:22 1 2 3 4 5 6 7 8 9 10 11 curl -v 10.10.10.205:22 * Trying 10.10.10.205:22... * Connected to 10.10.10.205 (10.10.10.205) port 22 GET / HTTP/1.1 Host: 10.10.10.205:22 User-Agent: curl/8.4.0 Accept: */* * Received H

1.ssh端口 22

curl -v 10.10.10.205:22

1

2

3

4

5

6

7

8

9

10

11

curl -v 10.10.10.205:22

*   Trying 10.10.10.205:22...

* Connected to 10.10.10.205 (10.10.10.205) port 22

> GET / HTTP/1.1

> Host: 10.10.10.205:22

> User-Agent: curl/8.4.0

> Accept: */*

>

* Received HTTP/0.9 when not allowed

* Closing connection

curl: (1) Received HTTP/0.9 when not allowed

2.mysql数据库端口 3306

curl -v 10.10.10.205:3306

1

2

3

4

5

6

7

8

9

10

11

curl -v 10.10.10.205:3306

*   Trying 10.10.10.205:3306...

* Connected to 10.10.10.205 (10.10.10.205) port 3306

> GET / HTTP/1.1

> Host: 10.10.10.205:3306

> User-Agent: curl/8.4.0

> Accept: */*

>

* Received HTTP/0.9 when not allowed

* Closing connection

curl: (1) Received HTTP/0.9 when not allowed

3.web应用端口 (Jellyfin 8082)

curl -v 10.10.10.205:8082

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

curl -v 10.10.10.205:8082

*   Trying 10.10.10.205:8082...

* Connected to 10.10.10.205 (10.10.10.205) port 8082

> GET / HTTP/1.1

> Host: 10.10.10.205:8082

> User-Agent: curl/8.4.0

> Accept: */*

>

< HTTP/1.1 302 Found

< Content-Length: 0

< Date: Tue, 07 May 2024 13:22:55 GMT

< Server: Kestrel

< Location: /web/index.html

<

* Connection #0 to host 10.10.10.205 left intact

(wordpress 8088)

curl -v 10.10.10.205:8088

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

curl -v 10.10.10.205:8088

*   Trying 10.10.10.205:8088...

* Connected to 10.10.10.205 (10.10.10.205) port 8088

> GET / HTTP/1.1

> Host: 10.10.10.205:8088

> User-Agent: curl/8.4.0

> Accept: */*

>

< HTTP/1.1 200 OK

< Date: Tue, 07 May 2024 13:20:40 GMT

< Server: Apache/2.4.57 (Debian)

< X-Powered-By: PHP/8.2.18

< Link: <http://10.10.10.205:8088/wp-json/>; rel="https://api.w.org/"

< Vary: Accept-Encoding

< Transfer-Encoding: chunked

< Content-Type: text/html; charset=UTF-8

<

<!DOCTYPE html>

。。。

。。。

(tomcat 8080)

curl -v 10.10.10.205:8080

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

curl -v 10.10.10.205:6666

*   Trying 10.10.10.205:6666...

* connect to 10.10.10.205 port 6666 failed: Connection refused

* Failed to connect to 10.10.10.205 port 6666 after 2051 ms: Couldn't connect to server

* Closing connection

curl: (7) Failed to connect to 10.10.10.205 port 6666 after 2051 ms: Couldn't connect to server

  

C:\Users>curl -v 10.10.10.205:8080

*   Trying 10.10.10.205:8080...

* Connected to 10.10.10.205 (10.10.10.205) port 8080

> GET / HTTP/1.1

> Host: 10.10.10.205:8080

> User-Agent: curl/8.4.0

> Accept: */*

>

< HTTP/1.1 200

< Content-Type: text/html;charset=UTF-8

< Transfer-Encoding: chunked

< Date: Tue, 07 May 2024 13:19:25 GMT

<

  

  

  

<!DOCTYPE html>

<html lang="en">

    <head>

        <meta charset="UTF-8" />

        <title>Apache Tomcat/9.0.30</title>

。。。

。。。

4.不存在的端口

curl -v 10.10.10.205:6666

1

2

3

4

5

6

curl -v 10.10.10.205:6666

*   Trying 10.10.10.205:6666...

* connect to 10.10.10.205 port 6666 failed: Connection refused

* Failed to connect to 10.10.10.205 port 6666 after 2051 ms: Couldn't connect to server

* Closing connection

curl: (7) Failed to connect to 10.10.10.205 port 6666 after 2051 ms: Couldn't connect to server

5.被防火墙阻挡的端口

连接一段时间后,提示timeout


版权声明 : 本文内容来源于互联网或用户自行发布贡献,该文观点仅代表原作者本人。本站仅提供信息存储空间服务和不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权, 违法违规的内容, 请发送邮件至2530232025#qq.cn(#换@)举报,一经查实,本站将立刻删除。

您可能感兴趣的文章 :

原文链接 :
相关文章
  • shell set -u 和set +u的具体使用
    shell中 ,set -u之后,使用没有初始化的变量,会导致报错 set -u: 表示该命令之后,当命令使用到未定义过的变量时,脚本直接退出,后续命令
  • 使用curl命令查看服务器端口开放情况的方法

    使用curl命令查看服务器端口开放情况的方法
    1.ssh端口 22 curl -v 10.10.10.205:22 1 2 3 4 5 6 7 8 9 10 11 curl -v 10.10.10.205:22 * Trying 10.10.10.205:22... * Connected to 10.10.10.205 (10.10.10.205) port 22 GET / HTTP/1.1
  • linux命令中的大于号、小于号的作用及代表的意思

    linux命令中的大于号、小于号的作用及代表的意思
    在linux中,大家也许会经常看到 、 、 、、这几个小于号、大于号,那么他们分别代表什么意思呢? 好的我们来实验下先,先创建个 test.t
  • 进程状态ps -ef中的e、f含义讲解

    进程状态ps -ef中的e、f含义讲解
    linux或mac控制台下输入ps -ef | grep 关键字可以查看是否有相应的进程启动信息中包含关键字。如: ps的意思是process status,即进程状态。在控
  • Linux中的grep -v、-e、-E用法小结
    grep(global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜
  • Linux实现彻底清理空文件夹的方法

    Linux实现彻底清理空文件夹的方法
    最近工作中遇到一个需求删除指定路径下的所有空文件夹。这里的空文件夹的认定标准是:如果某个文件夹的子文件夹全是空文件夹,也认
  • shell脚本实现字符串的动态替换方法

    shell脚本实现字符串的动态替换方法
    我们有时候需要完成字符串的多组替换,比如需要完成以下替换 将小草替换为真是让人印象深刻 将小狗的替换为可爱的 将你听清楚了吗替
  • shell循环命令的介绍
    1. for 命令 1.1 for 命令的使用 bash shell 提供了for命令,可以创建一个遍历一系列值的循环。每次一轮循环都使用其中一个值来执行已定义好的
  • shell脚本设置日志格式的方法
    shell脚本设置日志格式 1.封装函数 #!/bin/bash function log() { echo $@ } //测试: log this is a test... log today is `date +%Y-%m-%d` 2.设置时间日志 #!/bin/bash
  • linux下shell脚本备份文件的方法实现
    1、shell自动备份 主要功能: 1)将pathSrc目录中的文件拷贝到pathDst目录中去。 具体步骤:先查询源目录和目标目录中的文件,分别存在file
  • 本站所有内容来源于互联网或用户自行发布,本站仅提供信息存储空间服务,不拥有版权,不承担法律责任。如有侵犯您的权益,请您联系站长处理!
  • Copyright © 2017-2022 F11.CN All Rights Reserved. F11站长开发者网 版权所有 | 苏ICP备2022031554号-1 | 51LA统计