ttls chbind: update VSA to use
[freeradius.git] / doc / rlm_eap
1
2
3             Extensible Authentication Protocol (EAP)
4
5
6 INTRODUCTION
7
8   Extensible Authentication Protocol(EAP), rfc2284, is a general protocol 
9   that allows network access points to support multiple authentication 
10   methods. Each EAP-Type indicates a specific authentication mechanism. 
11   802.1x standard authenticates wireless LAN users trying to access
12   enterprise networks.
13
14   RADIUS attribute used for EAP is EAP-Message, 79(rfc2869). RADIUS 
15   communicates all EAP messages by embedding them in this attribute.
16
17   General Terminology
18   Supplicant/EAP Client - is the software on the end-user/client machine
19                           (machine with the wireless card).
20   Authenticator/NAS/Access Point(AP) -  A network device providing users 
21                                     with a point of entry into the network.
22   EAPOL - EAP over LAN as defined in 802.1x standard.
23   EAPOW - EAP over Wireless.
24
25
26    +----------+        +----------+        +----------+
27    |          |  EAPOL |          | RADIUS |          |
28    |  EAP     |<------>|  Access  |<------>|  RADIUS  |
29    |  Client  |  EAPOW |  Point   |  (EAP) |  Server  |
30    |          |        |          |        |          |
31    +----------+        +----------+        +----------+
32
33
34    The sequence of events, for EAP-MD5, runs as follows:
35     1. The end-user associates with the Access Point(AP).
36     2. The supplicant specifies AP to use EAP by sending EAP-Start.
37     3. AP requests the supplicant to Identify itself (EAP-Identity).
38     4. Supplicant then sends its Identity (username) to the AP.
39     5. AP forwards this EAP-response AS-IS to the RADIUS server.
40        (The supplicant and the RADIUS server mutually authenticate via AP.
41        AP just acts as a passthru till authentication is finished.)
42     6. The server sends a challenge to the supplicant.
43     7. The supplicant carries out a hash on the password and sends 
44        this hashed password to the RADIUS server as its response.
45     8. The RADIUS server performs a hash on the password for that supplicant 
46        in its user database and compares the two hashed values and 
47        authenticates the client if the two values match(EAP-Success/EAP-Failure)
48     9. AP now opens a port to accept data from the end-user.
49
50   Currently, EAP is widely used in wireless networks than in wired networks.
51   In 802.11/wireless based networking, following sequence of events happen in 
52   addition to the above EAP events.
53
54    10. RADIUS server and the supplicant agree to a specific WEP key.
55    11. The supplicant loads the key ready for logging on.
56    12. The RADIUS server sends the key for this session (Session key) to the AP.
57    13. The AP encrypts its Broadcast key with the Session key
58    14. The AP sends the encypted key to the supplicant
59    15. The supplicant decrypts the Broadcast key with the Session key and 
60        the session continues using the Broadcast and Session keys until 
61        the session ends.
62
63   References:
64         The Implementation of EAP over RADIUS is based on the following RFCs
65         rfc2869 -- RADIUS Extensions
66         rfc2284 -- PPP Extensible Authentication Protocol (EAP)
67         rfc2716 -- PPP EAP TLS Authentication Protocol
68
69   Following links help to understand HOW EAP works
70         www.ieee802.org/1/mirror/8021/docs2000/ieee_plenary.PDF 
71
72
73 EAP CODE ORGANIZATION
74
75   EAP is implemented as a module in freeradius 
76   and the code is placed in src/modules/rlm_eap. 
77   All EAP-Types are organized as subdirectories in rlm_eap/types/.
78
79   Each EAP-Type, like types/rlm_eap_md5, contains a chunk of code that 
80   knows how to deal with a particular kind of authentication mechanism. 
81
82   To add a new EAP-Type then a new directory should be created as 
83   rlm_eap/types/rlm_eap_XXXX, where XXXX is EAP-Type name 
84   ie for EAP-Type like ONE TIME PASSWORD (OTP) it would be rlm_eap_otp 
85
86   src/modules/rlm_eap -- contains the basic EAP and generalized interfaces 
87     to all the EAP-Types.
88   rlm_eap/types -- contains all the supported EAP-Types
89   rlm_eap/types/rlm_eap_md5  -- EAP-MD5 authentication.
90   rlm_eap/types/rlm_eap_tls  -- EAP-TLS based authentication.
91   rlm_eap/types/rlm_eap_ttls -- TTLS based authentication.
92   rlm_eap/types/rlm_eap_peap -- Windows PEAP based authentication.
93   rlm_eap/types/rlm_eap_leap -- Cisco LEAP authentication.
94   rlm_eap/types/rlm_eap_sim  -- EAP-SIM (GSM) based authentication
95    
96 CONFIGURATION
97
98   Add the eap configuration stanza to the modules section in radiusd.conf
99   to load and control rlm_eap and all the supported EAP-Types:
100
101   For example:
102         modules {
103                 ...
104                 eap {
105                         default_eap_type = md5
106
107                         md5 {
108                         }
109                     ...
110                 }
111                 ...
112         }
113
114   NOTE: You cannot have empty eap stanza. At least one EAP-Type sub-stanza  
115   should be defined as above, otherwise the server will not know what type
116   of eap authentication mechanism to be used and the server will exit 
117   with error.
118
119   All the various options and their associated default values for each
120   EAP-Type are documented in the sample radiusd.conf that is provided 
121   with the distribution.
122
123   Since the EAP requests may not contain a requested EAP type, the
124   'default_eap_type' configuration options is used by the EAP module
125   to determine which EAP type to choose for authentication.
126
127   NOTE: EAP cannot authorize a user. It can only authenticate.
128   Other Freeradius modules authorize the user.
129
130
131 EAP SIM server
132
133   To configure EAP-SIM authentication, the following attributes must be
134   set in the server. This can be done in the users file, but in many cases
135   will be taken from a database server, via one of the SQL interface.
136
137   If one has SIM cards that one controls (i.e. whose share secret you know), 
138   one should be able to write a module to generate these attributes
139   (the triplets) in the server. 
140
141   If one has access to the SS7 based settlement network, then a module to
142   fetch appropriate triplets could be written. This module would act as
143   an authorization only module.
144
145   The attributes are:
146         EAP-Sim-Rand1           16 bytes
147         EAP-Sim-SRES1            4 bytes
148         EAP-Sim-KC1              8 bytes
149         EAP-Sim-Rand2           16 bytes
150         EAP-Sim-SRES2            4 bytes
151         EAP-Sim-KC2              8 bytes
152         EAP-Sim-Rand3           16 bytes
153         EAP-Sim-SRES3            4 bytes
154         EAP-Sim-KC3              8 bytes
155
156   EAP-SIM will send WEP attributes to the resquestor.
157
158 EAP CLIENTS
159
160   1. XSupplicant - freeradius (EAP/TLS) notes may be found at:
161
162    http://www.eax.com/802/
163    or http://www.missl.cs.umd.edu/wireless/eaptls/
164
165    XSupplicant is hosted by:
166
167    http://www.open1x.org/
168
169   2. XP - freeradius (EAP/TLS) notes may be found at: 
170
171    http://www.denobula.com/EAPTLS.pdf
172
173   3. Freeradius has an "radeapclient" that can do EAP-MD5 (passwords),
174      as well as EAP-SIM. It is in modules/rlm_eap/radeapclient.
175
176 TESTING
177
178   You will find several test cases in src/tests/ for the EAP-SIM code.
179
180
181 HOW DO I USE IT (FAQ/Examples)
182
183   1. How can I enable EAP-MD5 authentication ?
184
185   In radiusd.conf
186
187         modules {
188                 ...
189                 eap {
190                         default_eap_type = md5
191                         md5 {
192                         }
193                     ...
194                 }
195                 ...
196         }
197  
198         # eap sets the authenticate type as EAP
199         authorize {
200                 ...
201                 eap
202         }
203
204         # eap authentication takes place.
205         authenticate {
206                 eap
207         }
208
209         # If you are proxying EAP-LEAP requests
210         # This is required to make LEAP work.
211         post-proxy {
212                 eap
213         }
214   
215   2. My Userbase is in LDAP and I want to use EAP-MD5 authentication 
216
217   In radiusd.conf
218
219         modules {
220                 ...
221                 eap {
222                         default_eap_type = md5
223                         md5 {
224                         }
225                     ...
226                 }
227                 ...
228         }
229  
230         # ldap gets the Configured password.
231         # eap sets the authenticate type as EAP
232         authorize {
233                 ...
234                 ldap
235                 eap
236                 ...
237         }
238
239         # eap authentication takes place.
240         authenticate {
241                 ...
242                 eap
243                 ...
244         }
245
246   3. How can I Proxy EAP messages, with/without User-Name attribute
247       in the Access-Request packets 
248
249    With User-Name attribute in Access-Request packet,
250    EAP-proxying is just same as RADIUS-proxying.
251
252    If User-Name attribute is not present in Access-Request packet,
253    Freeradius can proxy the request with the following configuration
254    in radiusd.conf
255
256    # eap module should be configured as the First module in 
257    # the authorize stanza
258
259         authorize {
260                 eap
261                 ...  other modules.
262         }
263
264    With this configuration, eap_authorize creates User-Name attribute
265    from EAP-Identity response, if it is not present.
266    Once User-Name attribute is created, RADIUS proxying takes care
267    of EAP proxying.
268
269   4. How Freeradius can handle EAP-START messages ?
270
271    In most of the cases this is handled by the Authenticator.
272
273    Only if it is required then, in radiusd.conf
274
275         authorize {
276                 eap
277                 ...  other modules.
278         }
279
280    With the above configuration, RADIUS server immediately responds with
281    EAP-Identity request.
282         
283    NOTE: EAP does not check for any Identity or maintains any state in case
284    of EAP-START. It blindly responds with EAP-Identity request.
285    Proxying is handled only after EAP-Identity response is received.
286
287   5. I want to enable multiple EAP-Types, how can I configure ?
288   
289   In radiusd.conf
290
291         modules {
292                 ...
293                 eap {
294                         default_eap_type = tls
295                         md5 {
296                         }
297                         tls {
298                                 ...
299                         }
300                     ...
301                 }
302                 ...
303         }
304
305    The above configuration will let the server load all the EAP-Types,
306    but the server can have only one default EAP-Type, as above.
307
308    Once EAP-Identity response is received by the server, based on the
309    default_eap_type, the server will send a new request (MD5-Challenge 
310    request incase of md5, TLS-START request incase of tls) to the supplicant.
311    If the supplicant is rfc2284 compliant and doesnot support the
312    EAP-Type sent by the server then it sends EAP-Acknowledge with the
313    supported EAP-Type. If this EAP-Type is supported by the server then it 
314    will send the respective EAP-request.
315   
316    Example: If the supplicant supports only EAP-MD5 but the server
317    default_eap_type is configured as EAP-TLS, as above, then the server
318    will send TLS-START after EAP-Identity is received. Supplicant will
319    respond with EAP-Acknowledge(EAP-MD5). Server now responds with
320    MD5-Challenge.
321
322
323 INSTALLATION
324   EAP, EAP-MD5, and Cisco LEAP do not require any additional packages.
325   Freeradius contains all the required packages.
326
327   For EAP-TLS, EAP-TTLS, and PEAP, OPENSSL, <http://www.openssl.org/>,
328   is required to be installed.
329   Any version from 0.9.7, should fairly work with this module.
330
331   EAP-SIM should not require any additional packages.
332
333
334 IMPLEMENTATION (For Developers)
335
336   The rlm_eap module only deals with EAP specific authentication mechanism
337   and the generic interface to interact with all the EAP-Types. 
338
339   Currently, these are the existing interfaces,
340         int     attach(CONF_SECTION *conf, void **type_arg);
341         int     initiate(void *type_arg, EAP_HANDLER *handler);
342         int     authenticate(void *type_arg, EAP_HANDLER *handler);
343         int     detach(void **type_arg);
344
345   attach() and detach() functions allocate and deallocate all the 
346   required resources.
347
348   initiate() function begins the conversation when EAP-Identity response 
349   is received. Incase of EAP-MD5, initiate() function sends the challenge.
350
351   authenticate() function uses specific EAP-Type authentication mechanism
352   to authenticate the user. During authentication many EAP-Requests and
353   EAP-Responses takes place for each authentication. Hence authenticate()
354   function may be called many times. EAP_HANDLER contains the complete 
355   state information required.
356
357
358 HOW EAP WORKS
359   as posted to the list, by John Lindsay <jlindsay@internode.com.au>
360
361   To make it clear for everyone, the supplicant is the software on the
362   client (machine with the wireless card).
363
364   The EAP process doesn't start until the client has associated with
365   the Access Point using Open authentication.  If this process isn't
366   crystal clear you need to go away and gain understanding.
367
368   Once the association is made the AP blocks all traffic that is not
369   802.1x so although associated the connection only has value for EAP.
370   Any EAP traffic is passed to the radius server and any radius traffic
371   is passed back to the client.
372
373   So, after the client has associated to the Access Point, the
374   supplicant starts the process for using EAP over LAN by asking the
375   user for their logon and password.
376
377   Using 802.1x and EAP the supplicant sends the username and a one-way
378   hash of the password to the AP.
379
380   The AP encapsulates the request and sends it to the RADIUS server.
381
382   The radius server needs a plaintext password so that it can perform
383   the same one-way hash to determine that the password is correct.  If
384   it is, the radius server issues an access challenge which goes back
385   via to the AP to the client. (my study guide says client but my
386   brain says 'supplicant')
387
388   The client sends the EAP response to the challenge via the AP to the
389   RADIUS server.
390
391   If the response is valid the RADIUS server sends a success message
392   and the session WEP key (EAP over wireless) to the client via the
393   AP.  The same session WEP key is also sent to the AP in the success
394   packet.
395
396   The client and the AP then begin using session WEP keys. The WEP key
397   used for multicasts is then sent from the AP to the client.  It is
398   encrypted using the session WEP key.
399
400 ACKNOWLEDGEMENTS
401    Primary author - Raghu <raghud@mail.com>
402
403    EAP-SIM       - Michael Richardson <mcr@sandelman.ottawa.on.ca>
404                     The development of the EAP/SIM support was funded by
405                     Internet Foundation Austria (http://www.nic.at/ipa).
406
407