本文实例讲述了C#检测远程计算机端口是否打开的方法。分享给大家供大家参考。具体分析如下:
这段C#代码用于检测远程计算机的3389端口是否处理打开状态,可以根据实际需要设置其它端口
using System; using System.Collections.Generic; using System.Text; using System.Net.NetworkInformation; namespace test { class Program { static void Main(string[] args) { GetTcpConnections(); } public static void GetTcpConnections() { IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties(); TcpConnectionInformation[] connections = properties.GetActiveTcpConnections(); foreach (TcpConnectionInformation t in connections) { Console.Write("Local endpoint: {0} ", t.LocalEndPoint.ToString()); Console.Write("Remote endpoint: {0} ", t.RemoteEndPoint.ToString()); Console.WriteLine("{0}", t.State); } Console.WriteLine(); Console.ReadLine(); } } }
运行结果如下:
Local endpoint: 127.0.0.1:1025 Remote endpoint: 127.0.0.1:1026 Established Local endpoint: 127.0.0.1:1026 Remote endpoint: 127.0.0.1:1025 Established Local endpoint: 127.0.0.1:1028 Remote endpoint: 127.0.0.1:16992 CloseWait Local endpoint: 127.0.0.1:1110 Remote endpoint: 127.0.0.1:4900 Established Local endpoint: 127.0.0.1:2754 Remote endpoint: 127.0.0.1:1110 CloseWait Local endpoint: 127.0.0.1:2762 Remote endpoint: 127.0.0.1:1110 CloseWait Local endpoint: 127.0.0.1:2773 Remote endpoint: 127.0.0.1:1110 CloseWait Local endpoint: 127.0.0.1:2913 Remote endpoint: 127.0.0.1:1110 CloseWait Local endpoint: 127.0.0.1:3014 Remote endpoint: 127.0.0.1:1110 CloseWait Local endpoint: 127.0.0.1:3531 Remote endpoint: 127.0.0.1:1110 CloseWait Local endpoint: 127.0.0.1:4012 Remote endpoint: 127.0.0.1:1110 CloseWait Local endpoint: 127.0.0.1:4900 Remote endpoint: 127.0.0.1:1110 Established
希望本文所述对大家的C#程序设计有所帮助。
本文向大家介绍python检测远程端口是否打开的方法,包括了python检测远程端口是否打开的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了python判断远程端口是否打开的方法。分享给大家供大家参考。具体实现方法如下: 希望本文所述对大家的Python程序设计有所帮助。
本文向大家介绍python检测远程udp端口是否打开的方法,包括了python检测远程udp端口是否打开的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了python检测远程udp端口是否打开的方法。分享给大家供大家参考。具体实现方法如下: 希望本文所述对大家的Python程序设计有所帮助。
本文向大家介绍Android编程检测手机录音权限是否打开的方法,包括了Android编程检测手机录音权限是否打开的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Android编程检测手机录音权限是否打开的方法。分享给大家供大家参考,具体如下: 6.0之前的权限检测只是检测到是否在清单文件中注册 在6.0系统一下 无论是关闭或者打开app的录音权限都能获取到权限,6.0以上则正常,后来
本文向大家介绍C#实现远程关闭计算机或重启计算机的方法,包括了C#实现远程关闭计算机或重启计算机的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了C#实现远程关闭计算机或重启计算机的方法。分享给大家供大家参考。具体如下: 希望本文所述对大家的C#程序设计有所帮助。
问题内容: 我的特定问题与JDK 1.6中使用的JMX有关:如果我正在通过JRE 1.6运行Java进程 在命令行中,Java是否为远程JMX连接选择默认端口? 背景:我目前正在尝试开发一个过程,以提供给客户,使他们能够通过远程机器上的JMX连接到我们的流程之一。目的是帮助他们对实时显示控制台上发生的情况进行远程调试。由于他们的服务水平协议,他们强烈地希望捕获尽可能多的数据,并且如果情况看起来太复
问题内容: 如何通过bash脚本快速确定服务器上端口是否处于打开/侦听状态。 我已经尝试了几个选项,但我想要的东西快: 1 (只需几秒钟) 2. (只需几秒钟) 3. (不返回) 4 ,不可用在服务器上 很高兴知道一种不会先枚举然后在此之后摸索的方式。 问题答案: 我最近发现的一个惊喜是Bash本身支持tcp连接作为文件描述符。使用方法: 我使用6作为文件描述符,因为0,1,2是stdin,std