17 lines
345 B
JSON
17 lines
345 B
JSON
{
|
|
// host and port of the SSH server that's going to act as the proxy
|
|
"host": "rusty.wafe.eu",
|
|
"port": 10022,
|
|
|
|
// username I'm allowed to use on that server
|
|
"user": "tunnel",
|
|
|
|
// a list of associations
|
|
"mapping": [
|
|
// port "local" will be available as port "remote" on the above server
|
|
{
|
|
"remote": 39999,
|
|
"local": 22
|
|
}
|
|
]
|
|
}
|