2024-02-18 16:19:33 +00:00
|
|
|
|
---
|
|
|
|
|
icon: material/new-box
|
|
|
|
|
---
|
|
|
|
|
|
2024-06-07 07:55:21 +00:00
|
|
|
|
!!! quote "Changes in sing-box 1.10.0"
|
|
|
|
|
|
|
|
|
|
:material-plus: [address](#address)
|
|
|
|
|
:material-delete-clock: [inet4_address](#inet4_address)
|
|
|
|
|
:material-delete-clock: [inet6_address](#inet6_address)
|
|
|
|
|
:material-plus: [route_address](#route_address)
|
|
|
|
|
:material-delete-clock: [inet4_route_address](#inet4_route_address)
|
|
|
|
|
:material-delete-clock: [inet6_route_address](#inet6_route_address)
|
|
|
|
|
:material-plus: [route_exclude_address](#route_address)
|
|
|
|
|
:material-delete-clock: [inet4_route_exclude_address](#inet4_route_exclude_address)
|
|
|
|
|
:material-delete-clock: [inet6_route_exclude_address](#inet6_route_exclude_address)
|
|
|
|
|
:material-plus: [auto_redirect](#auto_redirect)
|
|
|
|
|
:material-plus: [route_address_set](#route_address_set)
|
|
|
|
|
:material-plus: [route_exclude_address_set](#route_address_set)
|
|
|
|
|
|
2024-02-18 16:19:33 +00:00
|
|
|
|
!!! quote "sing-box 1.9.0 中的更改"
|
|
|
|
|
|
|
|
|
|
:material-plus: [platform.http_proxy.bypass_domain](#platformhttp_proxybypass_domain)
|
|
|
|
|
:material-plus: [platform.http_proxy.match_domain](#platformhttp_proxymatch_domain)
|
|
|
|
|
|
2023-12-20 12:00:00 +00:00
|
|
|
|
!!! quote "sing-box 1.8.0 中的更改"
|
|
|
|
|
|
|
|
|
|
:material-plus: [gso](#gso)
|
|
|
|
|
:material-alert-decagram: [stack](#stack)
|
|
|
|
|
|
2023-11-09 09:04:08 +00:00
|
|
|
|
!!! quote ""
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
2022-08-25 01:45:22 +00:00
|
|
|
|
仅支持 Linux、Windows 和 macOS。
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
|
|
|
|
### 结构
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
2022-08-31 04:50:26 +00:00
|
|
|
|
"type": "tun",
|
|
|
|
|
"tag": "tun-in",
|
|
|
|
|
"interface_name": "tun0",
|
2024-06-07 07:55:21 +00:00
|
|
|
|
"address": [
|
|
|
|
|
"172.18.0.1/30",
|
|
|
|
|
"fdfe:dcba:9876::1/126"
|
|
|
|
|
],
|
|
|
|
|
// 已弃用
|
|
|
|
|
"inet4_address": [
|
|
|
|
|
"172.19.0.1/30"
|
|
|
|
|
],
|
|
|
|
|
// 已弃用
|
|
|
|
|
"inet6_address": [
|
|
|
|
|
"fdfe:dcba:9876::1/126"
|
|
|
|
|
],
|
2022-09-09 07:40:35 +00:00
|
|
|
|
"mtu": 9000,
|
2023-12-20 12:00:00 +00:00
|
|
|
|
"gso": false,
|
2022-08-31 04:50:26 +00:00
|
|
|
|
"auto_route": true,
|
|
|
|
|
"strict_route": true,
|
2024-06-07 07:55:21 +00:00
|
|
|
|
"auto_redirect": false,
|
|
|
|
|
"route_address": [
|
|
|
|
|
"0.0.0.0/1",
|
|
|
|
|
"128.0.0.0/1",
|
|
|
|
|
"::/1",
|
|
|
|
|
"8000::/1"
|
|
|
|
|
],
|
|
|
|
|
// 已弃用
|
2022-10-12 08:20:17 +00:00
|
|
|
|
"inet4_route_address": [
|
|
|
|
|
"0.0.0.0/1",
|
|
|
|
|
"128.0.0.0/1"
|
|
|
|
|
],
|
2024-06-07 07:55:21 +00:00
|
|
|
|
// 已弃用
|
2022-10-12 08:20:17 +00:00
|
|
|
|
"inet6_route_address": [
|
|
|
|
|
"::/1",
|
|
|
|
|
"8000::/1"
|
|
|
|
|
],
|
2024-06-07 07:55:21 +00:00
|
|
|
|
"route_exclude_address": [
|
|
|
|
|
"192.168.0.0/16",
|
|
|
|
|
"fc00::/7"
|
|
|
|
|
],
|
|
|
|
|
// 已弃用
|
2023-10-30 04:00:00 +00:00
|
|
|
|
"inet4_route_exclude_address": [
|
|
|
|
|
"192.168.0.0/16"
|
|
|
|
|
],
|
2024-06-07 07:55:21 +00:00
|
|
|
|
// 已弃用
|
2023-10-30 04:00:00 +00:00
|
|
|
|
"inet6_route_exclude_address": [
|
|
|
|
|
"fc00::/7"
|
|
|
|
|
],
|
2024-06-07 07:55:21 +00:00
|
|
|
|
"route_address_set": [
|
|
|
|
|
"geoip-cloudflare"
|
|
|
|
|
],
|
|
|
|
|
"route_exclude_address_set": [
|
|
|
|
|
"geoip-cn"
|
|
|
|
|
],
|
2022-08-31 04:50:26 +00:00
|
|
|
|
"endpoint_independent_nat": false,
|
2023-12-20 11:55:14 +00:00
|
|
|
|
"udp_timeout": "5m",
|
2022-09-15 04:20:38 +00:00
|
|
|
|
"stack": "system",
|
2023-08-20 08:49:25 +00:00
|
|
|
|
"include_interface": [
|
|
|
|
|
"lan0"
|
|
|
|
|
],
|
|
|
|
|
"exclude_interface": [
|
|
|
|
|
"lan1"
|
|
|
|
|
],
|
2022-08-31 04:50:26 +00:00
|
|
|
|
"include_uid": [
|
|
|
|
|
0
|
|
|
|
|
],
|
|
|
|
|
"include_uid_range": [
|
|
|
|
|
"1000-99999"
|
|
|
|
|
],
|
|
|
|
|
"exclude_uid": [
|
|
|
|
|
1000
|
|
|
|
|
],
|
|
|
|
|
"exclude_uid_range": [
|
|
|
|
|
"1000-99999"
|
|
|
|
|
],
|
|
|
|
|
"include_android_user": [
|
|
|
|
|
0,
|
|
|
|
|
10
|
|
|
|
|
],
|
|
|
|
|
"include_package": [
|
|
|
|
|
"com.android.chrome"
|
|
|
|
|
],
|
|
|
|
|
"exclude_package": [
|
|
|
|
|
"com.android.captiveportallogin"
|
|
|
|
|
],
|
2023-03-05 07:19:13 +00:00
|
|
|
|
"platform": {
|
|
|
|
|
"http_proxy": {
|
|
|
|
|
"enabled": false,
|
|
|
|
|
"server": "127.0.0.1",
|
2024-02-18 16:19:33 +00:00
|
|
|
|
"server_port": 8080,
|
|
|
|
|
"bypass_domain": [],
|
|
|
|
|
"match_domain": []
|
2023-03-05 07:19:13 +00:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
... // 监听字段
|
2022-08-24 10:43:39 +00:00
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
!!! note ""
|
|
|
|
|
|
2022-08-25 01:45:22 +00:00
|
|
|
|
当内容只有一项时,可以忽略 JSON 数组 [] 标签。
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
|
|
|
|
!!! warning ""
|
|
|
|
|
|
|
|
|
|
如果 tun 在非特权模式下运行,地址和 MTU 将不会自动配置,请确保设置正确。
|
|
|
|
|
|
|
|
|
|
### Tun 字段
|
|
|
|
|
|
|
|
|
|
#### interface_name
|
|
|
|
|
|
2022-08-25 01:45:22 +00:00
|
|
|
|
虚拟设备名称,默认自动选择。
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
2024-06-07 07:55:21 +00:00
|
|
|
|
#### address
|
|
|
|
|
|
|
|
|
|
!!! question "自 sing-box 1.10.0 起"
|
|
|
|
|
|
|
|
|
|
==必填==
|
|
|
|
|
|
|
|
|
|
tun 接口的 IPv4 和 IPv6 前缀。
|
|
|
|
|
|
2022-08-24 10:43:39 +00:00
|
|
|
|
#### inet4_address
|
|
|
|
|
|
2024-06-07 07:55:21 +00:00
|
|
|
|
!!! failure "已在 sing-box 1.10.0 废弃"
|
|
|
|
|
|
|
|
|
|
`inet4_address` 已合并到 `address` 且将在 sing-box 1.11.0 移除.
|
|
|
|
|
|
2022-08-24 10:43:39 +00:00
|
|
|
|
==必填==
|
|
|
|
|
|
|
|
|
|
tun 接口的 IPv4 前缀。
|
|
|
|
|
|
|
|
|
|
#### inet6_address
|
|
|
|
|
|
2024-06-07 07:55:21 +00:00
|
|
|
|
!!! failure "已在 sing-box 1.10.0 废弃"
|
|
|
|
|
|
|
|
|
|
`inet6_address` 已合并到 `address` 且将在 sing-box 1.11.0 移除.
|
|
|
|
|
|
2022-08-24 10:43:39 +00:00
|
|
|
|
tun 接口的 IPv6 前缀。
|
|
|
|
|
|
|
|
|
|
#### mtu
|
|
|
|
|
|
2022-08-25 01:45:22 +00:00
|
|
|
|
最大传输单元。
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
2023-12-20 12:00:00 +00:00
|
|
|
|
#### gso
|
|
|
|
|
|
|
|
|
|
!!! question "自 sing-box 1.8.0 起"
|
|
|
|
|
|
|
|
|
|
!!! quote ""
|
|
|
|
|
|
|
|
|
|
仅支持 Linux。
|
|
|
|
|
|
|
|
|
|
启用通用分段卸载。
|
|
|
|
|
|
2022-08-24 10:43:39 +00:00
|
|
|
|
#### auto_route
|
|
|
|
|
|
|
|
|
|
设置到 Tun 的默认路由。
|
|
|
|
|
|
2023-11-09 09:04:08 +00:00
|
|
|
|
!!! quote ""
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
2022-08-25 01:45:22 +00:00
|
|
|
|
为避免流量环回,请设置 `route.auto_detect_interface` 或 `route.default_interface` 或 `outbound.bind_interface`。
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
2022-09-09 07:40:35 +00:00
|
|
|
|
!!! note "与 Android VPN 一起使用"
|
|
|
|
|
|
|
|
|
|
VPN 默认优先于 tun。要使 tun 经过 VPN,启用 `route.override_android_vpn`。
|
|
|
|
|
|
2022-08-26 15:52:17 +00:00
|
|
|
|
#### strict_route
|
|
|
|
|
|
2022-10-01 03:48:46 +00:00
|
|
|
|
启用 `auto_route` 时执行严格的路由规则。
|
2022-08-26 15:52:17 +00:00
|
|
|
|
|
2022-11-06 02:15:13 +00:00
|
|
|
|
*在 Linux 中*:
|
|
|
|
|
|
2022-08-26 15:52:17 +00:00
|
|
|
|
* 让不支持的网络无法到达
|
2024-06-07 07:55:21 +00:00
|
|
|
|
* 使 ICMP 流量路由到 tun 而不是上游接口
|
2022-08-26 15:52:17 +00:00
|
|
|
|
* 将所有连接路由到 tun
|
|
|
|
|
|
2024-06-07 07:55:21 +00:00
|
|
|
|
它可以防止 IP 地址泄漏,并使 DNS 劫持在 Android 上工作。
|
2022-08-26 15:52:17 +00:00
|
|
|
|
|
2022-11-06 02:15:13 +00:00
|
|
|
|
*在 Windows 中*:
|
|
|
|
|
|
|
|
|
|
* 添加防火墙规则以阻止 Windows
|
|
|
|
|
的 [普通多宿主 DNS 解析行为](https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/dd197552%28v%3Dws.10%29)
|
|
|
|
|
造成的 DNS 泄露
|
|
|
|
|
|
|
|
|
|
它可能会使某些应用程序(如 VirtualBox)在某些情况下无法正常工作。
|
|
|
|
|
|
2024-06-07 07:55:21 +00:00
|
|
|
|
#### auto_redirect
|
|
|
|
|
|
|
|
|
|
!!! question "自 sing-box 1.10.0 起"
|
|
|
|
|
|
|
|
|
|
!!! quote ""
|
|
|
|
|
|
|
|
|
|
仅支持 Linux。
|
|
|
|
|
|
|
|
|
|
自动配置 iptables 以重定向 TCP 连接。
|
|
|
|
|
|
|
|
|
|
*在 Android 中*:
|
|
|
|
|
|
|
|
|
|
仅转发本地 IPv4 连接。 要通过热点或中继共享您的 VPN 连接,请使用 [VPNHotspot](https://github.com/Mygod/VPNHotspot)。
|
|
|
|
|
|
|
|
|
|
*在 Linux 中*:
|
|
|
|
|
|
|
|
|
|
带有 `auto_redirect `的 `auto_route` 现在可以在路由器上按预期工作,**无需干预**。
|
|
|
|
|
|
|
|
|
|
#### route_address
|
|
|
|
|
|
|
|
|
|
!!! question "自 sing-box 1.10.0 起"
|
|
|
|
|
|
|
|
|
|
设置到 Tun 的自定义路由。
|
|
|
|
|
|
2022-10-12 08:20:17 +00:00
|
|
|
|
#### inet4_route_address
|
|
|
|
|
|
2024-06-07 07:55:21 +00:00
|
|
|
|
!!! failure "已在 sing-box 1.10.0 废弃"
|
|
|
|
|
|
|
|
|
|
`inet4_route_address` 已合并到 `route_address` 且将在 sing-box 1.11.0 移除.
|
|
|
|
|
|
2022-10-12 08:20:17 +00:00
|
|
|
|
启用 `auto_route` 时使用自定义路由而不是默认路由。
|
|
|
|
|
|
|
|
|
|
#### inet6_route_address
|
|
|
|
|
|
2024-06-07 07:55:21 +00:00
|
|
|
|
!!! failure "已在 sing-box 1.10.0 废弃"
|
|
|
|
|
|
|
|
|
|
`inet6_route_address` 已合并到 `route_address` 且将在 sing-box 1.11.0 移除.
|
|
|
|
|
|
2022-10-12 08:20:17 +00:00
|
|
|
|
启用 `auto_route` 时使用自定义路由而不是默认路由。
|
|
|
|
|
|
2024-06-07 07:55:21 +00:00
|
|
|
|
#### route_exclude_address
|
|
|
|
|
|
|
|
|
|
!!! question "自 sing-box 1.10.0 起"
|
|
|
|
|
|
|
|
|
|
设置到 Tun 的排除自定义路由。
|
|
|
|
|
|
2023-10-30 04:00:00 +00:00
|
|
|
|
#### inet4_route_exclude_address
|
|
|
|
|
|
2024-06-07 07:55:21 +00:00
|
|
|
|
!!! failure "已在 sing-box 1.10.0 废弃"
|
|
|
|
|
|
|
|
|
|
`inet4_route_exclude_address` 已合并到 `route_exclude_address` 且将在 sing-box 1.11.0 移除.
|
|
|
|
|
|
2023-10-30 04:00:00 +00:00
|
|
|
|
启用 `auto_route` 时排除自定义路由。
|
|
|
|
|
|
|
|
|
|
#### inet6_route_exclude_address
|
|
|
|
|
|
2024-06-07 07:55:21 +00:00
|
|
|
|
!!! failure "已在 sing-box 1.10.0 废弃"
|
|
|
|
|
|
|
|
|
|
`inet6_route_exclude_address` 已合并到 `route_exclude_address` 且将在 sing-box 1.11.0 移除.
|
|
|
|
|
|
2023-10-30 04:00:00 +00:00
|
|
|
|
启用 `auto_route` 时排除自定义路由。
|
|
|
|
|
|
2024-06-07 07:55:21 +00:00
|
|
|
|
#### route_address_set
|
|
|
|
|
|
|
|
|
|
!!! question "自 sing-box 1.10.0 起"
|
|
|
|
|
|
|
|
|
|
!!! quote ""
|
|
|
|
|
|
|
|
|
|
仅支持 Linux,且需要 nftables,`auto_route` 和 `auto_redirect` 已启用。
|
|
|
|
|
|
|
|
|
|
将指定规则集中的目标 IP CIDR 规则添加到防火墙。
|
|
|
|
|
不匹配的流量将绕过 sing-box 路由。
|
|
|
|
|
|
|
|
|
|
与 `route.default_mark` 和 `[dialOptions].routing_mark` 冲突。
|
|
|
|
|
|
|
|
|
|
#### route_exclude_address_set
|
|
|
|
|
|
|
|
|
|
!!! question "自 sing-box 1.10.0 起"
|
|
|
|
|
|
|
|
|
|
!!! quote ""
|
|
|
|
|
|
|
|
|
|
仅支持 Linux,且需要 nftables,`auto_route` 和 `auto_redirect` 已启用。
|
|
|
|
|
|
|
|
|
|
将指定规则集中的目标 IP CIDR 规则添加到防火墙。
|
|
|
|
|
匹配的流量将绕过 sing-box 路由。
|
|
|
|
|
|
|
|
|
|
与 `route.default_mark` 和 `[dialOptions].routing_mark` 冲突。
|
|
|
|
|
|
2022-08-24 10:43:39 +00:00
|
|
|
|
#### endpoint_independent_nat
|
|
|
|
|
|
|
|
|
|
启用独立于端点的 NAT。
|
|
|
|
|
|
|
|
|
|
性能可能会略有下降,所以不建议在不需要的时候开启。
|
|
|
|
|
|
|
|
|
|
#### udp_timeout
|
|
|
|
|
|
|
|
|
|
UDP NAT 过期时间,以秒为单位,默认为 300(5 分钟)。
|
|
|
|
|
|
|
|
|
|
#### stack
|
|
|
|
|
|
2023-12-20 12:00:00 +00:00
|
|
|
|
!!! quote "sing-box 1.8.0 中的更改"
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
2023-12-20 12:00:00 +00:00
|
|
|
|
:material-delete-alert: 旧的 LWIP 栈已被弃用并移除。
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
2023-12-20 12:00:00 +00:00
|
|
|
|
TCP/IP 栈。
|
|
|
|
|
|
|
|
|
|
| 栈 | 描述 |
|
|
|
|
|
|--------|------------------------------------------------------------------|
|
|
|
|
|
| system | 基于系统网络栈执行 L3 到 L4 转换 |
|
|
|
|
|
| gVisor | 基于 [gVisor](https://github.com/google/gvisor) 虚拟网络栈执行 L3 到 L4 转换 |
|
|
|
|
|
| mixed | 混合 `system` TCP 栈与 `gvisor` UDP 栈 |
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
2023-12-20 12:00:00 +00:00
|
|
|
|
默认使用 `mixed` 栈如果 gVisor 构建标记已启用,否则默认使用 `system` 栈。
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
2023-08-20 08:49:25 +00:00
|
|
|
|
#### include_interface
|
|
|
|
|
|
2023-11-09 09:04:08 +00:00
|
|
|
|
!!! quote ""
|
2023-08-20 08:49:25 +00:00
|
|
|
|
|
|
|
|
|
接口规则仅在 Linux 下被支持,并且需要 `auto_route`。
|
|
|
|
|
|
|
|
|
|
限制被路由的接口。默认不限制。
|
|
|
|
|
|
|
|
|
|
与 `exclude_interface` 冲突。
|
|
|
|
|
|
|
|
|
|
#### exclude_interface
|
|
|
|
|
|
2024-06-07 07:55:21 +00:00
|
|
|
|
!!! warning ""
|
|
|
|
|
|
|
|
|
|
当 `strict_route` 启用,到被排除接口的回程流量将不会被自动排除,因此也要添加它们(例:`br-lan` 与 `pppoe-wan`)。
|
|
|
|
|
|
2023-08-20 08:49:25 +00:00
|
|
|
|
排除路由的接口。
|
|
|
|
|
|
|
|
|
|
与 `include_interface` 冲突。
|
|
|
|
|
|
2022-08-24 10:43:39 +00:00
|
|
|
|
#### include_uid
|
|
|
|
|
|
2023-11-09 09:04:08 +00:00
|
|
|
|
!!! quote ""
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
2022-08-25 01:45:22 +00:00
|
|
|
|
UID 规则仅在 Linux 下被支持,并且需要 `auto_route`。
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
2023-03-01 09:06:31 +00:00
|
|
|
|
限制被路由的用户。默认不限制。
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
|
|
|
|
#### include_uid_range
|
|
|
|
|
|
2023-03-01 09:06:31 +00:00
|
|
|
|
限制被路由的用户范围。
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
|
|
|
|
#### exclude_uid
|
|
|
|
|
|
2023-03-01 09:06:31 +00:00
|
|
|
|
排除路由的用户。
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
|
|
|
|
#### exclude_uid_range
|
|
|
|
|
|
2023-03-01 09:06:31 +00:00
|
|
|
|
排除路由的用户范围。
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
|
|
|
|
#### include_android_user
|
|
|
|
|
|
2023-11-09 09:04:08 +00:00
|
|
|
|
!!! quote ""
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
2022-08-25 01:45:22 +00:00
|
|
|
|
Android 用户和应用规则仅在 Android 下被支持,并且需要 `auto_route`。
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
|
|
|
|
限制被路由的 Android 用户。
|
|
|
|
|
|
2022-09-15 04:20:38 +00:00
|
|
|
|
| 常用用户 | ID |
|
2023-12-20 12:00:00 +00:00
|
|
|
|
|------|----|
|
|
|
|
|
| 您 | 0 |
|
2022-09-15 04:20:38 +00:00
|
|
|
|
| 工作资料 | 10 |
|
2022-08-24 10:43:39 +00:00
|
|
|
|
|
|
|
|
|
#### include_package
|
|
|
|
|
|
|
|
|
|
限制被路由的 Android 应用包名。
|
|
|
|
|
|
|
|
|
|
#### exclude_package
|
|
|
|
|
|
|
|
|
|
排除路由的 Android 应用包名。
|
|
|
|
|
|
2023-03-05 07:19:13 +00:00
|
|
|
|
#### platform
|
|
|
|
|
|
|
|
|
|
平台特定的设置,由客户端应用提供。
|
|
|
|
|
|
|
|
|
|
#### platform.http_proxy
|
|
|
|
|
|
|
|
|
|
系统 HTTP 代理设置。
|
|
|
|
|
|
2024-02-18 16:19:33 +00:00
|
|
|
|
##### platform.http_proxy.enabled
|
|
|
|
|
|
|
|
|
|
启用系统 HTTP 代理。
|
|
|
|
|
|
|
|
|
|
##### platform.http_proxy.server
|
|
|
|
|
|
|
|
|
|
==必填==
|
|
|
|
|
|
|
|
|
|
系统 HTTP 代理服务器地址。
|
|
|
|
|
|
|
|
|
|
##### platform.http_proxy.server_port
|
|
|
|
|
|
|
|
|
|
==必填==
|
|
|
|
|
|
|
|
|
|
系统 HTTP 代理服务器端口。
|
|
|
|
|
|
|
|
|
|
##### platform.http_proxy.bypass_domain
|
|
|
|
|
|
|
|
|
|
!!! note ""
|
|
|
|
|
|
2024-06-07 07:55:21 +00:00
|
|
|
|
在 Apple 平台,`bypass_domain` 项匹配主机名 **后缀**.
|
2024-02-18 16:19:33 +00:00
|
|
|
|
|
|
|
|
|
绕过代理的主机名列表。
|
|
|
|
|
|
|
|
|
|
##### platform.http_proxy.match_domain
|
|
|
|
|
|
|
|
|
|
!!! quote ""
|
|
|
|
|
|
|
|
|
|
仅在 Apple 平台图形客户端中支持。
|
|
|
|
|
|
|
|
|
|
代理的主机名列表。
|
|
|
|
|
|
2022-08-24 10:43:39 +00:00
|
|
|
|
### 监听字段
|
|
|
|
|
|
2022-10-12 08:20:17 +00:00
|
|
|
|
参阅 [监听字段](/zh/configuration/shared/listen/)。
|