gullo 128m nat折腾记录

接上贴(https://91ai.net/thread-1177046-1-7.html),买了一台128m的小鸡,折腾了一下午终于装上了某mess,加上cf cdn起飞,榨干小鸡最后的性能

(教程比较小白,大神粗略看一下即可)
首先按照大佬的教程,上脚本dd成alpine 详见(Converts OpenVZ VPS to Alpine Linux
https://gist.github.com/pexcn/dc3ebe60393cc4ede40b30e180d40ac5)

刷机之后ipv6会有点问题,要用ipv6套cf的话可以按照这个方法修复
首先查看网卡,我的机器网卡是 venet0
ipv6的address和gateway按你实际填写(去solosvm后台里找)

用vim编辑 interfaces
添加这一行
保存
查看是否生效  curl -4 ip.sb  curl -6 ip.sb

之后按这个教程 https://32mib.eu.org/post/install-v2ray-under-32-mib 手搓v2ray
(防止实效,archive.org备份 http://web.archive.org/web/20230607115257/https://32mib.eu.org/post/install-v2ray-under-32-mib )
这里提供一个模板vmess+ws+tls(来自ray项目官方的实例)

  1. {
  2.     "log": {
  3.         "loglevel": "warning"
  4.     },
  5.     "routing": {
  6.         "domainStrategy": "AsIs",
  7.         "rules": [
  8.             {
  9.                 "type": "field",
  10.                 "ip": [
  11.                     "geoip:private"
  12.                 ],
  13.                 "outboundTag": "block"
  14.             }
  15.         ]
  16.     },
  17.     "inbounds": [
  18.         {
  19.             "listen": "0.0.0.0",
  20.             "port": 443,
  21.             "protocol": "vmess",
  22.             "settings": {
  23.                 "clients": [
  24.                     {
  25.                         "id": "3c85f535-c1c7-473f-9a65-d0c90619fc98"
  26.                     }
  27.                 ]
  28.             },
  29.             "streamSettings": {
  30.                 "network": "ws",
  31.                 "security": "tls",
  32.                 "tlsSettings": {
  33.                     "certificates": [

  34.                         {
  35.                             "certificateFile": "/path/to/crt.crt",
  36.                             "keyFile": "/path/to/key.key"
  37.                         }
  38.                     ]
  39.                 }
  40.             }
  41.         }
  42.     ],
  43.     "outbounds": [
  44.         {
  45.             "protocol": "freedom",
  46.             "tag": "direct"
  47.         },
  48.         {
  49.             "protocol": "blackhole",
  50.             "tag": "block"
  51.         }
  52.     ]
  53. }

复制代码

在代码对应的位置放好证书(证书可以用cf自签15年的),上cdn的话记得在cf后台把SSL/TLS调成 full,最后 service  v2ray restart  ,service  v2ray status查看状态

© 版权声明
THE END
喜欢就支持一下吧
点赞7 分享