|
鉴于小猫咪已经完全删库跑路,想换到Sing-Box,奈何水平太菜,改了配置文件运行不了,不知道哪里有问题,有没有懂的MJJ可以指导一下
这是机场A的clash配置
- - name: HK1
- type: ss
- server: 1.2.3.4
- port: "12345"
- cipher: chacha20-ietf
- password: 12345678910abcdef
- udp: true
- plugin: obfs
- plugin-opts:
- mode: http
- host: 1234abcdef.apple.com
复制代码
这是我改的Sing-Box代码
- {
- "inbounds": [
- {
- "type": "mixed",
- "listen": "::",
- "listen_port": 10005
- }
- ],
- "outbounds": [
- {
- "type": "shadowsocks",
- "server": "1.2.3.4",
- "server_port": 12345,
- "method": "chacha20-ietf",
- "plugin": "obfs-local",
- "password": "12345678910abcdef",
- "plugin_opts":"mode=http;host=1234abcdef.apple.com",
- "tag": "proxyss"
- }
- ]
- }
复制代码
这是机场B的clash配置
- - {
- name: HK1,
- type: vmess,
- server: 1.2.3.4,
- port: 12345,
- uuid: 1234-5678-abcdef,
- alterId: 0,
- cipher: auto,
- udp: true,
- network: ws
- }
复制代码
这是我改的Sing-Box配置
- {
- "inbounds": [
- {
- "type": "mixed",
- "listen": "::",
- "listen_port": 10005
- }
- ],
- "outbounds": [
- {
- "type": "vmess",
- "server": "1.2.3.4",
- "server_port": 12345,
- "uuid": "1234-5678-abcdef",
- "security": "auto",
- "alter_id": 0,
- "tag": "proxyvmess"
- }
- ]
- }
复制代码
改完之后客户端可以启动,但是打不开Google,看命令行里提示的是:Get "https://google.com" EOF |
|