summaryrefslogtreecommitdiff
path: root/example/server.toml
blob: 6eaca8bf87b1c1b361c5e45c2c93ae89c256faa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[server]
listen = "0.0.0.0:10000"
allow_help = false
# No-ACK extension does not send success or failure status to clients connecting to services
# with prefix "__nonstd_ext_no_ack_". This is useful when using TCPMUX on high-latency networks.
# Note: the server is still compatible to clients with vanilla protocol with extension enabled.
no_ack_extension = true

[[service]]
name = "SSH"
addr = "127.0.0.1:22"

[[service]]
name = "Telnet"
addr = "127.0.0.1:1111"

[[service]]
name = "Website"
addr = "127.0.0.1:80"

[[service]]
name = "RemoteDesktop"
addr = "127.0.0.1:3389"