酸*酸*乳*2022最新協議服務端搭建以及在Mac平台下的應用方法
酸酸乳*2022最新協議服務端搭建以及在Mac平台下的應用方法
https://github.com/XTLS/Xray-core
最新版本的1.5.7方能使用最新協議
1
2
bash -c "$(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh)" @ install -u nobody
寫入下面的server端配置文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"inbounds": [
{
"port": 10086,
"protocol": "sh*adow*soc*ks",//請手動清除多餘的*號
"settings": {
"method": "2022-blake3-aes-256-gcm",
"password": "333333333333333333=",
//密碼使用openssl rand -base64 16 生成,最高支持32位
"network": "tcp,udp"
}
}
],
"outbounds": [
{
"protocol": "freedom"
}
]
}
Mac平台下的應用方法
1
2
3
4
5
6
7
8
9
brew install xray
安裝的是1.5.5的版本
需要手動更新到最新版的xray1.5.7
wget https://github.com/XTLS/Xray-core/releases/download/v1.5.7/Xray-macos-64.zip
brew info xray //查看xray的信息
/usr/local/opt/xray/bin/xray
unzip Xray-macos-64.zip
cp xray /usr/local/opt/xray/bin/xray
寫入客戶端配置文件,如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"inbounds": [
{
"port": 10801,
"protocol": "socks",
"settings": {
"udp": true
}
},
{
"port": 10802,
"protocol": "http"
}
],
"outbounds": [
{
"protocol": "sh*adow*soc*ks",//請手動清除多餘的*號
"settings": {
"servers": [
{
"address": "ipaddr",
"port": 10086,
"method": "2022-blake3-aes-256-gcm",
"password": "ddddddddddddddddd="
}
]
}
}
]
}
brew services start
//啟動,開機會自動啟動
現在啟動監聽了socks和http端口,配置clashX,實現自由衝浪
1
2
3
4
5
6
7
8
9
10
11
proxies:
# 支持的协议及加密算法示例请查阅 Clash 项目 README 以使用最新格式:https://github.com/Dreamacro/clash/blob/master/README.md
# sh*adow*soc*ks
- name: "socks"
type: socks5
server: 127.0.0.1
port: 10801
#cipher: 2022-blake3-aes-256-gcm
#password: "ddddddddddd="
udp: true