(no commit message)
[devwiki.git] / ConfiguringRHEL.mdwn
1 First we need to install and configure moonshot, its dependencies, and a local RADIUS server for testing<br />
2 In a real deployment, a local RADIUS server is not needed, however it simplifies testing if one is available<br />
3 __gss-server__ and __gss-client__ are standard Kerberos diagnostic tools, which give us a lot of information that is helpful for debugging<br />
4 Again, in a real deployment these are not required, but help with testing
5
6 This guide walks through deploying the client, IdP and SP portions of moonshot - depending on your target, some steps may be inappropriate.
7
8 ## Environment
9 ### LD_LIBRARY_PATH
10 __LD_LIBRARY_PATH__ has to have _/opt/moonshot/lib64/_ and _/usr/lib64/freeradius_ added to it.<br />
11 The best way to do this is create a file at _/etc/profile.d/moonshot.sh_, with the following:
12
13     if [ [ $LD_LIBRARY_PATH != */opt/moonshot/lib64/:/usr/lib64/freeradius/* ] ]
14     then
15         export LD_LIBRARY_PATH=/opt/moonshot/lib64/:/usr/lib64/freeradius/:$LD_LIBRARY_PATH
16     fi
17
18 This is required as moonshot currently stores its modified libraries separately to the main system ones to avoid conflicts.  This should not be necessary in the future.
19
20
21 ### SELinux set to permissive
22 Moonshot has a couple of outstanding issues regarding proper labeling of _SELinux_ contexts, causing it to fail when _SELinux_ is enforcing.  This should be resolved soon - change the setting in _/etc/sysconfig/selinux_, or in _/etc/rc.local_:
23
24     echo 0 > /selinux/enforce
25
26 ### EPEL
27 Moonshot needs __EPEL__ for a few extra libraries (as pulling them from a semi-supported repository is preferable to repackaging).<br />
28 The simplest way to install EPEL is:
29
30     yum install epel-release
31
32 ## Moonshot Packages
33 The RPM's and SRPM's for moonshot are currently hosted at [http://yum.dev.ja.net] - this may change (and in fact, is quite likely to change) in the future.  The packages are currently unsigned.  
34
35
36
37 First we need to install and configure moonshot, its dependencies, and a local RADIUS server for testing
38 In a real deployment, a local RADIUS server is not needed, however it simplifies testing if one is available
39 __gss-server__ and __gss-client__ are standard Kerberos diagnostic tools, which give us a lot of information that is helpful for debugging
40 Again, in a real deployment these are not required, but help with testing
41
42 This guide walks through deploying the client, IdP and SP portions of moonshot - depending on your target, some steps may be inappropriate.
43
44 ## Environment
45 ### LD_LIBRARY_PATH
46 __LD_LIBRARY_PATH__ has to have _/opt/moonshot/lib64/_ and _/usr/lib64/freeradius_ added to it.<br />
47 The best way to do this is create a file at _/etc/profile.d/moonshot.sh_, with the following:
48
49     if [ [ $LD_LIBRARY_PATH != */opt/moonshot/lib64/:/usr/lib64/freeradius/* ] ]
50     then
51         export LD_LIBRARY_PATH=/opt/moonshot/lib64/:/usr/lib64/freeradius/:$LD_LIBRARY_PATH
52     fi
53
54 This is required as moonshot currently stores its modified libraries separately to the main system ones to avoid conflicts.  This should not be necessary in the future.
55
56
57 ### SELinux set to permissive
58 Moonshot has a couple of outstanding issues regarding proper labeling of _SELinux_ contexts, causing it to fail when _SELinux_ is enforcing.  This should be resolved soon - change the setting in _/etc/sysconfig/selinux_, or in _/etc/rc.local_:
59
60     echo 0 > /selinux/enforce
61
62 ### EPEL
63 Moonshot needs __EPEL__ for a few extra libraries (as pulling them from a semi-supported repository is preferable to repackaging).<br />
64 The simplest way to install EPEL is:
65
66     rpm -ivh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-5.noarch.rpm
67     yum install epel-release
68
69 ## Moonshot Packages
70 The RPM's and SRPM's for moonshot are currently hosted at [[http://yum.dev.ja.net]] - this may change (and in fact, is quite likely to change) in the future.  The packages are currently unsigned.<br />
71 Example _/etc/yum.repos.d/moonshot.repo_
72
73     [Moonshot]
74     name=Moonshot
75     baseurl=http://yum.dev.ja.net/RPMS/x86_64/
76     gpgcheck=0
77
78 After setting up the repository definition, we'll set up a composite ORPS/IdP.
79
80 ##Moonshot IdP
81 To install the diagnostic tools (only needed for testing) and the RADIUSd:
82
83     yum install freeradius krb5-moonshot-devel moonshot-gss-eap
84
85
86 Once FreeRADIUS is installed, a source of identity needs to be enabled - either the roaming network in the case of an ORPS, or AD/LDAP/etc for an IdP.  For now, we'll just use a flat file.  Open _/etc/raddb/users_ and locate the following fragment:
87
88
89     # This is a complete entry for "steve". Note that there is no Fall-Through
90     # entry so that no DEFAULT entry will be used, and the user will NOT
91     # get any attributes in addition to the ones listed here.
92     #
93     #   steve   Cleartext-Password := "testing"
94     #   Service-Type = Framed-User,
95     #   Framed-Protocol = PPP,
96
97 Uncomment the line beginning __steve__.
98
99 __Chargeable-User-Identity__ is the value used to decide what user account to log in the user as on the SSH server.<br />
100 This value would normally be set by your local RADIUS proxy (ORPS) – so in a real deployment, rather than statically logging the user in as __moonshot__ you may decide to use something like __steve-camford.ac.uk__.<br />
101 If anonymity is required, you could use a Perl or Python script to generate something like __user-789-camford.ac.uk__.<br />
102 The exact value does not matter – only that the mappings are consistent, so that the user gets access to the same local account each time.
103 To allow creation of accounts on demand you could use __LDAP__ – when the ORPS sees a successful authentication, it could trigger a script that creates the desired account in an __LDAP__ domain.
104 It is not guaranteed that __Chargeable-User-Identity__ will be used permanently – in the future a specific RADIUS attribute may be created instead.
105
106 To activate CUI insertion, Edit _/etc/raddb/sites-enabled/default_, and find the post-auth section, and add the following:
107
108     update reply {
109         Chargeable-User-Identity = "moonshot"
110     }
111
112 Note in the case of an ORPS you need to unfilter this attribute in _/etc/raddb/attrs_ to prevent this attribute from being stripped on roaming requests.
113
114 A legacy attribute required for SSH at this time is the user name returned by the IdP.  To make this happen, Edit _/etc/raddb/sites-enabled/inner-tunnel_, find the following and uncomment it:
115
116                 #update outer.reply {
117                 #       User-Name = "%{request:User-Name}"
118                 #}
119
120 Finally, set the EAP type in use by moonshot (EAP-TTLS) by editing _/etc/raddb/eap.conf_ 
121
122     default_eap_type = md5
123  
124 FreeRADIUS now has a very minimal IdP/ORPS configuration, and can be started with:
125
126     service radiusd restart
127
128
129 If you encounter any issues, you can run radius in debug mode to see what is going on internally.
130
131     service radiusd stop
132     radiusd -X
133
134 When in debug mode, FreeRADIUS acts as an interactive program, so it should be run on a separate console, or under GNU Screen.
135
136 ##Moonshot Proper
137 First we need a minimal _/etc/radsec.conf_
138
139     dictionary = "/etc/raddb/dictionary"
140     
141     realm gss-eap {
142         type = "UDP"
143         timeout = 5
144         retries = 3
145         server {
146             hostname = "127.0.0.1"
147             service = "1812"
148             secret = "testing123"
149         }
150     }
151
152 This tells the moonshot SP where to find a RADIUS server for authentication - in this case, we will use the local server just configured.<br />
153 Moonshot will ultimately use RADSEC for communicating with the radius server – in which case you would use __transport="TCP"__ in _/etc/radsc.conf_<br />
154 Ultimately, the final values depend on the deployment – probably the address, port and secret used by your ORPS.
155
156 ###gss_eap_id
157
158 Next, a file is created in the home directory at _~/.gss_eap_id_ – this is the file that moonshot looks in for credentials.
159 The format is very simple – username followed by a password.  For now, set it to:
160     steve
161     testing
162
163 In a deployment with a GUI, this file is replaced by the Moonshot Identity Selector.  It is conceivable in the future that the Identity Selector GUI will be supplemented with a curses-like UI, or other mechanism allowing console usage.
164
165 ###Shibboleth
166
167 Moonshot uses _libshib_ to parse RADIUS and SAML attributes – SAML assertions can be embedded inside RADIUS responses by the IdP, allowing an ORPS to exercise a very fine-grained authorization policy.
168 In the demo we just use a very simple example – mapping the _Chargeable-User-Identity_ to a local user account, but in a real deployment you could map a SAML attribute to the user account just as easily.
169
170 Delete _/etc/shibboleth/attribute-map.xml_ and replace it with:
171
172     <Attributes xmlns="urn:mace:shibboleth:2.0:attribute-map" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
173         <GSSAPIAttribute name="urn:ietf:params:gss-eap:radius-avp urn:x-radius:89" id="local-login-user"/>
174     </Attributes>
175
176 In this case, 89 corresponds to _Chargeable-User-Identity_, which is mapped to _local-login-user_, which sets the local account that the user will be given access to.
177
178 To load the moonshot extensions, under the root node in _/etc/shibboleth/shibboleth2.xml_, add:
179     <Extensions>
180         <Library path="plugins.so" fatal="true"/>
181     </Extensions>
182
183 Further down the same file, find this line:
184
185     <AttributeExtractor type="XML" validate="true" path="attribute-map.xml"/>
186
187 Directly underneath it, add:
188
189     <AttributeExtractor type="GSSAPI" validate="true" path="attribute-map.xml"/>
190
191 Note that this file is sensitive to the order of statements.
192
193 ###/etc/gss/mech
194
195 This file tells moonshot what encryption options are valid for use with GSS.
196
197     #
198     # Sample mechanism glue configuration for EAP GSS mechanism.
199     #
200     # Any encryption type supported by Kerberos can be defined as the
201     # last element of the OID arc.
202     #
203     eap-aes128          1.3.6.1.4.1.5322.22.1.17        mech_eap.so
204     eap-aes256          1.3.6.1.4.1.5322.22.1.18        mech_eap.so
205
206 ##Testing Functionality
207
208 As mentioned earlier, we will be using the Kerberos test tools to make sure that things are working.<br />
209 To start the _gss-server_, run:
210     /opt/moonshot/sbin/gss-server host@localhost &
211
212 There are two ways to start _gss-client_ – the first specifies an encryption method to use by its OID 1.3.6.1.4.1.5322.22.1.18 (as seen in /etc/gss/mech):
213     /opt/moonshot/bin/gss-client -mech "{1 3 6 1 4 1 5322 22 1 18}" 127.0.0.1 host@localhost bar
214
215
216 The second uses __Simple and Protected GSSAPI Negotiation Mechanism (SPNEGO)__<br />
217 This chooses the "best" mutually-agreeable encryption method for between client and server.  To invoke the client using __SPNEGO__, use:
218     /opt/moonshot/bin/gss-client -spnego 127.0.0.1 host@localhost bar
219
220 ##Sample Output
221
222     Attribute local-login-user Authenticated Complete
223     
224     moonshot
225     
226     6d6f6f6e73686f74
227     
228     UID: 501
229     Accepted connection: "steve"
230     Sending init_sec_context token (size=150)...continue needed...
231     
232     context flag: GSS_C_MUTUAL_FLAG
233     context flag: GSS_C_REPLAY_FLAG
234     context flag: GSS_C_SEQUENCE_FLAG
235     context flag: GSS_C_CONF_FLAG 
236     context flag: GSS_C_INTEG_FLAG 
237     "steve" to "host/moonbuildcentos.dev.ja.net", lifetime -1, flags 13e, locally initiated, open
238     Name type of source name is { 1 2 840 113554 1 2 1 1 }.
239     Mechanism { 1 3 6 1 5 5 2 } supports 4 names
240       0: { 1 2 840 113554 1 2 1 1 }
241       1: { 1 2 840 113554 1 2 1 2 }
242       2: { 1 2 840 113554 1 2 1 3 }
243       3: { 1 2 840 113554 1 2 1 4 }
244     Received message: "testing"
245     Signature verified.
246     NOOP token
247
248 Running _gss-client_ produces a massive amount of output.<br />
249 The important part is at the end – you should see output similar to what is on the previous slide.<br />
250 If you do not see the line:
251     Attribute local-login-user Authenticated Complete
252 Then attribute mapping is not functioning properly, and you need to check your shibboleth configuration.
253
254 ##SSH
255 To install moonshot-enabled SSH:
256
257     yum install openssh-moonshot-clients openssh-moonshot-server
258
259
260 Inside _/etc/ssh/sshd\_config_, and if these values are not set already:<br />
261 Uncomment __UsePrivilegeSeparation__ and set it to __‘no’__
262
263         UsePriviligeSeparation no
264
265 Uncomment __GSSAPIAuthentication__ and set it to __‘yes’__
266
267         GSSAPIAuthentication yes
268
269 Uncomment __GSSAPIKeyExchange__ and set it to __‘yes’__
270
271         GSSAPIKeyExchange yes
272
273 Inside _/etc/ssh/ssh\_config_ and if these values are not set already:<br />
274 Uncomment __GSSAPIAuthentication__ and set it to __‘yes’__
275
276         GSSAPIAuthentication yes
277
278 Uncomment __GSSAPIKeyExchange__ and set it to __‘yes’__
279
280         GSSAPIKeyExchange yes
281
282 ###Running SSH
283
284 Finally, we need to start sshd on a seperate port:
285
286     /opt/moonshot/sbin/sshd –p 2222
287
288 At this time we do not recommend running __openssh-moonshot__ as the systemwide SSH client or server – it should be installed alongside the the standard SSH client and server.<br />
289 Also note, that sshd must be invoked with its full path, i.e. _/opt/moonshot/sbin/sshd._
290
291 Finally, try connecting with the following:
292
293     /opt/moonshot/bin/ssh –p 2222 –l "" 127.0.0.1
294
295 With any luck, magic happens and you are logged in as the user specified in your _Chargeable-User-Identity_!<br />
296 After successfully logging in, don’t forget to type __exit__ to end the SSH session and return to the root shell.<br />
297 Note in the SSH client command, the option __-l ""__ – this signifies that no username is to be sent to the SSH server. 
298
299 ##Remote IdP
300 This is left for an exercise for the user - at this stage it should just be a case of changing _/etc/radsec.conf_ to point at the right RADIUSd