使用 boost::asio 查找子网上所有可访问的 ip
我想要一种使用 boost 来查找子网上所有可到达的 ip(响应 ping)的方法。
即给定子网 = 10.10.10.0 和可访问的 ips 10.10.10.1-5,结果应该是一个列表: 10.10.10.1 , ... , 10.10.10.5
目前我有一个脚本可以 ping 子网并检查 arp 缓存对于可到达的 ip。
I would like a way to use boost to find all reachable ips(responding to a ping) on a subnet.
i.e. given subnet = 10.10.10.0 and ips 10.10.10.1-5 that are reachable, the result should be a list: 10.10.10.1 , ... , 10.10.10.5
Currently I have a script that pings the subnet and checks the arp cache for reachable ips.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
他们有一个 ping 示例在文档中。
They have a ping example in the docs.