6c47ee3d792b5fe9a60ff8383f1536eb4ce57c42
[freeradius.git] / raddb / eap.conf
1 # -*- text -*-
2 #
3 #  Whatever you do, do NOT set 'Auth-Type := EAP'.  The server
4 #  is smart enough to figure this out on its own.  The most
5 #  common side effect of setting 'Auth-Type := EAP' is that the
6 #  users then cannot use ANY other authentication method.
7 #
8 #       $Id$
9 #
10         eap {
11                 #  Invoke the default supported EAP type when
12                 #  EAP-Identity response is received.
13                 #
14                 #  The incoming EAP messages DO NOT specify which EAP
15                 #  type they will be using, so it MUST be set here.
16                 #
17                 #  For now, only one default EAP type may be used at a time.
18                 #
19                 #  If the EAP-Type attribute is set by another module,
20                 #  then that EAP type takes precedence over the
21                 #  default type configured here.
22                 #
23                 default_eap_type = md5
24
25                 #  A list is maintained to correlate EAP-Response
26                 #  packets with EAP-Request packets.  After a
27                 #  configurable length of time, entries in the list
28                 #  expire, and are deleted.
29                 #
30                 timer_expire     = 60
31
32                 #  There are many EAP types, but the server has support
33                 #  for only a limited subset.  If the server receives
34                 #  a request for an EAP type it does not support, then
35                 #  it normally rejects the request.  By setting this
36                 #  configuration to "yes", you can tell the server to
37                 #  instead keep processing the request.  Another module
38                 #  MUST then be configured to proxy the request to
39                 #  another RADIUS server which supports that EAP type.
40                 #
41                 #  If another module is NOT configured to handle the
42                 #  request, then the request will still end up being
43                 #  rejected.
44                 ignore_unknown_eap_types = no
45
46                 # Cisco AP1230B firmware 12.2(13)JA1 has a bug.  When given
47                 # a User-Name attribute in an Access-Accept, it copies one
48                 # more byte than it should.
49                 #
50                 # We can work around it by configurably adding an extra
51                 # zero byte.
52                 cisco_accounting_username_bug = no
53
54                 # Supported EAP-types
55
56                 #
57                 #  We do NOT recommend using EAP-MD5 authentication
58                 #  for wireless connections.  It is insecure, and does
59                 #  not provide for dynamic WEP keys.
60                 #
61                 md5 {
62                 }
63
64                 # Cisco LEAP
65                 #
66                 #  We do not recommend using LEAP in new deployments.  See:
67                 #  http://www.securiteam.com/tools/5TP012ACKE.html
68                 #
69                 #  Cisco LEAP uses the MS-CHAP algorithm (but not
70                 #  the MS-CHAP attributes) to perform it's authentication.
71                 #
72                 #  As a result, LEAP *requires* access to the plain-text
73                 #  User-Password, or the NT-Password attributes.
74                 #  'System' authentication is impossible with LEAP.
75                 #
76                 leap {
77                 }
78
79                 #  Generic Token Card.
80                 #
81                 #  Currently, this is only permitted inside of EAP-TTLS,
82                 #  or EAP-PEAP.  The module "challenges" the user with
83                 #  text, and the response from the user is taken to be
84                 #  the User-Password.
85                 #
86                 #  Proxying the tunneled EAP-GTC session is a bad idea,
87                 #  the users password will go over the wire in plain-text,
88                 #  for anyone to see.
89                 #
90                 gtc {
91                         #  The default challenge, which many clients
92                         #  ignore..
93                         #challenge = "Password: "
94
95                         #  The plain-text response which comes back
96                         #  is put into a User-Password attribute,
97                         #  and passed to another module for
98                         #  authentication.  This allows the EAP-GTC
99                         #  response to be checked against plain-text,
100                         #  or crypt'd passwords.
101                         #
102                         #  If you say "Local" instead of "PAP", then
103                         #  the module will look for a User-Password
104                         #  configured for the request, and do the
105                         #  authentication itself.
106                         #
107                         auth_type = PAP
108                 }
109
110                 ## EAP-TLS
111                 #
112                 #  If OpenSSL was not found at the time the server was
113                 #  built, the "tls", "ttls", and "peap" sections will
114                 #  be ignored.
115                 #
116                 #  Otherwise, when the server first starts in debugging
117                 #  mode, test certificates will be created.  See the
118                 #  "make_cert_command" below for details, and the README
119                 #  file in raddb/certs
120                 #
121                 #  These test certificates SHOULD NOT be used in a normal
122                 #  deployment.  They are created only to make it easier
123                 #  to install the server, and to perform some simple
124                 #  tests with EAP-TLS, TTLS, or PEAP.
125                 #
126                 #  See also:
127                 #
128                 #  http://www.dslreports.com/forum/remark,9286052~mode=flat
129                 #
130                 tls {
131                         #
132                         #  These is used to simplify later configurations.
133                         #
134                         certdir = ${raddbdir}/certs
135                         cadir = ${raddbdir}/certs
136
137                         private_key_password = whatever
138                         private_key_file = ${certdir}/server.pem
139
140                         #  If Private key & Certificate are located in
141                         #  the same file, then private_key_file &
142                         #  certificate_file must contain the same file
143                         #  name.
144                         certificate_file = ${certdir}/server.pem
145
146                         #  Trusted Root CA list
147                         CA_file = ${cadir}/ca.pem
148
149                         #
150                         #  For DH cipher suites to work, you have to
151                         #  run OpenSSL to create the DH file first:
152                         #
153                         #       openssl dhparam -out certs/dh 1024
154                         #
155                         dh_file = ${certdir}/dh
156                         random_file = ${certdir}/random
157
158                         #
159                         #  This can never exceed the size of a RADIUS
160                         #  packet (4096 bytes), and is preferably half
161                         #  that, to accomodate other attributes in
162                         #  RADIUS packet.  On most APs the MAX packet
163                         #  length is configured between 1500 - 1600
164                         #  In these cases, fragment size should be
165                         #  1024 or less.
166                         #
167                 #       fragment_size = 1024
168
169                         #  include_length is a flag which is
170                         #  by default set to yes If set to
171                         #  yes, Total Length of the message is
172                         #  included in EVERY packet we send.
173                         #  If set to no, Total Length of the
174                         #  message is included ONLY in the
175                         #  First packet of a fragment series.
176                         #
177                 #       include_length = yes
178
179                         #  Check the Certificate Revocation List
180                         #
181                         #  1) Copy CA certificates and CRLs to same directory.
182                         #  2) Execute 'c_rehash <CA certs&CRLs Directory>'.
183                         #    'c_rehash' is OpenSSL's command.
184                         #  3) Add 'CA_path=<CA certs&CRLs directory>'
185                         #      to radiusd.conf's tls section.
186                         #  4) uncomment the line below.
187                         #  5) Restart radiusd
188                 #       check_crl = yes
189
190                        #
191                        #  If check_cert_issuer is set, the value will
192                        #  be checked against the DN of the issuer in
193                        #  the client certificate.  If the values do not
194                        #  match, the cerficate verification will fail,
195                        #  rejecting the user.
196                        #
197                 #       check_cert_issuer = "/C=GB/ST=Berkshire/L=Newbury/O=My Company Ltd"
198
199                        #
200                        #  If check_cert_cn is set, the value will
201                        #  be xlat'ed and checked against the CN
202                        #  in the client certificate.  If the values
203                        #  do not match, the certificate verification
204                        #  will fail rejecting the user.
205                        #
206                        #  This check is done only if the previous
207                        #  "check_cert_issuer" is not set, or if
208                        #  the check succeeds.
209                        #
210                 #       check_cert_cn = %{User-Name}
211                 #
212                         # Set this option to specify the allowed
213                         # TLS cipher suites.  The format is listed
214                         # in "man 1 ciphers".
215                         cipher_list = "DEFAULT"
216
217                         #
218
219                         #  This configuration entry should be deleted
220                         #  once the server is running in a normal
221                         #  configuration.  It is here ONLY to make
222                         #  initial deployments easier.
223                         #
224                         make_cert_command = "${certdir}/bootstrap"
225                 }
226
227                 #  The TTLS module implements the EAP-TTLS protocol,
228                 #  which can be described as EAP inside of Diameter,
229                 #  inside of TLS, inside of EAP, inside of RADIUS...
230                 #
231                 #  Surprisingly, it works quite well.
232                 #
233                 #  The TTLS module needs the TLS module to be installed
234                 #  and configured, in order to use the TLS tunnel
235                 #  inside of the EAP packet.  You will still need to
236                 #  configure the TLS module, even if you do not want
237                 #  to deploy EAP-TLS in your network.  Users will not
238                 #  be able to request EAP-TLS, as it requires them to
239                 #  have a client certificate.  EAP-TTLS does not
240                 #  require a client certificate.
241                 #
242                 ttls {
243                         #  The tunneled EAP session needs a default
244                         #  EAP type which is separate from the one for
245                         #  the non-tunneled EAP module.  Inside of the
246                         #  TTLS tunnel, we recommend using EAP-MD5.
247                         #  If the request does not contain an EAP
248                         #  conversation, then this configuration entry
249                         #  is ignored.
250                         default_eap_type = md5
251
252                         #  The tunneled authentication request does
253                         #  not usually contain useful attributes
254                         #  like 'Calling-Station-Id', etc.  These
255                         #  attributes are outside of the tunnel,
256                         #  and normally unavailable to the tunneled
257                         #  authentication request.
258                         #
259                         #  By setting this configuration entry to
260                         #  'yes', any attribute which NOT in the
261                         #  tunneled authentication request, but
262                         #  which IS available outside of the tunnel,
263                         #  is copied to the tunneled request.
264                         #
265                         # allowed values: {no, yes}
266                         copy_request_to_tunnel = no
267
268                         #  The reply attributes sent to the NAS are
269                         #  usually based on the name of the user
270                         #  'outside' of the tunnel (usually
271                         #  'anonymous').  If you want to send the
272                         #  reply attributes based on the user name
273                         #  inside of the tunnel, then set this
274                         #  configuration entry to 'yes', and the reply
275                         #  to the NAS will be taken from the reply to
276                         #  the tunneled request.
277                         #
278                         # allowed values: {no, yes}
279                         use_tunneled_reply = no
280                 }
281
282                 ##################################################
283                 #
284                 #  !!!!! WARNINGS for Windows compatibility  !!!!!
285                 #
286                 ##################################################
287                 #
288                 #  If you see the server send an Access-Challenge,
289                 #  and the client never sends another Access-Request,
290                 #  then
291                 #
292                 #               STOP!
293                 #
294                 #  The server certificate has to have special OID's
295                 #  in it, or else the Microsoft clients will silently
296                 #  fail.  See the "scripts/xpextensions" file for
297                 #  details, and the following page:
298                 #
299                 #       http://support.microsoft.com/kb/814394/en-us
300                 #
301                 #  For additional Windows XP SP2 issues, see:
302                 #
303                 #       http://support.microsoft.com/kb/885453/en-us
304                 #
305                 #  Note that we do not necessarily agree with their
306                 #  explanation... but the fix does appear to work.
307                 #
308                 ##################################################
309
310                 #
311                 #  The tunneled EAP session needs a default EAP type
312                 #  which is separate from the one for the non-tunneled
313                 #  EAP module.  Inside of the TLS/PEAP tunnel, we
314                 #  recommend using EAP-MS-CHAPv2.
315                 #
316                 #  The PEAP module needs the TLS module to be installed
317                 #  and configured, in order to use the TLS tunnel
318                 #  inside of the EAP packet.  You will still need to
319                 #  configure the TLS module, even if you do not want
320                 #  to deploy EAP-TLS in your network.  Users will not
321                 #  be able to request EAP-TLS, as it requires them to
322                 #  have a client certificate.  EAP-PEAP does not
323                 #  require a client certificate.
324                 #
325                 peap {
326                         #  The tunneled EAP session needs a default
327                         #  EAP type which is separate from the one for
328                         #  the non-tunneled EAP module.  Inside of the
329                         #  PEAP tunnel, we recommend using MS-CHAPv2,
330                         #  as that is the default type supported by
331                         #  Windows clients.
332                         default_eap_type = mschapv2
333
334                         #  the PEAP module also has these configuration
335                         #  items, which are the same as for TTLS.
336                         copy_request_to_tunnel = no
337                         use_tunneled_reply = no
338
339                         #  When the tunneled session is proxied, the
340                         #  home server may not understand EAP-MSCHAP-V2.
341                         #  Set this entry to "no" to proxy the tunneled
342                         #  EAP-MSCHAP-V2 as normal MSCHAPv2.
343                 #       proxy_tunneled_request_as_eap = yes
344                 }
345
346                 #
347                 #  This takes no configuration.
348                 #
349                 #  Note that it is the EAP MS-CHAPv2 sub-module, not
350                 #  the main 'mschap' module.
351                 #
352                 #  Note also that in order for this sub-module to work,
353                 #  the main 'mschap' module MUST ALSO be configured.
354                 #
355                 #  This module is the *Microsoft* implementation of MS-CHAPv2
356                 #  in EAP.  There is another (incompatible) implementation
357                 #  of MS-CHAPv2 in EAP by Cisco, which FreeRADIUS does not
358                 #  currently support.
359                 #
360                 mschapv2 {
361                 }
362         }
363