获取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;
    ...
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值