FILE / ScuroNeko/est
config.example.toml
Исходный файл и его история в репозитории.
25 lines
493 B
TOML
25 lines
493 B
TOML
[retry]
|
|
count = 5
|
|
delay = "5s"
|
|
|
|
[[entry]]
|
|
direction = "ltr"
|
|
remotePort = 2222
|
|
remoteIP = "192.168.0.1"
|
|
localPort = 22
|
|
localIP = "127.0.0.1"
|
|
host = "user@127.0.0.1"
|
|
|
|
# This block completely overrides the top-level [retry] block for this tunnel.
|
|
[entry.retry]
|
|
count = -1
|
|
delay = "5s"
|
|
|
|
[[entry]]
|
|
direction = "rtl"
|
|
remotePort = 5432
|
|
remoteIP = "127.0.0.1"
|
|
localPort = 54321
|
|
localIP = "127.0.0.1" # You can remove this line. If local or remote ip empty, est will use "127.0.0.1"
|
|
host = "my_server"
|