Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通常我使用 ping 来确定以太网状态,例如:
ping -c 1 -w 1 <ip_addr>
我们如何使用系统调用来确定以太网状态?我们如何将这个方法嵌入到 java 代码中?
ping 不能确定以太网状态;它发送一个数据包并等待响应,因此它用于端到端测试网络。
您当然可以编写自己的 ping,互联网上有很多示例。在 Linux 下,您通常需要 root 才能使用所需的套接字类型。
如果您真的只是想确定链接是否处于活动状态,请查看输出
ip link sh