从 Windows 中按名称查找 mac 的最佳方法是什么?

发布于 2025-01-04 14:41:12 字数 261 浏览 1 评论 0原文

我习惯了 mac 上的 bonjour。我希望 Windows 机器(v.7)有一种简单的方法可以使用可解析的名称找到我的 mac。

这需要通过浏览器来完成。

我想要尽可能少的设置。我可以配置 mac 或 windows,但更愿意让我的 mac 可用于多台 windows 计算机。

我对 Zeroconf 和 dns-sd 有一定了解,但我无法确定需要做什么才能使这项工作正常进行。一些建议似乎表明我需要安装 dns-sd,然后安装 firefox 等插件。

I'm used to bonjour from mac. I'm hoping there is an easy way for windows machines (v. 7) to find my mac using a resolvable name.

This needs to be done by a browser.

I'd like as little setup as possible. I can configure mac or windows, but would prefer to make my mac available to multiple windows machines.

I am somewhat aware of zeroconf and dns-sd, but I was unable to determine what I need to do to make this work. Some suggestions seem to indicate that I would need to install dns-sd and then a plugin for firefox etc.

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

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

发布评论

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

评论(1

玩套路吗 2025-01-11 14:41:12

在 Windows CMD 中,输入“arp -a”并按 Enter 键。这仅适用于本地网络。

如果您需要在浏览器中完成此操作...您可以运行本地网络 Web 服务器吗?

(LAMP 还是其他什么?)

如果是这样,请将其放入 PHP 文件中......

<?php
echo '<body bgcolor="#FFFFFF" text="#000000"></body>'; 
echo '<pre>';
passthru("arp -a");
echo '</pre>';
?>

In Windows CMD, type "arp -a" and press enter. This only works for the local network.

If you need this to be done in browser... can you run a local-network web server?

(LAMP or something?)

If so, put this into a PHP file...

<?php
echo '<body bgcolor="#FFFFFF" text="#000000"></body>'; 
echo '<pre>';
passthru("arp -a");
echo '</pre>';
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文