检查服务器是否可以通过 IPv6 访问?
是否可以使用 C# 检查服务器是否可以通过 IPv6 访问?
Is is possible to check if a server is accessible via IPv6 with c#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以使用 C# 检查服务器是否可以通过 IPv6 访问?
Is is possible to check if a server is accessible via IPv6 with c#?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
遍历Dns.GetHostEntry返回的地址列表,检查是否有
IsIPv6xxxx
属性设置为 trueTraverse the address list returned from Dns.GetHostEntry and check if any of the
IsIPv6xxxx
properties is set to true这取决于您的意思 - 如果您知道(或可以解析)服务器的主机名或 DNS 名称为 IPv6 地址,那么您应该可以做一些事情。
您可以使用 IPv6 向服务器发送测试数据包,然后查看是否收到响应。或者,如果您一直采用 IPv6,则可以将自己的网络层更改为仅 IPv6。在较新版本的 Windows 服务器上,我相信您可以打开 IPv6 并关闭 IPv4。
希望有帮助!
It depends on what you mean - if you know (or can resolve) the server's hostname or DNS name to an IPv6 address, it should be possible for you to do a couple of things.
You could either send a test packet using IPv6 to the server and see if you get a response back. Alternatively, if you're going IPv6 all the way, you could change your own network layer to be IPv6 only. On newer releases of Windows server I believe you can switch IPv6 on and IPv4 off.
Hope that helps!