请教大家关于 sing-box 的问题,inbound 配置如下:
"inbounds": [
{
"type": "tun",
"inet4_address": "172.19.0.1/30",
"mtu": 1500,
"auto_route": true,
// "strict_route": true,
"sniff": true,
"inet4_route_exclude_address": ["239.255.255.250/32"],
"sniff_override_destination": false,
"endpoint_independent_nat": false,
"stack": "system",
"platform": {
"http_proxy": {
"enabled": true,
"bypass_domain": [],
"server": "127.0.0.1",
"server_port": 7890
}
}
},
{
"type": "mixed",
"listen_port": 7890,
"sniff": true
// "set_system_proxy": true
},
问题是:
1. 这个配置在命令行模式下,1.10 版本,如果不启用 "set_system_proxy": true ,则无法上外网,但是这个配置中,这句话应该是不需要的啊?
2. 在 platform 那里的 http_proxy 与 mixed 这里的 set_system_proxy 是什么关系? |
|