|
发表于 2021-8-30 11:27:31
|
显示全部楼层
以此类推好了
- "inbounds": [
- {
- "port": 10001,
- "tag": "in1",
- "listen": "1.1.1.1",
- "protocol":"shadowsocks",
- "settings":{
- "method": "aes-256-gcm",
- "password": "password"
- }
- },
- {
- "port": 10001,
- "tag": "in2",
- "listen": "2.2.2.2",
- "protocol":"shadowsocks",
- "settings":{
- "method": "aes-256-gcm",
- "password": "password"
- }
- }
- ],
- "outbounds": [
- {
- "tag":"out1",
- "protocol": "freedom",
- "sendThrough":"1.1.1.1"
- },
- {
- "tag":"out2",
- "protocol": "freedom",
- "sendThrough":"2.2.2.2"
- }
- ],
-
- "routing": {
- "rules": [
- {
- "type": "field",
- "inboundTag": "in1",
- "outboundTag": "out1"
- },
- {
- "type": "field",
- "inboundTag": "in2",
- "outboundTag": "out2"
- }
- ]
- }
- }
复制代码 |
|