-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig
113 lines (91 loc) · 2.31 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# Only try the identity specified by IdentityFile, do not try identities stored by ssh-agent.
# Will avoid a "too many authentication failures" error if ssh-agent stores many identities.
IdentitiesOnly yes
#### Git repositories ####
Host github.com
IdentityFile ~/.ssh/id_github
# avoid adding many IPs to known_hosts (default in newer OpenSSH)
CheckHostIP no
Host gitlab.com
IdentityFile ~/.ssh/id_gitlab
# avoid adding many IPs to known_hosts (default in newer OpenSSH)
CheckHostIP no
Host c4science.ch
IdentityFile ~/.ssh/id_c4science
Host lts2.epfl.ch
IdentityFile ~/.ssh/id_lts2_gitlab
Host git.arcanite.ch
IdentityFile ~/.ssh/id_arcanite_gitlab
Host aur
Hostname aur.archlinux.org
User aur
IdentityFile ~/.ssh/id_aur
Host git.overleaf.com
User [email protected]
#### OVH Virtual Private Server ####
Host vps
# IPv4 only
#Hostname vps262374.ovh.net
# IPv4 and IPv6, defaults to IPv6
Hostname deff.ch
#Hostname fanfare-orsonnens.ch
# IPv4 of the VPS
#Hostname 164.132.40.229
# IPv6 of the VPS
#Hostname 2001:41d0:302:2000::2478
Port 35719
User root
IdentityFile ~/.ssh/id_ovh
#### Blue Brain Project ####
Host bbp
Hostname bbpviz1.bbp.epfl.ch
User defferra
IdentityFile ~/.ssh/id_bbp
#### Amazon Web Service ####
Host aws
Hostname ec2-54-93-112-97.eu-central-1.compute.amazonaws.com
User ubuntu
IdentityFile ~/.ssh/id_aws
#### LTS2 CDK ####
# Personal instance on cdk8 (mdeff_gcnn_2).
Host cdk1
Hostname lts2cdk.epfl.ch
Port 12822
User ubuntu
IdentityFile ~/.ssh/id_lts2_cdk
# Yann's instance on cdk9 (YaNN).
Host cdk2
Hostname lts2cdk.epfl.ch
Port 56622
User mdeff
IdentityFile ~/.ssh/id_lts2_cdk
# Nathanaël's instance on cdk7 (Nathanael main).
Host cdk3
Hostname lts2cdk.epfl.ch
Port 49022
User mdeff
IdentityFile ~/.ssh/id_lts2_cdk
# Youngjoo's instance on cdk6 (youngjoo).
Host cdk4
Hostname lts2cdk.epfl.ch
Port 62522
User mdeff
IdentityFile ~/.ssh/id_lts2_cdk
# First GPU server (with 4 Nvidia GeForce GTX 1080).
Host gdk0
Hostname lts2gdk0.epfl.ch
Port 22
User defferra
IdentityFile ~/.ssh/id_lts2_cdk
# Second GPU server (with 4 Nvidia Tesla K40c).
Host srv5
Hostname lts2srv5.epfl.ch
Port 22
User defferra
IdentityFile ~/.ssh/id_lts2_cdk
# Personal instance on cdk1 (mdeff_nogpu_1).
Host cdk5
Hostname lts2cdk.epfl.ch
Port 24422
User ubuntu
IdentityFile ~/.ssh/id_lts2_cdk