获取IPV6地址的参考网站

网址1 https://v6.ident.me/

网址2 https://ifconfig.co/

网址3 https://ifconfig.me/

IPV6检测站点推荐

网址1 http://ipv6-test.ch/
在这里插入图片描述

linux服务器获取IPV6的方法 以centos7为例

curl -6 ifconfig.me

curl -6 https://v6.ident.me


curl -6 https://ifconfig.co

nginx解析IPV6

server {
    listen 443 ssl;
    listen [::]:443 ssl;
    server_name example.com;

    ssl_certificate /path/to/cert.crt;
    ssl_certificate_key /path/to/cert.key;
    ...
}
server {
    listen [::]:80 ipv6only=on;
    server_name example.com;
    ...
}
Logo

中德AI开发者社区由X.Lab发起,旨在促进中德AI技术交流与合作,汇聚开发者及学者,共同探索前沿AI应用与创新。加入我们,共享资源,共创未来!🚀

更多推荐