通过 VPN 远程连接 powershell

发布于 2024-11-15 04:23:21 字数 259 浏览 6 评论 0原文

我看过一些涉及远程配置的不同教程 - 这个 似乎比平均 - 但我不清楚如何配置工作站不属于同一域的情况。

我正在使用 LogMeIn/Hamachi 创建 VPN - 我想要概述允许这些工作站执行脚本所需的步骤。具体来说,如何定义 TrustedHosts 以便仅允许我的 VPN 对等点?

I've seen a few different tutes covering remoting configuration - this one seems better than average - but I'm not clear how I configure for a situation where the workstations are not of the same domain.

I'm using LogMeIn/Hamachi to create a VPN - I'd like an overview of the steps required to allow script execution for these workstations. Specifically, how do I define TrustedHosts so that onle my VPN peers are permitted?

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

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

发布评论

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

评论(1

深陷 2024-11-22 04:23:21

我对 LogMeIn\Hamachi VPN 网络一无所知,但我假设使用它时会保留主机名。 (这可能没有帮助!)

如果您想信任某个特定的计算机,您可以使用这个:

set-item WSMan:\localhost\Client\TrustedHosts -value <Remote-computer-name>

如果它是一个域,您可以使用这个:

set-item WSMan:\localhost\Client\TrustedHosts -value *.subdomain.domain.com

也可以查看有关常见问题解答(Get-Help about_Remote_FAQ) - 这就是第一个来自的地方,第二个我用过。

哈特哈,
马特

I don't know anything about the LogMeIn\Hamachi VPN network, but I assume that the hostnames are preserved when using it. (it not this may not help!)

If you want to trust a particular machine you use this:

set-item WSMan:\localhost\Client\TrustedHosts -value <Remote-computer-name>

If it's a domain you can use this:

set-item WSMan:\localhost\Client\TrustedHosts -value *.subdomain.domain.com

Check out the about FAQ as well (Get-Help about_Remote_FAQ) - that's where the first came from, the second I've used.

HTH,
Matt

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文