-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpytu.example.json
62 lines (62 loc) · 1.44 KB
/
pytu.example.json
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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"tunnels": [
{
"name": "Tunnel to Ubuntu on Homeserver",
"ssh": {
"port": 22,
"options": ["-f", "-N"],
"forwardings": [
{
"local_port": 81,
"remote_host": "localhost",
"remote_port": 80
},
{
"local_port": 8081,
"remote_host": "localhost",
"remote_port": 8080
},
{
"local_port": 8096,
"remote_host": "localhost",
"remote_port": 8096
}
],
"user": "username",
"host": "192.168.0.1"
}
},
{
"name": "Tunnel to Windows 10 on Mums PC",
"ssh": {
"port": 22,
"options": ["-f", "-N"],
"forwardings": [
{
"local_port": 3307,
"remote_host": "localhost",
"remote_port": 3306
}
],
"user": "daddy",
"host": "192.168.0.2"
}
},
{
"name": "Tunnel to Termux on Pixel",
"ssh": {
"port": 22,
"options": ["-f", "-N"],
"forwardings": [
{
"local_port": 3308,
"remote_host": "localhost",
"remote_port": 3306
}
],
"user": "defaultuser",
"host": "192.168.0.96"
}
}
]
}