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