forked from StormSurgeLive/asgs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathssh_config
56 lines (53 loc) · 1.87 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
45
46
47
48
49
50
51
52
53
54
55
56
Host renci_tds
Hostname ht4.renci.org
# Note: RENCI's THREDDS server uses a single account login, so
# the User field below is likely to need no modification
User ncfs
# 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
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
Host lsu_ccr_tds
Hostname chenier.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
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