-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.toml
49 lines (42 loc) · 1.16 KB
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# List of possible admin socket locations
yggdrasil_admin_listen = [
"unix:///var/run/yggdrasil/yggdrasil.sock",
"unix:///var/run/yggdrasil.sock",
"tcp://localhost:9001",
]
# List of yggdrasil listen addresses
# Known in the yggdrasil config as `Listen`
# Needed on at least one side for "quic" and "tls" protocols to work
yggdrasil_listen = [ ]
# Default connect/listen port on yggdrasil network
listen_port = 4701
# Use IPv4/6 address space
allow_ipv4 = true
allow_ipv6 = false
# List of peering protocols
# Supported are "tcp", "quic", "tls"
yggdrasil_protocols = [ "tcp", "quic" ]
# List of allowed yggdrasil addresses
# Uncomment to apply
#whitelist = [ ]
# List of STUN servers
stun_servers = [
"stunserver.stunprotocol.org:3478",
"136.243.59.79:3478",
"34.192.137.246:3478",
"94.130.130.49:3478",
"192.172.233.145:3478",
"95.216.78.222:3478",
"88.99.67.241:3478",
"88.218.220.40:3478",
"54.177.85.190:3478",
"88.198.151.128:3478",
"83.64.250.246:3478",
"62.72.83.10:3478",
"202.1.117.2:3478",
"51.83.201.84:3478",
"34.206.168.53:3478",
"91.213.98.54:3478",
]
# If false, servers will be queried consecutively
stun_randomize = true