Visual Basic - 检查端口是否打开
好的,我正在制作一个 Visual Basic GUI 应用程序来显示我的多个端口是否打开,以便人们了解我的网站和 Minecraft 服务器等内容是否打开。
我的问题是我完全不知道如何在 Visual Basic 中执行此操作。
基本上,我要求向具有特定端口的 IP 发送信号,如果端口打开则返回 true,如果关闭则返回 false。类似于:http://www.canyouseeme.org/
Ok, I'm making a Visual Basic GUI application to display whether a number of my ports are open for people to know whether things like my website and my Minecraft server are open.
My problem is I have absolutely no idea how to do this in Visual Basic.
Basically, I'm asking for something which sends a signal to an IP with a specific port, if it is open then return true, if it's closed, return false. Similar to: http://www.canyouseeme.org/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 http://www.codeproject 上的“使用 asp.net 用 c# 编写的端口扫描器”。 com/KB/aspnet/WebSitePortScanner.aspx。它是 C#,但转换为 VB.NET 很简单。
如果您需要 VB,那就更难了,但是搜索“端口扫描器”和“Visual Basic”应该会找到一些东西。
See "port scanner written in c# with asp.net" at http://www.codeproject.com/KB/aspnet/WebSitePortScanner.aspx. It is C#, but it is simple enough to convert to VB.NET.
If you need VB, it will be harder, but searching on "port scanner" and "visual basic" should turn up something.