-
Notifications
You must be signed in to change notification settings - Fork 0
/
ssh_config
44 lines (42 loc) · 1.04 KB
/
ssh_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
# opnsense router
Host faucet
User root
# TODO: change this to actual IP when on-site
HostName 10.188.33.84
# HostName 10.0.0.1
StrictHostKeyChecking no
UserKnownHostsFile /dev/null
Compression yes
PasswordAuthentication no
PreferredAuthentications publickey
IdentitiesOnly yes
IdentityFile ~/.ssh/id_faucet
# TODO: change to your cs3-login host alias, or remove when onsite
ProxyJump cs3-login
# visualization tower
Host viz
User faucet
StrictHostKeyChecking no
UserKnownHostsFile /dev/null
Compression yes
PasswordAuthentication no
PreferredAuthentications publickey
IdentitiesOnly yes
IdentityFile ~/.ssh/id_faucet
# TODO: not needed when in internal network
ProxyJump faucet
ForwardX11 yes
ForwardX11Trusted yes
# copute nodes
Host drain hot cold
# TODO: change to own user
User root
StrictHostKeyChecking no
UserKnownHostsFile /dev/null
Compression yes
PasswordAuthentication no
PreferredAuthentications publickey
IdentitiesOnly yes
IdentityFile ~/.ssh/id_faucet
# TODO: not needed when in internal network
ProxyJump faucet