2022-09-13 03:24:33 +00:00
|
|
|
### Structure
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"type": "vless",
|
|
|
|
"tag": "vless-out",
|
|
|
|
|
|
|
|
"server": "127.0.0.1",
|
|
|
|
"server_port": 1080,
|
|
|
|
"uuid": "bf000d23-0752-40b4-affe-68f7707a9661",
|
2023-02-25 08:24:08 +00:00
|
|
|
"flow": "xtls-rprx-vision",
|
2022-09-13 03:24:33 +00:00
|
|
|
"network": "tcp",
|
|
|
|
"tls": {},
|
|
|
|
"packet_encoding": "",
|
2023-11-08 04:09:22 +00:00
|
|
|
"multiplex": {},
|
2022-09-13 03:24:33 +00:00
|
|
|
"transport": {},
|
|
|
|
|
|
|
|
... // Dial Fields
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Fields
|
|
|
|
|
|
|
|
#### server
|
|
|
|
|
|
|
|
==Required==
|
|
|
|
|
|
|
|
The server address.
|
|
|
|
|
|
|
|
#### server_port
|
|
|
|
|
|
|
|
==Required==
|
|
|
|
|
|
|
|
The server port.
|
|
|
|
|
|
|
|
#### uuid
|
|
|
|
|
|
|
|
==Required==
|
|
|
|
|
2023-03-05 04:57:08 +00:00
|
|
|
VLESS user id.
|
2022-09-13 03:24:33 +00:00
|
|
|
|
2023-02-25 08:24:08 +00:00
|
|
|
#### flow
|
|
|
|
|
|
|
|
VLESS Sub-protocol.
|
|
|
|
|
|
|
|
Available values:
|
|
|
|
|
|
|
|
* `xtls-rprx-vision`
|
|
|
|
|
2022-09-13 03:24:33 +00:00
|
|
|
#### network
|
|
|
|
|
|
|
|
Enabled network
|
|
|
|
|
|
|
|
One of `tcp` `udp`.
|
|
|
|
|
|
|
|
Both is enabled by default.
|
|
|
|
|
|
|
|
#### tls
|
|
|
|
|
|
|
|
TLS configuration, see [TLS](/configuration/shared/tls/#outbound).
|
|
|
|
|
|
|
|
#### packet_encoding
|
|
|
|
|
2023-02-28 12:27:30 +00:00
|
|
|
UDP packet encoding, xudp is used by default.
|
|
|
|
|
2022-09-13 03:24:33 +00:00
|
|
|
| Encoding | Description |
|
|
|
|
|------------|-----------------------|
|
|
|
|
| (none) | Disabled |
|
|
|
|
| packetaddr | Supported by v2ray 5+ |
|
|
|
|
| xudp | Supported by xray |
|
|
|
|
|
2023-11-08 04:09:22 +00:00
|
|
|
#### multiplex
|
|
|
|
|
|
|
|
See [Multiplex](/configuration/shared/multiplex#outbound) for details.
|
|
|
|
|
2022-09-13 03:24:33 +00:00
|
|
|
#### transport
|
|
|
|
|
2023-12-14 14:23:52 +00:00
|
|
|
V2Ray Transport configuration, see [V2Ray Transport](/configuration/shared/v2ray-transport/).
|
2022-09-13 03:24:33 +00:00
|
|
|
|
|
|
|
### Dial Fields
|
|
|
|
|
2023-12-14 14:23:52 +00:00
|
|
|
See [Dial Fields](/configuration/shared/dial/) for details.
|