一般情况下使用"telnet ip port"判断端口通不通,其实测试方法不止这一种,还有很多种方法,下面小编给大家分享了几种方法,具体内容请往下看:
准备环境
启动一个web服务器,提供端口.
[wyq@localhost ~]$ python -m SimpleHTTPServer 8080 Serving HTTP on 0.0.0.0 port 8080 ...
用其它web服务器提供端口也一样,由于python比较方便,这里就用它
1、使用telnet判断
telnet是windows标准服务,可以直接用;如果是linux机器,需要安装telnet.
用法: telnet ip port
1)先用telnet连接不存在的端口
[root@localhost ~]# telnet 10.0.250.3 80 Trying 10.0.250.3... telnet: connect to address 10.0.250.3: Connection refused #直接提示连接被拒绝
2)再连接存在的端口
[root@localhost ~]# telnet localhost 22 Trying ::1... Connected to localhost. #看到Connected就连接成功了 Escape character is '^]'. SSH-2.0-OpenSSH_5.3 a Protocol mismatch. Connection closed by foreign host.
2、使用ssh判断
ssh是linux的标准配置并且最常用,可以用来判断端口吗?
用法: ssh -v -p port username@ip
-v 调试模式(会打印日志).
-p 指定端口
username可以随意
1)连接不存在端口
[root@localhost ~]# ssh 10.0.250.3 -p 80 ssh: connect to host 10.0.250.3 port 80: Connection refused [root@localhost ~]# ssh 10.0.250.3 -p 80 -v OpenSSH_5.3p1, OpenSSL 1.0.1e-fips 11 Feb 2013 debug1: Reading configuration data /etc/ssh/ssh_config debug1: Applying options for * debug1: Connecting to 10.0.250.3 [10.0.250.3] port 80. debug1: connect to address 10.0.250.3 port 80: Connection refused ssh: connect to host 10.0.250.3 port 80: Connection refused
2)连接存在的端口
[root@localhost ~]# ssh ... -p a ^] ^C [root@localhost ~]# ssh ... -p -v OpenSSH_.p, OpenSSL ..e-fips Feb debug: Reading configuration data /etc/ssh/ssh_config debug: Applying options for * debug: Connecting to ... [...] port . debug: Connection established. debug: permanently_set_uid: / debug: identity file /root/.ssh/identity type - debug: identity file /root/.ssh/identity-cert type - debug: identity file /root/.ssh/id_rsa type - debug: identity file /root/.ssh/id_rsa-cert type - debug: identity file /root/.ssh/id_dsa type - debug: identity file /root/.ssh/id_dsa-cert type - a ^C
不用-v选项也可以咯
3、使用wget判断
wget是linux下的下载工具,需要先安装.
用法: wget ip:port
1)连接不存在的端口
[root@localhost ~]# wget ...: ---- ::-- http://.../ Connecting to ...:... failed: Connection refused.
2)连接存在的端口
[root@localhost ~]# wget ...: ---- ::-- http://...:/ Connecting to ...:... connected. HTTP request sent, awaiting response...
4、使用端口扫描工具
[root@localhost ~]# nmap ... -p Starting Nmap . ( http://nmap.org ) at -- : CST Nmap scan report for ... Host is up (.s latency). PORT STATE SERVICE /tcp closed http MAC Address: B:A::CF:FD:D (Unknown) Nmap done: IP address ( host up) scanned in . seconds [root@localhost ~]# nmap ... -p Starting Nmap . ( http://nmap.org ) at -- : CST Nmap scan report for ... Host is up (.s latency). PORT STATE SERVICE /tcp open http-proxy MAC Address: B:A::CF:FD:D (Unknown) Nmap done: IP address ( host up) scanned in . seconds [root@localhost ~]# nmap ... Starting Nmap . ( http://nmap.org ) at -- : CST Nmap scan report for ... Host is up (.s latency). Not shown: closed ports PORT STATE SERVICE /tcp open ssh /tcp open rpcbind /tcp open http-proxy /tcp open unknown MAC Address: B:A::CF:FD:D (Unknown) Nmap done: IP address ( host up) scanned in . seconds
总结
提供端口服务,则使用了tcp协议,上面是以web服务器为例。如果服务器是更简单的tcp服务器,三个工具同样适用.
三个工具的共同点是:1.以tcp协议为基础;2.能访问指定端口. 遵循这两点可以找到很多工具.
一般在windows下使用telnet比较方便,linux下个人就比较喜欢用wget.
我有这个界面: 我想测试它的实现,但我得到: 在测试中,我使用: 我错过了什么
如何通过不同的测试数据在Playwright测试运行测试?比如从CSV文件发送测试数据?
问题内容: 我在通过此测试时遇到问题。问题是,我的结构体中的方法需要写入属性,但接口不接受指针作为其接收者。 测试输出: 正如我提到的,不会被写入,因为我无法将函数接收器设置为指针,因为它不能满足。 问题答案: 如果继续使用一个 指针 来,它应该工作: 然后: 我错过了: 您需要调用指针接收器,而不是值接收器。 由于所有内容都是通过Go中的值传递的,因此使用值接收器将 复制 该实例。
问题内容: 我正在为我的React代码编写Jest测试,并希望使用/测试PropType检查。我对Javascript领域很陌生。我正在使用npm进行安装并有一个简单的方法: 在我的测试中。我的测试看起来很像玩笑/反应教程示例,其代码如下: 但是,似乎并未触发组件中的PropType检查。我知道检查仅在开发模式下运行,但是我还认为通过npm获得了开发版本。当我使用watchify构建组件时,检查会
我有一个测试类的问题。 在我的ParkingSpotService类中,有一个UUID找到的方法,我想为此编写一个测试: 我做了什么?我创建了一个TestClass ParkingSpotServiceTest: } 在我创建了一个测试之后 观察: 当我检查optionalParkingSpot时,所有数据都在那里。
本文向大家介绍linux解决ping通但端口不通的问题,包括了linux解决ping通但端口不通的问题的使用技巧和注意事项,需要的朋友参考一下 能ping 通但端口不通时端口可用性探测说明 端口可用性探测工具介绍 不同的操作系统,端口可用性探测所使用的工具也有所不同。 Linux 环境下端口可用性探测工具介绍 traceroute 是几乎所有 Linux 发行版本预装的网络测试工具,用于跟踪 In
本文向大家介绍java如何测试网络连通性,包括了java如何测试网络连通性的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家分享了Java测试网络连通性的方法,供大家参考,具体内容如下 第一种方式:利用java运行时: Java代码 在windows平台上,上面代码没有为,ping ip 会结束,而在linux环境中ping命令,ping不通时, 会卡住,ping通,会不定的输出信息,考虑用
我通过adb自动关闭/打开wifi。 我想根据测试用例禁用/启用wifi 到目前为止,我在这里找到了很好的信息 但是,我想在执行以下命令之前测试连接: 以上命令如果启用则禁用wifi,如果禁用则启用wifi。我想先测试连接,并在需要时采取措施。我想知道是否有一种方法可以使用adb命令。这可以通过编程实现,但我希望通过亚行来实现,使其更加可靠。 此外,以下命令仅在设备为根目录时有效 此外,以下命令在