自学内容网 自学内容网

获取IPV6地址的参考网站|nginx解析IPV6|linux服务器获取IPV6的方法

获取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;
    ...
}

原文地址:https://blog.csdn.net/weixin_44213550/article/details/142324901

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!