mirror of
https://github.com/SagerNet/sing-box.git
synced 2026-04-13 20:28:32 +10:00
Add DERP service
This commit is contained in:
@@ -6,7 +6,7 @@ icon: material/new-box
|
||||
|
||||
# Endpoint
|
||||
|
||||
Endpoint is protocols that has both inbound and outbound behavior.
|
||||
An endpoint is a protocol with inbound and outbound behavior.
|
||||
|
||||
### Structure
|
||||
|
||||
|
||||
@@ -14,6 +14,7 @@ sing-box uses JSON for configuration files.
|
||||
"inbounds": [],
|
||||
"outbounds": [],
|
||||
"route": {},
|
||||
"services": [],
|
||||
"experimental": {}
|
||||
}
|
||||
```
|
||||
@@ -30,6 +31,7 @@ sing-box uses JSON for configuration files.
|
||||
| `inbounds` | [Inbound](./inbound/) |
|
||||
| `outbounds` | [Outbound](./outbound/) |
|
||||
| `route` | [Route](./route/) |
|
||||
| `services` | [Service](./service/) |
|
||||
| `experimental` | [Experimental](./experimental/) |
|
||||
|
||||
### Check
|
||||
|
||||
@@ -14,6 +14,7 @@ sing-box 使用 JSON 作为配置文件格式。
|
||||
"inbounds": [],
|
||||
"outbounds": [],
|
||||
"route": {},
|
||||
"services": [],
|
||||
"experimental": {}
|
||||
}
|
||||
```
|
||||
@@ -30,6 +31,7 @@ sing-box 使用 JSON 作为配置文件格式。
|
||||
| `inbounds` | [入站](./inbound/) |
|
||||
| `outbounds` | [出站](./outbound/) |
|
||||
| `route` | [路由](./route/) |
|
||||
| `services` | [服务](./service/) |
|
||||
| `experimental` | [实验性](./experimental/) |
|
||||
|
||||
### 检查
|
||||
|
||||
130
docs/configuration/service/derp.md
Normal file
130
docs/configuration/service/derp.md
Normal file
@@ -0,0 +1,130 @@
|
||||
---
|
||||
icon: material/new-box
|
||||
---
|
||||
|
||||
!!! question "Since sing-box 1.12.0"
|
||||
|
||||
# DERP
|
||||
|
||||
DERP service is a Tailscale DERP server, similar to [derper](https://pkg.go.dev/tailscale.com/cmd/derper).
|
||||
|
||||
### Structure
|
||||
|
||||
```json
|
||||
{
|
||||
"type": "derp",
|
||||
|
||||
... // Listen Fields
|
||||
|
||||
"tls": {},
|
||||
"config_path": "",
|
||||
"verify_client_endpoint": [],
|
||||
"verify_client_url": [],
|
||||
"mesh_with": [],
|
||||
"mesh_psk": "",
|
||||
"mesh_psk_file": "",
|
||||
"stun": {}
|
||||
}
|
||||
```
|
||||
|
||||
### Listen Fields
|
||||
|
||||
See [Listen Fields](/configuration/shared/listen/) for details.
|
||||
|
||||
### Fields
|
||||
|
||||
#### tls
|
||||
|
||||
TLS configuration, see [TLS](/configuration/shared/tls/#inbound).
|
||||
|
||||
#### config_path
|
||||
|
||||
==Required==
|
||||
|
||||
Derper configuration file path.
|
||||
|
||||
Example: `derper.key`
|
||||
|
||||
#### verify_client_endpoint
|
||||
|
||||
Tailscale endpoints tags to verify clients.
|
||||
|
||||
#### verify_client_url
|
||||
|
||||
URL to verify clients.
|
||||
|
||||
Object format:
|
||||
|
||||
```json
|
||||
{
|
||||
"url": "https://my-headscale.com/verify",
|
||||
|
||||
... // Dial Fields
|
||||
}
|
||||
```
|
||||
|
||||
Setting Array value to a string `__URL__` is equivalent to configuring:
|
||||
|
||||
```json
|
||||
{ "url": __URL__ }
|
||||
```
|
||||
|
||||
#### mesh_with
|
||||
|
||||
Mesh with other DERP servers.
|
||||
|
||||
Object format:
|
||||
|
||||
```json
|
||||
{
|
||||
"server": "",
|
||||
"server_port": "",
|
||||
"host": "",
|
||||
"tls": {},
|
||||
|
||||
... // Dial Fields
|
||||
}
|
||||
```
|
||||
|
||||
Object fields:
|
||||
|
||||
- `server`: **Required** DERP server address.
|
||||
- `server_port`: **Required** DERP server port.
|
||||
- `host`: Custom DERP hostname.
|
||||
- `tls`: [TLS](/configuration/shared/tls/#outbound)
|
||||
- `Dial Fields`: [Dial Fields](/configuration/shared/dial/)
|
||||
|
||||
#### mesh_psk
|
||||
|
||||
Pre-shared key for DERP mesh.
|
||||
|
||||
#### mesh_psk_file
|
||||
|
||||
Pre-shared key file for DERP mesh.
|
||||
|
||||
#### stun
|
||||
|
||||
STUN server listen options.
|
||||
|
||||
Object format:
|
||||
|
||||
```json
|
||||
{
|
||||
"enabled": true,
|
||||
|
||||
... // Listen Fields
|
||||
}
|
||||
```
|
||||
|
||||
Object fields:
|
||||
|
||||
- `enabled`: **Required** Enable STUN server.
|
||||
- `listen`: **Required** STUN server listen address, default to `::`.
|
||||
- `listen_port`: **Required** STUN server listen port, default to `3478`.
|
||||
- `other Listen Fields`: [Listen Fields](/configuration/shared/listen/)
|
||||
|
||||
Setting `stun` value to a number `__PORT__` is equivalent to configuring:
|
||||
|
||||
```json
|
||||
{ "enabled": true, "listen_port": __PORT__ }
|
||||
```
|
||||
30
docs/configuration/service/index.md
Normal file
30
docs/configuration/service/index.md
Normal file
@@ -0,0 +1,30 @@
|
||||
---
|
||||
icon: material/new-box
|
||||
---
|
||||
|
||||
!!! question "Since sing-box 1.12.0"
|
||||
|
||||
# Service
|
||||
|
||||
### Structure
|
||||
|
||||
```json
|
||||
{
|
||||
"endpoints": [
|
||||
{
|
||||
"type": "",
|
||||
"tag": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
### Fields
|
||||
|
||||
| Type | Format |
|
||||
|-------------|--------------------------|
|
||||
| `derp` | [DERP](./derp) |
|
||||
|
||||
#### tag
|
||||
|
||||
The tag of the endpoint.
|
||||
Reference in New Issue
Block a user