-
Notifications
You must be signed in to change notification settings - Fork 1
/
config
76 lines (58 loc) · 1.59 KB
/
config
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
63
64
65
66
67
68
69
70
71
72
73
74
75
Host *
ServerAliveInterval 10
ServerAliveCountMax 3
StrictHostKeyChecking no
User <your_pid>
Host github.com
IdentityFile ~/.ssh/id_rsa
## vbi servers
Host gimli
HostName gimli.vbi.vt.edu
IdentityFile ~/.ssh/id_rsa
Host snowmane
HostName snowmane.vbi.vt.edu
IdentityFile ~/.ssh/id_rsa
Host lightfoot
HostName lightfoot.vbi.vt.edu
IdentityFile ~/.ssh/id_rsa
# sdal data science servers
Host sdal_r
Hostname 192.168.122.10
ProxyCommand ssh lightfoot -W %h:%p
Host sdal_r_snowmane
ProxyCommand ssh snowmane -W 127.0.0.1:22210
Host sdal_pg
Hostname 192.168.122.3
ProxyCommand ssh lightfoot -W %h:%p
Host sdal_pg_snowmane
ProxyCommand ssh snowmane -W 127.0.0.1:22203
Host sdal_py
Hostname 192.168.122.8
ProxyCommand ssh lightfoot -W %h:%p
Host sdal_an
Hostname 192.168.122.7
ProxyCommand ssh lightfoot -W %h:%p
# ssh forwarding
Host rs_tunnel
Hostname 192.168.122.10
LocalForward 8787 localhost:8787
ProxyCommand ssh lightfoot -W %h:%p
IdentityFile ~/.ssh/id_rsa
Host rs_tunnel_snowmane
Hostname snowmane.vbi.vt.edu
LocalForward 8787 localhost:18787
IdentityFile ~/.ssh/id_rsa
Host pg_tunnel
Hostname 192.168.122.3
LocalForward 8080 localhost:80
ProxyCommand ssh lightfoot -W %h:%p
IdentityFile ~/.ssh/id_rsa
Host pg_tunnel_snowmane
Hostname snowmane.vbi.vt.edu
LocalForward 5432 localhost:5433
IdentityFile ~/.ssh/id_rsa
Host jp_tunnel
Hostname 192.168.122.8
LocalForward 8000 localhost:8000
ProxyCommand ssh lightfoot -W %h:%p
IdentityFile ~/.ssh/id_rsa