mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 11:03:13 +00:00
44 lines
522 B
Markdown
44 lines
522 B
Markdown
|
`dns` inbound is a DNS server.
|
||
|
|
||
|
### Structure
|
||
|
|
||
|
```json
|
||
|
{
|
||
|
"inbounds": [
|
||
|
{
|
||
|
"type": "dns",
|
||
|
"tag": "dns-in",
|
||
|
|
||
|
"listen": "::",
|
||
|
"listen_port": 5353,
|
||
|
"network": "udp"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
```
|
||
|
|
||
|
!!! note ""
|
||
|
|
||
|
There are no outbound connections by the DNS inbound, all requests are handled internally.
|
||
|
|
||
|
### Listen Fields
|
||
|
|
||
|
#### listen
|
||
|
|
||
|
==Required==
|
||
|
|
||
|
Listen address.
|
||
|
|
||
|
#### listen_port
|
||
|
|
||
|
==Required==
|
||
|
|
||
|
Listen port.
|
||
|
|
||
|
### DNS Fields
|
||
|
|
||
|
#### network
|
||
|
|
||
|
Listen network, one of `tcp` `udp`.
|
||
|
|
||
|
Both if empty.
|