-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (42 loc) · 1.66 KB
/
index.html
File metadata and controls
47 lines (42 loc) · 1.66 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>FCL Cluster</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>
code {
background-color: #eee;
}
a,a:visited {
color: #33f;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<ol>
<li>Check <a href="README.txt">README.txt</a> on how to register a new account</li>
<li>Download <a href="cluster-info/ssh_known_hosts.txt">FCL cluster host public keys</a> and save it as <code>~/.ssh/fcl_known_hosts</code></li>
<li>Download <a href="cluster-info/ssh_config.txt">this ssh configuration</a> and include it in your <code>~/.ssh/config</code></li>
<li>The ssh configuration we provide contains some instructions; you might want to follow it to make your SSH life easier:<pre style="margin-left:60px;color:#888">###################################################
### Specify your login username in FCL cluster ###
###################################################
#User YOUR_USERNAME
###################################################
### Specify the path to your private key ###
### if it cannot be found in standard locations ###
###################################################
#IdentityFile ~/.ssh/id_rsa
###################################################
### Turn on strict host public key checking and ###
### specify the location of host public keys ###
###################################################
#StrictHostKeyChecking yes
#UserKnownHostsFile ~/.ssh/fcl_known_hosts</pre></li>
</ol>
</body>
</html>