sing-box/docs/configuration/route/index.md

47 lines
930 B
Markdown
Raw Normal View History

2022-07-08 12:15:45 +00:00
### Structure
```json
{
"route": {
"geoip": {},
"geosite": {},
"rules": [],
"final": "",
2022-07-15 03:51:51 +00:00
"auto_detect_interface": false,
"default_interface": "en0"
2022-07-08 12:15:45 +00:00
}
}
```
### Fields
| Key | Format |
|-----------|------------------------------|
| `geoip` | [GeoIP](./geoip) |
| `geosite` | [Geosite](./geosite) |
| `rules` | List of [Route Rule](./rule) |
#### final
Default outbound tag. the first outbound will be used if empty.
#### auto_detect_interface
!!! error ""
2022-07-13 11:01:20 +00:00
Linux and Windows only
Bind outbound connections to the default NIC by default to prevent routing loops under Tun.
2022-07-15 03:51:51 +00:00
Takes no effect if `outbound.bind_interface` is set.
#### default_interface
!!! error ""
Linux and Windows only
Bind outbound connections to the specified NIC by default to prevent routing loops under Tun.
Takes no effect if `auto_detect_interface` is set.