Browse code

ssh_config - v1.2 - Updates related to work servers

See Versions section for details

Fred authored on12/06/2025 22:46:17
Showing1 changed files
... ...
@@ -1,8 +1,8 @@
1 1
 # Title: config
2 2
 # Author: Frédéric CHEVALIER <vaderf@free.fr>
3
-# Version: 1.1
3
+# Version: 1.2
4 4
 # Created in: 2015-02-18
5
-# Modified in: 2022-02-24
5
+# Modified in: 2025-06-12
6 6
 
7 7
 
8 8
 
... ...
@@ -10,6 +10,7 @@
10 10
 # Versions #
11 11
 #==========#
12 12
 
13
+# v1.2 - 2025-06-12: update authentication method for work jump server / update location test by pinging DNS at work / keep connection alive for work servers
13 14
 # v1.1 - 2022-02-24: host options simplified with matching domain / conditional jump server added
14 15
 # v1.0 - 2022-01-23: work domain name updated / office machine name updated / dead server discarded
15 16
 # v0.10 - 2020-11-23: work server updated
... ...
@@ -106,6 +107,7 @@ Host github_p
106 107
 Host heron
107 108
     HostName heron.txbiomed.org
108 109
     PubkeyAuthentication no
110
+    GSSAPIAuthentication no
109 111
     ServerAliveInterval 120
110 112
     LogLevel QUIET
111 113
 
... ...
@@ -133,12 +135,13 @@ Host woffice
133 135
     User winkal
134 136
 
135 137
 # Conditional jump host
136
-Match host !heron.txbiomed.org,*.txbiomed.org,*.txbiomed.local !exec "ping -c 1 zeus.txbiomed.org &> /dev/null"
138
+Match host !heron.txbiomed.org,*.txbiomed.org,*.txbiomed.local !exec "ping -c 1 -W 2 206.124.51.1 &> /dev/null"
137 139
     ProxyJump heron
138 140
 
139 141
 # Default values for host in TxBiomed domain
140 142
 Match host *.txbiomed.org,*.txbiomed.local
141 143
     User fcheval
144
+    ServerAliveInterval 120
142 145
     ForwardX11 yes
143 146
     ForwardX11Trusted yes
144 147
 
Browse code

ssh_config - v1.1 - Simplify host options

See Versions section for details

Fred authored on24/02/2022 18:13:10
Showing1 changed files
... ...
@@ -1,8 +1,8 @@
1 1
 # Title: config
2 2
 # Author: Frédéric CHEVALIER <vaderf@free.fr>
3
-# Version: 0.11
3
+# Version: 1.1
4 4
 # Created in: 2015-02-18
5
-# Modified in: 2022-01-23
5
+# Modified in: 2022-02-24
6 6
 
7 7
 
8 8
 
... ...
@@ -10,7 +10,8 @@
10 10
 # Versions #
11 11
 #==========#
12 12
 
13
-# v0.11 - 2022-01-23: work domain name updated / office machine name updated / dead server discarded
13
+# v1.1 - 2022-02-24: host options simplified with matching domain / conditional jump server added
14
+# v1.0 - 2022-01-23: work domain name updated / office machine name updated / dead server discarded
14 15
 # v0.10 - 2020-11-23: work server updated
15 16
 # v0.9 - 2019-03-14: ssh options updated / work server updated
16 17
 # v0.8 - 2018-07-23: ssh options updated / work server updated
... ...
@@ -104,10 +105,7 @@ Host github_p
104 105
 
105 106
 Host heron
106 107
     HostName heron.txbiomed.org
107
-    User fcheval
108 108
     PubkeyAuthentication no
109
-    ForwardX11 yes
110
-    ForwardX11Trusted yes
111 109
     ServerAliveInterval 120
112 110
     LogLevel QUIET
113 111
 
... ...
@@ -115,39 +113,32 @@ Host heron
115 113
 
116 114
 Host zeus
117 115
     HostName zeus.txbiomed.org
118
-    User fcheval
119
-    ForwardX11 yes
120
-    ForwardX11Trusted yes
121 116
 
122 117
 Host bulmer
123 118
     HostName bulmer.txbiomed.org
124
-    User fcheval
125
-    ForwardX11 yes
126
-    ForwardX11Trusted yes
127 119
 
128 120
 Host crow
129 121
     HostName crow.txbiomed.org
130
-    User fcheval
131
-    ForwardX11 yes
132
-    ForwardX11Trusted yes
133 122
 
134 123
 Host titan
135 124
     HostName titan.txbiomed.org
136
-    User fcheval
137
-    ForwardX11 yes
138
-    ForwardX11Trusted yes
139 125
 
140 126
 # Fred office
141 127
 Host office
142 128
     HostName gen-labtechlt2.txbiomed.local
143
-    User fcheval
144
-    ForwardX11 yes
145
-    ForwardX11Trusted yes
146 129
 
147 130
 # Winka office
148 131
 Host woffice
149 132
     HostName gen-labtechlt1.txbiomed.local
150 133
     User winkal
134
+
135
+# Conditional jump host
136
+Match host !heron.txbiomed.org,*.txbiomed.org,*.txbiomed.local !exec "ping -c 1 zeus.txbiomed.org &> /dev/null"
137
+    ProxyJump heron
138
+
139
+# Default values for host in TxBiomed domain
140
+Match host *.txbiomed.org,*.txbiomed.local
141
+    User fcheval
151 142
     ForwardX11 yes
152 143
     ForwardX11Trusted yes
153 144
 
... ...
@@ -160,7 +151,7 @@ Host woffice
160 151
 # NB: These general settings must be at the end, the first value being used for each parameter (cf. man ssh_config).
161 152
 
162 153
 Host *
163
-    IdentityFile ~/.ssh/fred_work.rsa 
154
+    IdentityFile ~/.ssh/fred_work.rsa
164 155
     ForwardAgent no
165 156
     ForwardX11 no
166 157
     ForwardX11Trusted no
Browse code

ssh_config - v1.0 - Update work domain name

Fred authored on23/01/2022 22:05:26
Showing1 changed files
... ...
@@ -1,8 +1,8 @@
1 1
 # Title: config
2 2
 # Author: Frédéric CHEVALIER <vaderf@free.fr>
3
-# Version: 0.10
3
+# Version: 0.11
4 4
 # Created in: 2015-02-18
5
-# Modified in: 2020-11-23
5
+# Modified in: 2022-01-23
6 6
 
7 7
 
8 8
 
... ...
@@ -10,6 +10,7 @@
10 10
 # Versions #
11 11
 #==========#
12 12
 
13
+# v0.11 - 2022-01-23: work domain name updated / office machine name updated / dead server discarded
13 14
 # v0.10 - 2020-11-23: work server updated
14 15
 # v0.9 - 2019-03-14: ssh options updated / work server updated
15 16
 # v0.8 - 2018-07-23: ssh options updated / work server updated
... ...
@@ -102,7 +103,7 @@ Host github_p
102 103
 
103 104
 
104 105
 Host heron
105
-    HostName heron.txbiomedgenetics.org
106
+    HostName heron.txbiomed.org
106 107
     User fcheval
107 108
     PubkeyAuthentication no
108 109
     ForwardX11 yes
... ...
@@ -113,45 +114,39 @@ Host heron
113 114
 ## Connection to servers below works only after connection to heron from outside work network ##
114 115
 
115 116
 Host zeus
116
-    HostName zeus.txbiomedgenetics.org
117
+    HostName zeus.txbiomed.org
117 118
     User fcheval
118 119
     ForwardX11 yes
119 120
     ForwardX11Trusted yes
120 121
 
121 122
 Host bulmer
122
-    HostName bulmer.txbiomedgenetics.org
123
+    HostName bulmer.txbiomed.org
123 124
     User fcheval
124 125
     ForwardX11 yes
125 126
     ForwardX11Trusted yes
126 127
 
127 128
 Host crow
128
-    HostName crow.txbiomedgenetics.org
129
-    User fcheval
130
-    ForwardX11 yes
131
-    ForwardX11Trusted yes
132
-
133
-Host mendel
134
-    HostName mendel.txbiomedgenetics.org
129
+    HostName crow.txbiomed.org
135 130
     User fcheval
136 131
     ForwardX11 yes
137 132
     ForwardX11Trusted yes
138 133
 
139 134
 Host titan
140
-    HostName titan.txbiomedgenetics.org
135
+    HostName titan.txbiomed.org
141 136
     User fcheval
142 137
     ForwardX11 yes
143 138
     ForwardX11Trusted yes
144 139
 
145 140
 # Fred office
146 141
 Host office
147
-    HostName pc215b.txbiomed.local
142
+    HostName gen-labtechlt2.txbiomed.local
148 143
     User fcheval
149 144
     ForwardX11 yes
150 145
     ForwardX11Trusted yes
151 146
 
152 147
 # Winka office
153 148
 Host woffice
154
-    HostName pc196.txbiomed.local
149
+    HostName gen-labtechlt1.txbiomed.local
155 150
     User winkal
156 151
     ForwardX11 yes
157 152
     ForwardX11Trusted yes
Browse code

ssh_config - v0.10 - Update work servers

Fred authored on26/11/2020 23:41:01
Showing1 changed files
... ...
@@ -1,8 +1,8 @@
1 1
 # Title: config
2 2
 # Author: Frédéric CHEVALIER <vaderf@free.fr>
3
-# Version: 0.9
3
+# Version: 0.10
4 4
 # Created in: 2015-02-18
5
-# Modified in: 2019-03-14
5
+# Modified in: 2020-11-23
6 6
 
7 7
 
8 8
 
... ...
@@ -10,6 +10,7 @@
10 10
 # Versions #
11 11
 #==========#
12 12
 
13
+# v0.10 - 2020-11-23: work server updated
13 14
 # v0.9 - 2019-03-14: ssh options updated / work server updated
14 15
 # v0.8 - 2018-07-23: ssh options updated / work server updated
15 16
 # v0.7 - 2018-05-10: update ssh port on personal US server because of AT&T restriction / update work server
... ...
@@ -111,14 +112,8 @@ Host heron
111 112
 
112 113
 ## Connection to servers below works only after connection to heron from outside work network ##
113 114
 
114
-Host perseus
115
-    HostName perseus.txbiomedgenetics.org
116
-    User fcheval
117
-    ForwardX11 yes
118
-    ForwardX11Trusted yes
119
-
120
-Host medusa2
121
-    HostName medusa2.txbiomedgenetics.org
115
+Host zeus
116
+    HostName zeus.txbiomedgenetics.org
122 117
     User fcheval
123 118
     ForwardX11 yes
124 119
     ForwardX11Trusted yes
... ...
@@ -149,14 +144,14 @@ Host titan
149 144
 
150 145
 # Fred office
151 146
 Host office
152
-    HostName 206.124.62.215
147
+    HostName pc215b.txbiomed.local
153 148
     User fcheval
154 149
     ForwardX11 yes
155 150
     ForwardX11Trusted yes
156 151
 
157 152
 # Winka office
158 153
 Host woffice
159
-    HostName 206.124.55.81
154
+    HostName pc196.txbiomed.local
160 155
     User winkal
161 156
     ForwardX11 yes
162 157
     ForwardX11Trusted yes
Browse code

ssh_config - v0.9 - Update work servers

Fred authored on14/03/2019 19:24:48
Showing1 changed files
... ...
@@ -1,8 +1,8 @@
1 1
 # Title: config
2 2
 # Author: Frédéric CHEVALIER <vaderf@free.fr>
3
-# Version: 0.8
3
+# Version: 0.9
4 4
 # Created in: 2015-02-18
5
-# Modified in: 2018-07-23
5
+# Modified in: 2019-03-14
6 6
 
7 7
 
8 8
 
... ...
@@ -10,6 +10,7 @@
10 10
 # Versions #
11 11
 #==========#
12 12
 
13
+# v0.9 - 2019-03-14: ssh options updated / work server updated
13 14
 # v0.8 - 2018-07-23: ssh options updated / work server updated
14 15
 # v0.7 - 2018-05-10: update ssh port on personal US server because of AT&T restriction / update work server
15 16
 # v0.6 - 2017-06-18: github servers added
... ...
@@ -105,7 +106,7 @@ Host heron
105 106
     PubkeyAuthentication no
106 107
     ForwardX11 yes
107 108
     ForwardX11Trusted yes
108
-    ServerAliveInterval 600
109
+    ServerAliveInterval 120
109 110
     LogLevel QUIET
110 111
 
111 112
 ## Connection to servers below works only after connection to heron from outside work network ##
... ...
@@ -155,7 +156,7 @@ Host office
155 156
 
156 157
 # Winka office
157 158
 Host woffice
158
-    HostName 206.124.62.196
159
+    HostName 206.124.55.81
159 160
     User winkal
160 161
     ForwardX11 yes
161 162
     ForwardX11Trusted yes
Browse code

ssh_config - v0.8 - Update work servers

Fred authored on23/07/2018 19:09:38
Showing1 changed files
... ...
@@ -1,8 +1,8 @@
1 1
 # Title: config
2 2
 # Author: Frédéric CHEVALIER <vaderf@free.fr>
3
-# Version: 0.7
3
+# Version: 0.8
4 4
 # Created in: 2015-02-18
5
-# Modified in: 2018-05-10
5
+# Modified in: 2018-07-23
6 6
 
7 7
 
8 8
 
... ...
@@ -10,6 +10,7 @@
10 10
 # Versions #
11 11
 #==========#
12 12
 
13
+# v0.8 - 2018-07-23: ssh options updated / work server updated
13 14
 # v0.7 - 2018-05-10: update ssh port on personal US server because of AT&T restriction / update work server
14 15
 # v0.6 - 2017-06-18: github servers added
15 16
 # v0.5 - 2017-04-18: update hostname / update identity files with rsa keys
... ...
@@ -105,6 +106,7 @@ Host heron
105 106
     ForwardX11 yes
106 107
     ForwardX11Trusted yes
107 108
     ServerAliveInterval 600
109
+    LogLevel QUIET
108 110
 
109 111
 ## Connection to servers below works only after connection to heron from outside work network ##
110 112
 
... ...
@@ -138,9 +140,11 @@ Host mendel
138 140
     ForwardX11 yes
139 141
     ForwardX11Trusted yes
140 142
 
141
-Host stevens
142
-    HostName stevens.txbiomedgenetics.org
143
+Host titan
144
+    HostName titan.txbiomedgenetics.org
143 145
     User fcheval
146
+    ForwardX11 yes
147
+    ForwardX11Trusted yes
144 148
 
145 149
 # Fred office
146 150
 Host office
Browse code

ssh_config - v0.7 - Updates due to new configurations

Personal server: AT&T seems to have reserved port 22.
Work server: Heron does not allow keys anymore and breaks connection after 24h.

Fred authored on10/05/2018 22:49:14
Showing1 changed files
... ...
@@ -1,8 +1,8 @@
1 1
 # Title: config
2 2
 # Author: Frédéric CHEVALIER <vaderf@free.fr>
3
-# Version: 0.6
3
+# Version: 0.7
4 4
 # Created in: 2015-02-18
5
-# Modified in: 2017-06-18
5
+# Modified in: 2018-05-10
6 6
 
7 7
 
8 8
 
... ...
@@ -10,6 +10,7 @@
10 10
 # Versions #
11 11
 #==========#
12 12
 
13
+# v0.7 - 2018-05-10: update ssh port on personal US server because of AT&T restriction / update work server
13 14
 # v0.6 - 2017-06-18: github servers added
14 15
 # v0.5 - 2017-04-18: update hostname / update identity files with rsa keys
15 16
 # v0.4 - 2016-08-14: X11 options changed due to bashrc changes
... ...
@@ -40,6 +41,7 @@ Host wf
40 41
     HostName vaderf.com
41 42
     User wf
42 43
     IdentityFile ~/.ssh/main-server.rsa
44
+    Port 2222
43 45
     ForwardX11 yes
44 46
     ForwardX11Trusted yes
45 47
 
... ...
@@ -47,6 +49,7 @@ Host fwf
47 49
     HostName vaderf.com
48 50
     User fred
49 51
     IdentityFile ~/.ssh/fred_perso.rsa
52
+    Port 2222
50 53
     ForwardX11 yes
51 54
     ForwardX11Trusted yes
52 55
 
... ...
@@ -98,8 +101,10 @@ Host github_p
98 101
 Host heron
99 102
     HostName heron.txbiomedgenetics.org
100 103
     User fcheval
104
+    PubkeyAuthentication no
101 105
     ForwardX11 yes
102 106
     ForwardX11Trusted yes
107
+    ServerAliveInterval 600
103 108
 
104 109
 ## Connection to servers below works only after connection to heron from outside work network ##
105 110
 
Browse code

ssh_config - v0.6 - Add Github servers

Fred authored on18/06/2017 22:07:03
Showing1 changed files
... ...
@@ -1,8 +1,8 @@
1 1
 # Title: config
2 2
 # Author: Frédéric CHEVALIER <vaderf@free.fr>
3
-# Version: 0.5
3
+# Version: 0.6
4 4
 # Created in: 2015-02-18
5
-# Modified in: 2017-04-18
5
+# Modified in: 2017-06-18
6 6
 
7 7
 
8 8
 
... ...
@@ -10,6 +10,7 @@
10 10
 # Versions #
11 11
 #==========#
12 12
 
13
+# v0.6 - 2017-06-18: github servers added
13 14
 # v0.5 - 2017-04-18: update hostname / update identity files with rsa keys
14 15
 # v0.4 - 2016-08-14: X11 options changed due to bashrc changes
15 16
 # v0.3 - 2016-01-19: servers updated / remove default user
... ...
@@ -23,6 +24,14 @@
23 24
 # Personal servers #
24 25
 #==================#
25 26
 
27
+Host github
28
+    HostName github.com
29
+    User git
30
+    IdentityFile ~/.ssh/github.rsa
31
+    ForwardX11 no
32
+    ForwardX11Trusted no
33
+
34
+
26 35
 #-----#
27 36
 # USA #
28 37
 #-----#
... ...
@@ -78,6 +87,14 @@ Host fwfr
78 87
 # Work servers #
79 88
 #==============#
80 89
 
90
+Host github_p
91
+    HostName github.com
92
+    User git
93
+    IdentityFile ~/.ssh/github_pro.rsa
94
+    ForwardX11 no
95
+    ForwardX11Trusted no
96
+
97
+
81 98
 Host heron
82 99
     HostName heron.txbiomedgenetics.org
83 100
     User fcheval
Browse code

ssh_config - v0.5 - Update hostname and id file

Fred authored on18/04/2017 22:46:37
Showing1 changed files
... ...
@@ -1,8 +1,8 @@
1 1
 # Title: config
2 2
 # Author: Frédéric CHEVALIER <vaderf@free.fr>
3
-# Version: 0.4
3
+# Version: 0.5
4 4
 # Created in: 2015-02-18
5
-# Modified in: 2016-08-14
5
+# Modified in: 2017-04-18
6 6
 
7 7
 
8 8
 
... ...
@@ -10,6 +10,7 @@
10 10
 # Versions #
11 11
 #==========#
12 12
 
13
+# v0.5 - 2017-04-18: update hostname / update identity files with rsa keys
13 14
 # v0.4 - 2016-08-14: X11 options changed due to bashrc changes
14 15
 # v0.3 - 2016-01-19: servers updated / remove default user
15 16
 # v0.2 - 2016-01-01: Winka office added
... ...
@@ -29,13 +30,14 @@
29 30
 Host wf
30 31
     HostName vaderf.com
31 32
     User wf
32
-    IdentityFile id_main-server.dsa
33
+    IdentityFile ~/.ssh/main-server.rsa
33 34
     ForwardX11 yes
34 35
     ForwardX11Trusted yes
35 36
 
36 37
 Host fwf
37 38
     HostName vaderf.com
38 39
     User fred
40
+    IdentityFile ~/.ssh/fred_perso.rsa
39 41
     ForwardX11 yes
40 42
     ForwardX11Trusted yes
41 43
 
... ...
@@ -43,6 +45,7 @@ Host fwf
43 45
 Host mc
44 46
     HostName media-center.local
45 47
     User wf2
48
+    IdentityFile ~/.ssh/fred_perso.rsa
46 49
     ForwardX11 yes
47 50
     ForwardX11Trusted yes
48 51
 
... ...
@@ -50,6 +53,7 @@ Host mc
50 53
 Host winka
51 54
     HostName 192.168.1.70
52 55
     user winka
56
+    IdentityFile ~/.ssh/fred_perso.rsa
53 57
     ForwardX11 yes
54 58
     ForwardX11Trusted yes
55 59
 
... ...
@@ -61,11 +65,12 @@ Host winka
61 65
 Host wfr
62 66
     HostName vaderf.ddns.net
63 67
     User wf
64
-    IdentityFile id_main-server.dsa
68
+    IdentityFile ~/.ssh/main-server.rsa
65 69
 
66 70
 Host fwfr
67 71
     HostName vaderf.ddns.net
68 72
     User fred
73
+    IdentityFile ~/.ssh/fred_perso.rsa
69 74
 
70 75
 
71 76
 
... ...
@@ -81,8 +86,8 @@ Host heron
81 86
 
82 87
 ## Connection to servers below works only after connection to heron from outside work network ##
83 88
 
84
-Host medusa
85
-    HostName medusa.txbiomedgenetics.org
89
+Host perseus
90
+    HostName perseus.txbiomedgenetics.org
86 91
     User fcheval
87 92
     ForwardX11 yes
88 93
     ForwardX11Trusted yes
... ...
@@ -138,6 +143,7 @@ Host woffice
138 143
 # NB: These general settings must be at the end, the first value being used for each parameter (cf. man ssh_config).
139 144
 
140 145
 Host *
146
+    IdentityFile ~/.ssh/fred_work.rsa 
141 147
     ForwardAgent no
142 148
     ForwardX11 no
143 149
     ForwardX11Trusted no
Browse code

ssh_config - v0.4 - Change X11 options due to bashrc updates

Fred authored on14/08/2016 23:55:20
Showing1 changed files
... ...
@@ -1,8 +1,8 @@
1 1
 # Title: config
2 2
 # Author: Frédéric CHEVALIER <vaderf@free.fr>
3
-# Version: 0.3
3
+# Version: 0.4
4 4
 # Created in: 2015-02-18
5
-# Modified in: 2016-01-19
5
+# Modified in: 2016-08-14
6 6
 
7 7
 
8 8
 
... ...
@@ -10,6 +10,7 @@
10 10
 # Versions #
11 11
 #==========#
12 12
 
13
+# v0.4 - 2016-08-14: X11 options changed due to bashrc changes
13 14
 # v0.3 - 2016-01-19: servers updated / remove default user
14 15
 # v0.2 - 2016-01-01: Winka office added
15 16
 # v0.1 - 2015-12-24: version section added / server names updated
... ...
@@ -29,20 +30,28 @@ Host wf
29 30
     HostName vaderf.com
30 31
     User wf
31 32
     IdentityFile id_main-server.dsa
33
+    ForwardX11 yes
34
+    ForwardX11Trusted yes
32 35
 
33 36
 Host fwf
34 37
     HostName vaderf.com
35 38
     User fred
39
+    ForwardX11 yes
40
+    ForwardX11Trusted yes
36 41
 
37 42
 
38 43
 Host mc
39 44
     HostName media-center.local
40 45
     User wf2
46
+    ForwardX11 yes
47
+    ForwardX11Trusted yes
41 48
 
42 49
 
43 50
 Host winka
44 51
     HostName 192.168.1.70
45 52
     user winka
53
+    ForwardX11 yes
54
+    ForwardX11Trusted yes
46 55
 
47 56
 
48 57
 #--------#
... ...
@@ -67,28 +76,40 @@ Host fwfr
67 76
 Host heron
68 77
     HostName heron.txbiomedgenetics.org
69 78
     User fcheval
79
+    ForwardX11 yes
80
+    ForwardX11Trusted yes
70 81
 
71 82
 ## Connection to servers below works only after connection to heron from outside work network ##
72 83
 
73 84
 Host medusa
74 85
     HostName medusa.txbiomedgenetics.org
75 86
     User fcheval
87
+    ForwardX11 yes
88
+    ForwardX11Trusted yes
76 89
 
77 90
 Host medusa2
78 91
     HostName medusa2.txbiomedgenetics.org
79 92
     User fcheval
93
+    ForwardX11 yes
94
+    ForwardX11Trusted yes
80 95
 
81 96
 Host bulmer
82 97
     HostName bulmer.txbiomedgenetics.org
83 98
     User fcheval
99
+    ForwardX11 yes
100
+    ForwardX11Trusted yes
84 101
 
85 102
 Host crow
86 103
     HostName crow.txbiomedgenetics.org
87 104
     User fcheval
105
+    ForwardX11 yes
106
+    ForwardX11Trusted yes
88 107
 
89 108
 Host mendel
90 109
     HostName mendel.txbiomedgenetics.org
91 110
     User fcheval
111
+    ForwardX11 yes
112
+    ForwardX11Trusted yes
92 113
 
93 114
 Host stevens
94 115
     HostName stevens.txbiomedgenetics.org
... ...
@@ -98,11 +119,15 @@ Host stevens
98 119
 Host office
99 120
     HostName 206.124.62.215
100 121
     User fcheval
122
+    ForwardX11 yes
123
+    ForwardX11Trusted yes
101 124
 
102 125
 # Winka office
103 126
 Host woffice
104 127
     HostName 206.124.62.196
105 128
     User winkal
129
+    ForwardX11 yes
130
+    ForwardX11Trusted yes
106 131
 
107 132
 
108 133
 
... ...
@@ -113,9 +138,9 @@ Host woffice
113 138
 # NB: These general settings must be at the end, the first value being used for each parameter (cf. man ssh_config).
114 139
 
115 140
 Host *
116
-     ForwardAgent no
117
-     ForwardX11 no
118
-     ForwardX11Trusted yes
119
-     Port 22
120
-     Protocol 2
141
+    ForwardAgent no
142
+    ForwardX11 no
143
+    ForwardX11Trusted no
144
+    Port 22
145
+    Protocol 2
121 146
 
Browse code

ssh_config - v0.3 - Update servers and remove default user

Fred authored on19/01/2016 23:25:31
Showing1 changed files
... ...
@@ -1,8 +1,8 @@
1 1
 # Title: config
2 2
 # Author: Frédéric CHEVALIER <vaderf@free.fr>
3
-# Version: 0.2
3
+# Version: 0.3
4 4
 # Created in: 2015-02-18
5
-# Modified in: 2016-01-01
5
+# Modified in: 2016-01-19
6 6
 
7 7
 
8 8
 
... ...
@@ -10,6 +10,7 @@
10 10
 # Versions #
11 11
 #==========#
12 12
 
13
+# v0.3 - 2016-01-19: servers updated / remove default user
13 14
 # v0.2 - 2016-01-01: Winka office added
14 15
 # v0.1 - 2015-12-24: version section added / server names updated
15 16
 # v0.0 - 2015-02-18: creation
... ...
@@ -31,6 +32,7 @@ Host wf
31 32
 
32 33
 Host fwf
33 34
     HostName vaderf.com
35
+    User fred
34 36
 
35 37
 
36 38
 Host mc
... ...
@@ -54,6 +56,7 @@ Host wfr
54 56
 
55 57
 Host fwfr
56 58
     HostName vaderf.ddns.net
59
+    User fred
57 60
 
58 61
 
59 62
 
... ...
@@ -83,12 +86,12 @@ Host crow
83 86
     HostName crow.txbiomedgenetics.org
84 87
     User fcheval
85 88
 
86
-Host bauhaus
87
-    HostName bauhaus.txbiomedgenetics.org
89
+Host mendel
90
+    HostName mendel.txbiomedgenetics.org
88 91
     User fcheval
89 92
 
90
-Host u2
91
-    HostName u2.txbiomedgenetics.org
93
+Host stevens
94
+    HostName stevens.txbiomedgenetics.org
92 95
     User fcheval
93 96
 
94 97
 # Fred office
... ...
@@ -113,7 +116,6 @@ Host *
113 116
      ForwardAgent no
114 117
      ForwardX11 no
115 118
      ForwardX11Trusted yes
116
-     User fred
117 119
      Port 22
118 120
      Protocol 2
119 121
 
Browse code

ssh_config - v0.2 - Winka office added

Fred authored on01/01/2016 23:37:38
Showing1 changed files
... ...
@@ -1,8 +1,8 @@
1 1
 # Title: config
2 2
 # Author: Frédéric CHEVALIER <vaderf@free.fr>
3
-# Version: 0.1
3
+# Version: 0.2
4 4
 # Created in: 2015-02-18
5
-# Modified in: 2015-12-24
5
+# Modified in: 2016-01-01
6 6
 
7 7
 
8 8
 
... ...
@@ -10,6 +10,7 @@
10 10
 # Versions #
11 11
 #==========#
12 12
 
13
+# v0.2 - 2016-01-01: Winka office added
13 14
 # v0.1 - 2015-12-24: version section added / server names updated
14 15
 # v0.0 - 2015-02-18: creation
15 16
 
... ...
@@ -90,17 +91,23 @@ Host u2
90 91
     HostName u2.txbiomedgenetics.org
91 92
     User fcheval
92 93
 
94
+# Fred office
93 95
 Host office
94 96
     HostName 206.124.62.215
95 97
     User fcheval
96 98
 
99
+# Winka office
100
+Host woffice
101
+    HostName 206.124.62.196
102
+    User winkal
103
+
97 104
 
98 105
 
99 106
 #==================#
100 107
 # General settings #
101 108
 #==================#
102 109
 
103
-# NB: These general settings must be at the end, the first value being use for each parameter (cf. man ssh_config).
110
+# NB: These general settings must be at the end, the first value being used for each parameter (cf. man ssh_config).
104 111
 
105 112
 Host *
106 113
      ForwardAgent no
... ...
@@ -110,5 +117,3 @@ Host *
110 117
      Port 22
111 118
      Protocol 2
112 119
 
113
-
114
-
Browse code

ssh_config - v0.1 - Update server names

Fred authored on24/12/2015 18:36:13
Showing1 changed files
... ...
@@ -1,8 +1,17 @@
1 1
 # Title: config
2 2
 # Author: Frédéric CHEVALIER <vaderf@free.fr>
3
-# Version: 0.0
3
+# Version: 0.1
4 4
 # Created in: 2015-02-18
5
-# Modified in:
5
+# Modified in: 2015-12-24
6
+
7
+
8
+
9
+#==========#
10
+# Versions #
11
+#==========#
12
+
13
+# v0.1 - 2015-12-24: version section added / server names updated
14
+# v0.0 - 2015-02-18: creation
6 15
 
7 16
 
8 17
 
... ...
@@ -10,6 +19,10 @@
10 19
 # Personal servers #
11 20
 #==================#
12 21
 
22
+#-----#
23
+# USA #
24
+#-----#
25
+
13 26
 Host wf
14 27
     HostName vaderf.com
15 28
     User wf
... ...
@@ -19,12 +32,8 @@ Host fwf
19 32
     HostName vaderf.com
20 33
 
21 34
 
22
-Host wf2
23
-    HostName 99.126.116.237
24
-    User wf2
25
-
26
-Host wf2.l
27
-    HostName wf2-server.local
35
+Host mc
36
+    HostName media-center.local
28 37
     User wf2
29 38
 
30 39
 
... ...
@@ -33,6 +42,19 @@ Host winka
33 42
     user winka
34 43
 
35 44
 
45
+#--------#
46
+# France #
47
+#--------#
48
+
49
+Host wfr
50
+    HostName vaderf.ddns.net
51
+    User wf
52
+    IdentityFile id_main-server.dsa
53
+
54
+Host fwfr
55
+    HostName vaderf.ddns.net
56
+
57
+
36 58
 
37 59
 #==============#
38 60
 # Work servers #
Browse code

ssh_config - v0.0

Fred authored on18/02/2015 16:32:06
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,92 @@
1
+# Title: config
2
+# Author: Frédéric CHEVALIER <vaderf@free.fr>
3
+# Version: 0.0
4
+# Created in: 2015-02-18
5
+# Modified in:
6
+
7
+
8
+
9
+#==================#
10
+# Personal servers #
11
+#==================#
12
+
13
+Host wf
14
+    HostName vaderf.com
15
+    User wf
16
+    IdentityFile id_main-server.dsa
17
+
18
+Host fwf
19
+    HostName vaderf.com
20
+
21
+
22
+Host wf2
23
+    HostName 99.126.116.237
24
+    User wf2
25
+
26
+Host wf2.l
27
+    HostName wf2-server.local
28
+    User wf2
29
+
30
+
31
+Host winka
32
+    HostName 192.168.1.70
33
+    user winka
34
+
35
+
36
+
37
+#==============#
38
+# Work servers #
39
+#==============#
40
+
41
+Host heron
42
+    HostName heron.txbiomedgenetics.org
43
+    User fcheval
44
+
45
+## Connection to servers below works only after connection to heron from outside work network ##
46
+
47
+Host medusa
48
+    HostName medusa.txbiomedgenetics.org
49
+    User fcheval
50
+
51
+Host medusa2
52
+    HostName medusa2.txbiomedgenetics.org
53
+    User fcheval
54
+
55
+Host bulmer
56
+    HostName bulmer.txbiomedgenetics.org
57
+    User fcheval
58
+
59
+Host crow
60
+    HostName crow.txbiomedgenetics.org
61
+    User fcheval
62
+
63
+Host bauhaus
64
+    HostName bauhaus.txbiomedgenetics.org
65
+    User fcheval
66
+
67
+Host u2
68
+    HostName u2.txbiomedgenetics.org
69
+    User fcheval
70
+
71
+Host office
72
+    HostName 206.124.62.215
73
+    User fcheval
74
+
75
+
76
+
77
+#==================#
78
+# General settings #
79
+#==================#
80
+
81
+# NB: These general settings must be at the end, the first value being use for each parameter (cf. man ssh_config).
82
+
83
+Host *
84
+     ForwardAgent no
85
+     ForwardX11 no
86
+     ForwardX11Trusted yes
87
+     User fred
88
+     Port 22
89
+     Protocol 2
90
+
91
+
92
+