sing-box/docs/configuration/inbound/tun.md

207 lines
4.5 KiB
Markdown
Raw Normal View History

!!! error ""
2022-08-05 08:55:46 +00:00
Only supported on Linux, Windows and macOS.
### Structure
```json
{
2022-08-31 04:50:26 +00:00
"type": "tun",
"tag": "tun-in",
"interface_name": "tun0",
"inet4_address": "172.19.0.1/30",
2022-09-10 02:21:42 +00:00
"inet6_address": "fdfe:dcba:9876::1/126",
2022-09-09 07:40:35 +00:00
"mtu": 9000,
2022-08-31 04:50:26 +00:00
"auto_route": true,
"strict_route": true,
2022-10-12 08:20:17 +00:00
"inet4_route_address": [
"0.0.0.0/1",
"128.0.0.0/1"
],
"inet6_route_address": [
"::/1",
"8000::/1"
],
2022-08-31 04:50:26 +00:00
"endpoint_independent_nat": false,
2022-09-15 04:20:38 +00:00
"stack": "system",
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"
],
"platform": {
"http_proxy": {
"enabled": false,
"server": "127.0.0.1",
"server_port": 8080
}
},
... // Listen Fields
}
```
!!! note ""
You can ignore the JSON Array [] tag when the content is only one item
2022-08-08 12:57:50 +00:00
!!! warning ""
If tun is running in non-privileged mode, addresses and MTU will not be configured automatically, please make sure the settings are accurate.
2022-08-08 12:57:50 +00:00
2022-08-31 04:50:26 +00:00
### Fields
2022-08-08 12:57:50 +00:00
#### interface_name
Virtual device name, automatically selected if empty.
#### inet4_address
==Required==
IPv4 prefix for the tun interface.
#### inet6_address
IPv6 prefix for the tun interface.
#### mtu
The maximum transmission unit.
#### auto_route
Set the default route to the Tun.
!!! error ""
2022-07-15 03:51:51 +00:00
To avoid traffic loopback, set `route.auto_detect_interface` or `route.default_interface` or `outbound.bind_interface`
2022-09-09 07:40:35 +00:00
!!! note "Use with Android VPN"
By default, VPN takes precedence over tun. To make tun go through VPN, enable `route.override_android_vpn`.
2022-08-26 15:52:17 +00:00
#### strict_route
2022-10-01 03:48:46 +00:00
Enforce strict routing rules when `auto_route` is enabled:
2022-08-26 15:52:17 +00:00
2022-11-06 02:15:13 +00:00
*In Linux*:
2022-08-26 15:52:17 +00:00
* Let unsupported network unreachable
* Route all connections to tun
2023-03-27 00:20:10 +00:00
It prevents address leaks and makes DNS hijacking work on Android, but your device will not be accessible by others.
2022-08-26 15:52:17 +00:00
2022-11-06 02:15:13 +00:00
*In Windows*:
* Add firewall rules to prevent DNS leak caused by
Windows' [ordinary multihomed DNS resolution behavior](https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/dd197552%28v%3Dws.10%29)
It may prevent some applications (such as VirtualBox) from working properly in certain situations.
2022-10-12 08:20:17 +00:00
#### inet4_route_address
Use custom routes instead of default when `auto_route` is enabled.
#### inet6_route_address
Use custom routes instead of default when `auto_route` is enabled.
2022-07-27 04:03:07 +00:00
#### endpoint_independent_nat
2022-09-09 07:40:35 +00:00
!!! info ""
This item is only available on the gvisor stack, other stacks are endpoint-independent NAT by default.
2022-08-05 08:55:46 +00:00
Enable endpoint-independent NAT.
2022-07-27 04:03:07 +00:00
Performance may degrade slightly, so it is not recommended to enable on when it is not needed.
#### udp_timeout
UDP NAT expiration time in seconds, default is 300 (5 minutes).
2022-08-08 12:57:50 +00:00
#### stack
TCP/IP stack.
2022-09-15 04:20:38 +00:00
| Stack | Description | Status |
|------------------|----------------------------------------------------------------------------------|-------------------|
| system (default) | Sometimes better performance | recommended |
| gVisor | Better compatibility, based on [google/gvisor](https://github.com/google/gvisor) | recommended |
| LWIP | Based on [eycorsican/go-tun2socks](https://github.com/eycorsican/go-tun2socks) | upstream archived |
2022-08-08 12:57:50 +00:00
!!! warning ""
2022-09-15 04:20:38 +00:00
gVisor and LWIP stacks is not included by default, see [Installation](/#installation).
2022-08-08 12:57:50 +00:00
#### include_uid
!!! error ""
UID rules are only supported on Linux and require auto_route.
Limit users in route. Not limited by default.
#### include_uid_range
Limit users in route, but in range.
#### exclude_uid
Exclude users in route.
#### exclude_uid_range
Exclude users in route, but in range.
#### include_android_user
!!! error ""
Android user and package rules are only supported on Android and require auto_route.
Limit android users in route.
| Common user | ID |
|--------------|-----|
| Main | 0 |
| Work Profile | 10 |
#### include_package
Limit android packages in route.
#### exclude_package
Exclude android packages in route.
#### platform
Platform-specific settings, provided by client applications.
#### platform.http_proxy
System HTTP proxy settings.
### Listen Fields
2022-08-31 04:50:26 +00:00
See [Listen Fields](/configuration/shared/listen) for details.