在vps商家都在卷的情况下一些商家推出价格低廉实惠的纯v6服务器,然而大多数人不会用,这里就介绍纯v6服务器如何使用

1:如何和v4网站通讯-NAT64与WARP

得到机器IP后登录后台,先尝试安装xui,如果提示安装报错那么你的机器是无法访问gitghub的,这时候我们要添加一个nat64实现访问github,修改/etc/resolv.conf,添加:
nameserver 2001:67c:2b0::4
nameserver 2001:67c:2b0::6

或者使用一键代码:mv /etc/resolv.conf /etc/resolv.conf.bak && echo -e "nameserver 2001:67c:2b0::4\nameserver 2001:67c:2b0::6" > /etc/resolv.conf

保存完成后重启服务器

重启后应该可以访问github了,这时候可以尝试安装xui,协议推荐使用vmess+ws协议,无需tls,使用ws的原因是方便套用cdn,然后安装WARP为你的纯v6机安装一个虚拟v4出口,
使用一键代码:wget -N https://gitlab.com/fscarmen/warp/-/raw/main/menu.sh && bash menu.sh
根据选择为IPv6机添加一个WARP IPv4即可,

这样你的v6机就可以像正常vps一样使用了


常见问题1:使用了NAT64和WARP安装xui依旧报错

如何解决:1:使用勇哥的xui面板或者使用八合一脚本安装,2:尝试更换系统如debian不行就换centos

勇哥xui:bash <(curl -Ls https://raw.githubusercontent.com/yonggekkk/x-ui-yg/main/install.sh)

八合一:wget -P /root -N --no-check-certificate "https://raw.githubusercontent.com/mack-a/v2ray-agent/master/install.sh" && chmod 700 /root/install.sh && /root/install.sh

勇哥的口碑这个很难评价,作为吃瓜群众也不清楚真实情况,但他的这个xui确实对纯v6机器做了优化,八合一也对纯v6机器做了优化。

问题2:WARP无法安装

我遇到的一般是系统问题,更换系统即可,或者使用勇哥脚本。。。

重装系统后更换脚本,0和2实际是同一个脚本。推荐优先使用0

WAPR脚本0:wget -N https://gitlab.com/fscarmen/warp/-/raw/main/menu.sh && bash menu.sh
WAPR脚本1:bash <(curl -fsSL git.io/warp.sh) d
WAPR脚本2:wget -N https://raw.githubusercontent.com/fscarmen/warp/main/menu.sh && bash menu.sh

但请注意系统debian 10以下而且是LXC架构的机器安装可能不会成功,WARP建议使用较为新一点的系统
此外我也在LXC服务器下遇到过一键WARP脚本对系统识别有问题的情况,明明系统是debian11但脚本提示不支持当前系统,使用勇哥脚本一下就装上了。。。不得不说有点东西的


参考文档与教程:

nat64公益地址列表:https://nat64.xyz/

只有IPV6的VPS设置NAT64实现访问IPV4网络:https://haoduck.com/681.html

使用IPv6代理访问Github:https://iscoconut.com/archives/9/

debian更新并安装curl:apt-get update -y && apt-get install curl -y

debian更新系统: sudo apt update

debian安装wget:sudo apt install wget

centos安装wget :yum -y install wget

centos安装curl:yum install -y curl

centos系统更新:yum update -y