当我连接到 VPN 服务器时,有什么方法可以获取 IP 地址
我目前正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
返回所有 IP4 和 IP6。
Cisco VPN 并不总是向客户端显示 VPN 连接的 IP。
try this:
Return al IP4 and IP6.
Cisco VPN not always show to client the IP of vpn connection.