当我连接到 VPN 服务器时,有什么方法可以获取 IP 地址

发布于 2024-12-05 22:04:06 字数 358 浏览 1 评论 0原文

我目前正在使用 Powershell 获取我的机器的所有 IP 地址的列表。当我不使用 VPN 连接时(当我在工作时),我会得到正确的机器 IP 地址。但是当我在家并使用 VPN 连接时,我会获得客户端提供的另一个 IP 地址。我想获取 VPN 客户端提供给我的第二个 IP 地址。

我目前正在使用这个查询

(gwmi -query“从 Win32_NetworkAdapterConfiguration = True 选择 IP 地址”).IpAddress

但是,正如我之前所说,此查询不会提供 VPN 客户端提供的 IP 地址。

请建议..

谢谢和问候 导航

I am currently using Powershell to get me the list of all the IP Address of my machine. When I am not using my vpn connection ( when I am at work) I get the IP Address of my machine correct. but When I am at home and I am using my VPN connection, I get another IP Address which is being provided by the client. I would like to get the second IP Address provided to me by the VPN client.

I am currently using this query

(gwmi -query "Select IPAddress From Win32_NetworkAdapterConfiguration = True").IpAddress

However like I have said before this query does not give me the IP address provided by the VPN client .

Please suggest..

Thanks and Regards
Nav

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

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

发布评论

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

评论(1

明月松间行 2024-12-12 22:04:06

试试这个:

[System.Net.Dns]::GetHostEntry($a).addresslist

返回所有 IP4 和 IP6。
Cisco VPN 并不总是向客户端显示 VPN 连接的 IP。

try this:

[System.Net.Dns]::GetHostEntry($a).addresslist

Return al IP4 and IP6.
Cisco VPN not always show to client the IP of vpn connection.

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