From 03419acb9bfb812e61c5c83e9e347f87017ae011 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=94=AC=E5=93=A5=E4=BE=83=E4=BE=83=E4=BE=83ygkkk?= <121604513+yonggekkk@users.noreply.github.com> Date: Mon, 13 Nov 2023 21:26:33 +0800 Subject: [PATCH] =?UTF-8?q?Update=20and=20rename=20sing=5Fbox=5Fclient.jso?= =?UTF-8?q?n=20to=20sing=5Fbox=E5=9B=9B=E8=8A=82=E7=82=B9=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E8=AF=B4=E6=98=8E.txt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sing_box_client.json | 1 - sing_box四节点配置说明.txt | 139 +++++++++++++++++++++++++++++++++++++ 2 files changed, 139 insertions(+), 1 deletion(-) delete mode 100644 sing_box_client.json create mode 100644 sing_box四节点配置说明.txt diff --git a/sing_box_client.json b/sing_box_client.json deleted file mode 100644 index 8b13789..0000000 --- a/sing_box_client.json +++ /dev/null @@ -1 +0,0 @@ - diff --git a/sing_box四节点配置说明.txt b/sing_box四节点配置说明.txt new file mode 100644 index 0000000..f97025a --- /dev/null +++ b/sing_box四节点配置说明.txt @@ -0,0 +1,139 @@ +sing-box官方客户端配置简要说明 + +------------------------------------------------------------------------------------ +节点区 +------------------------------------------------------------------------------------ +一、vless-reality-vision节点 +------------------------------------------------------------------------------------ + { + "type": "vless", + "tag": "vless-sb", 自定义节点名称 + "server": "1.2.3.4", 服务器本地ip + "server_port": 12345, 自定义的端口 + "uuid": "658ff7f4-0448-4368-a104-c3108517f56a", 自定义的uuid + "flow": "xtls-rprx-vision", + "tls": { + "enabled": true, + "server_name": "www.yahoo.com", 自定义的第三方偷域名 + "utls": { + "enabled": true, + "fingerprint": "chrome" + }, + "reality": { + "enabled": true, + "public_key": "oBwBeiq8MjOqHS0fTXm39gRM_fdXgbAvtEWfAaW", 自定义的public-key + "short_id": "91b4db47" 自定义的short-id + } + } + }, + + +------------------------------------------------------------------------------------ +二、vmess-ws(tls)+argo节点 +------------------------------------------------------------------------------------ + { + "server": "1.2.3.4", 服务器本地ip、解析的域名、优选IP、优选域名 + "server_port": 12345, 自定义的端口,vps-cdn与argo-cdn,13个端口变化,详见视频教程解析图 + "tag": "vmess-sb", 自定义节点名称 + "tls": { + "enabled": true, tls开启:true tls关闭:false + "server_name": "yg.ygkkk.eu.org", tls开启:解析的域名或者argo域名 + "insecure": false, + "utls": { + "enabled": true, + "fingerprint": "chrome" + } + }, + "transport": { + "headers": { + "Host": [ + "yg.ygkkk.eu.org" 解析的域名或者argo域名 + ] + }, + "path": "658ff7f4-0448-4368-a104-c3108517f56a-vm", 自定义的uuid值-vm + "type": "ws" + }, + "type": "vmess", + "security": "auto", + "uuid": "658ff7f4-0448-4368-a104-c3108517f56a" 自定义的uuid + }, + + +------------------------------------------------------------------------------------ +三、hysteria2节点 +------------------------------------------------------------------------------------ + { + "type": "hysteria2", + "tag": "hy2-sb", 自定义节点名称 + "server": "1.2.3.4", 自签证书:服务器本地ip 域名证书:解析的域名 + "server_port": 12345, 自定义的端口 + "password": "658ff7f4-0448-4368-a104-c3108517f56a", 自定义的uuid + "tls": { + "enabled": true, + "server_name": "www.bing.com", 自签证书:www.bing.com 域名证书:解析的域名 + "insecure": true, 自签证书:true 域名证书:false + "alpn": [ + "h3" + ] + } + }, + + +------------------------------------------------------------------------------------ +四、tuic5节点 +------------------------------------------------------------------------------------ + { + "type":"tuic", + "tag": "tuic5-sb", 自定义节点名称 + "server": "1.2.3.4", 自签证书:服务器本地ip 域名证书:解析的域名 + "server_port": 12345, 自定义的端口 + "uuid": "658ff7f4-0448-4368-a104-c3108517f56a", 自定义的uuid + "password": "658ff7f4-0448-4368-a104-c3108517f56a", 自定义的uuid + "congestion_control": "bbr", + "udp_relay_mode": "native", + "udp_over_stream": false, + "zero_rtt_handshake": false, + "heartbeat": "10s", + "tls":{ + "enabled": true, + "server_name": "www.bing.com", 自签证书:www.bing.com 域名证书:解析的域名 + "insecure": true, 自签证书:true 域名证书:false + "alpn": [ + "h3" + ] + } + }, + + + +------------------------------------------------------------------------------------ +分流组:共两组,分为手动选择select与自动选择auto,每组节点可按需求自行增减,确保出现的自定义节点名称可以在节点区中查找到 +------------------------------------------------------------------------------------ +手动选择select +{ + "tag": "select", + "type": "selector", + "default": "auto", + "outbounds": [ + "auto", + "vless-sb", 自定义节点名称 + "vmess-sb", 自定义节点名称 + "hy2-sb", 自定义节点名称 + "tuic5-sb" 自定义节点名称 + ………… ………… + ] + }, +------------------------------------------------------------------------------------ +自动选择auto +{ + "tag": "auto", + "type": "urltest", + "outbounds": [ + "vless-sb", 自定义节点名称 + "vmess-sb", 自定义节点名称 + "hy2-sb", 自定义节点名称 + "tuic5-sb" 自定义节点名称 + ……………… ………… + ] + }, +------------------------------------------------------------------------------------