找出本地网络中设备的 bonjour 名称的最简单方法是什么?
这个问题说明了一切。
有人可以告诉我这是否可能以及如何实现吗?
我已经有了我想要 bonjour 名称的设备的 IP 地址和 MAC 地址...
the question says it all.
Can someone please tell me if that is possible and how?
I already have the IP Addresses and the MAC Addresses of the devices I want the bonjour name from...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您正在寻找 .local 域中的计算机,并且您的 mDNS 服务器侦听默认保留 IP
224.0.0.251
、端口 5353,您可以使用 dig 以与引用单播主机名相同的方式:其中
192.168.1.12
是您要查看的 IP。Assuming you're looking for machines in the .local domain and your mDNS server listens on the default reserved IP of
224.0.0.251
, port 5353 you can perform a reverse lookup with dig in the same way you'd refer to a unicast hostname:Where
192.168.1.12
is the IP you want to check out.