在 Java 中使用 Ping 排除主机可达性问题
在 Java 中,可以使用 InetAddress.isReachable() 方法对 IP 地址执行 ping 操作。但是,有时可能会遇到无法访问 localhost 以外的主机的问题。
原始问题
考虑以下 Java 代码片段:
<code class="java">public static void main(String[] args) throws UnknownHostException, IOException { String ipAddress = "127.0.0.1"; InetAddress inet = InetAddress.getByName(ipAddress); System.out.println("Sending Ping Request to " + ipAddress); System.out.println(inet.isReachable(5000) ? "Host is reachable" : "Host is NOT reachable"); ipAddress = "173.194.32.38"; inet = InetAddress.getByName(ipAddress); System.out.println("Sending Ping Request to " + ipAddress); System.out.println(inet.isReachable(5000) ? "Host is reachable" : "Host is NOT reachable"); }</code>
此代码的输出为:
Sending Ping Request to 127.0.0.1 Host is reachable Sending Ping Request to 173.194.32.38 Host is NOT reachable
此结果表明 ping localhost 成功,但其他主机无法访问。
解决方案说明
根据Java文档中的InetAddress.isReachable()方法:
"...如果可以获得
权限,典型的实现将使用ICMP ECHO REQUEST,否则它将尝试建立目标主机端口 7 (Echo) 上的 TCP
连接...”
选项 #1(使用 ICMP ECHO 请求)通常需要管理(root)权限。如果未授予这些权限,该方法将尝试使用 TCP 来确定可达性。
结论
当 ping localhost 以外的主机时遇到问题,可能是不授予 ICMP 特权。确保授予必要的权限可以解决主机无法访问错误。
以上是为什么我的 Java 代码无法 Ping 本地主机以外的主机?的详细内容。更多信息请关注PHP中文网其他相关文章!