在Java中,我如何知道主机上的某个端口是否打开?(除了如果可能的话使用套接字)

发布于 2024-11-04 09:00:18 字数 345 浏览 0 评论 0原文

新生,在这里和爪哇 我知道这样的代码:

Socket clientSocket=null;

try   
{   
  clientSocket=new Socket(192.168.2.3,1111);
  System.out.println("port open");   
  clientSocket.close();   
}   
catch(Exception   e)   
{   
  System.out.println("port closed");
}

可以用来测试某个端口是否打开(这里是192.168.2.3上的端口1111),只是徘徊还有其他方法吗?也许不使用套接字()?

freshman, both here and in Java
i know codes like:

Socket clientSocket=null;

try   
{   
  clientSocket=new Socket(192.168.2.3,1111);
  System.out.println("port open");   
  clientSocket.close();   
}   
catch(Exception   e)   
{   
  System.out.println("port closed");
}

can be used to test whether certain port is open(here is port 1111 on 192.168.2.3), just wandering is there any other way?? not using socket() maybe??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

两相知 2024-11-11 09:00:18

简而言之:是的,建立连接是探测开放端口的正确方法,如果您找到其他方法,它将在幕后使用 socket() 。

整个问题的复杂性来自于这样一个事实:“开放端口”是每本安全书籍中的头号嫌疑对象。系统管理员使用一系列技巧来对抗所谓的“端口扫描”。这包括向任何行为类似于端口扫描器(即:建立连接并断开连接而不发送任何数据)的软件报告“误报”(声称端口已打开,但实际上并未打开)。

所以实际上最好的方法是建立连接、发送请求并处理响应。在某些网络/主机/安全配置下,所有其他方法都可能失败,让您的用户感到困惑,为什么他的应用程序声称连接没有问题时却无法工作。

To simplyfy things a bit: yes, establishing a connection is correct way to probe for open port, and if you even find other method, it will be using socket() under the hood.

Complexity of the whole problem comes from the fact that "open port" is a number one suspect in every security book out there. System administrators use a bunch of tricks to fight so called "port scanning". This includes reporting a "false positive" (claiming that port is open while it is not) to any software that behaves like a port scanner (that is: makes a connection and disconnects without sending any data).

So in reality the best way is to establish connection, send request and process response. Every other approach can fail under certain network/host/security configurations, leaving your user puzzled as to why his application doesn't work when it claims there is no problem with connection.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文