- 了解机器
系统模板
uname -a
cat /proc/version
Ping
ping -4 google.com
纯 IPv6 不能访问 IPv4 网络,如下提示,解决看 2. 实现访问 ipv4 功能
ping: connect: Network is unreachable
ping -6 google.com
查看 tun/tap 是否开启,返回 tun 为开启,否则未开启
ls /dev/net
查看宿主机创建容器数
ls /sys/devices/virtual/block | grep dm | wc -l
ls /sys/devices/virtual/block
- 实现访问 ipv4 功能
使用公共代理访问 github
cat >> /etc/hosts << EOF
# https://danwin1210.de/github-ipv6-proxy.php
2a01:4f8:c010:d56::2 github.com
2a01:4f8:c010:d56::3 api.github.com
2a01:4f8:c010:d56::4 codeload.github.com
2a01:4f8:c010:d56::5 objects.githubusercontent.com
2a01:4f8:c010:d56::6 ghcr.io
2a01:4f8:c010:d56::7 pkg.github.com npm.pkg.github.com maven.pkg.github.com nuget.pkg.github.com rubygems.pkg.github.com
EOF
添加 nat64
echo "nameserver 2a00:1098:2c::1" >> /etc/resolv.conf
全局 warp
选择第一项,然后一路回车全部默认即可,成功后 ping -4 google.com 可以正常响应
wget -N https://gitlab.com/fscarmen/warp/-/raw/main/menu.sh && bash menu.sh 4
- 建站
安装 nginx,套 cf 并且打开小云朵同时支持 ipv4 和 ipv6 访问。
- 科学
xxx-ui
- 因为只有 ws 才能套 cf 可以 ipv4/ipv6 使用,采用 vless+ws+tls+cf。
- 入站端口使用 cloudflare 默认代理的网络端口,如 8443、2052
hy2
# udp 不能套 cf
bash <(curl -fsSL https://get.hy2.sh/)
sba(sing-box + argo)
# 未实践
bash <(wget -qO- https://raw.githubusercontent.com/fscarmen/sba/main/sba.sh)
解决 debain11上 ssh 连接慢问题
systemctl mask systemd-logind
pam-auth-update弹窗空格键取消 Register user sessions in the systemd control group hierarchy 的选择
- 网页 ipv4/ipv6 随时随地 SSH
此处评论已关闭