-
Notifications
You must be signed in to change notification settings - Fork 22
/
ssh_config
30 lines (29 loc) · 1.22 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
Host lsu_tds
HostName fortytwo.cct.lsu.edu
# operators must ensure their username is correct below
User USERNAME
# IdentityFile is the private key used for passwordless authentication
# to the remote server; change it if you've created separate keys
# for this purpose using a name different than the default generated
# by ssh-keygen
IdentityFile ~/.ssh/id_rsa
Port 2525
ServerAliveInterval 10
StrictHostKeyChecking=no
ConnectTimeout=60
ControlMaster auto # if no ssh master is running, starts up current ssh with "-M", making it master
ControlPath ~/.ssh/ssh_mux_%h_%p_%r # control file, defines socket and path to current connection
ControlPersist yes # keeps master running until it's killed (can be a timeout)
Host tacc_tds
Hostname adcircvis.tacc.utexas.edu
# operators must ensure their username is correct below
User USERNAME
# IdentityFile is the private key used for passwordless authentication
# to the remote server; change it if you've created separate keys
# for this purpose using a name different than the default generated
# by ssh-keygen
IdentityFile ~/.ssh/id_rsa
Port 22
ServerAliveInterval 10
StrictHostKeyChecking=no
ConnectTimeout=60