Remove old documentation
[freeradius.git] / raddb / mods-available / eap
1 # -*- text -*-
2 ##
3 ##  eap.conf -- Configuration for EAP types (PEAP, TTLS, etc.)
4 ##
5 ##      $Id$
6
7 #######################################################################
8 #
9 #  Whatever you do, do NOT set 'Auth-Type := EAP'.  The server
10 #  is smart enough to figure this out on its own.  The most
11 #  common side effect of setting 'Auth-Type := EAP' is that the
12 #  users then cannot use ANY other authentication method.
13 #
14 #  EAP types NOT listed here may be supported via the "eap2" module.
15 #  See experimental.conf for documentation.
16 #
17 eap {
18         #  Invoke the default supported EAP type when
19         #  EAP-Identity response is received.
20         #
21         #  The incoming EAP messages DO NOT specify which EAP
22         #  type they will be using, so it MUST be set here.
23         #
24         #  For now, only one default EAP type may be used at a time.
25         #
26         #  If the EAP-Type attribute is set by another module,
27         #  then that EAP type takes precedence over the
28         #  default type configured here.
29         #
30         default_eap_type = md5
31
32         #  A list is maintained to correlate EAP-Response
33         #  packets with EAP-Request packets.  After a
34         #  configurable length of time, entries in the list
35         #  expire, and are deleted.
36         #
37         timer_expire     = 60
38
39         #  There are many EAP types, but the server has support
40         #  for only a limited subset.  If the server receives
41         #  a request for an EAP type it does not support, then
42         #  it normally rejects the request.  By setting this
43         #  configuration to "yes", you can tell the server to
44         #  instead keep processing the request.  Another module
45         #  MUST then be configured to proxy the request to
46         #  another RADIUS server which supports that EAP type.
47         #
48         #  If another module is NOT configured to handle the
49         #  request, then the request will still end up being
50         #  rejected.
51         ignore_unknown_eap_types = no
52
53         # Cisco AP1230B firmware 12.2(13)JA1 has a bug.  When given
54         # a User-Name attribute in an Access-Accept, it copies one
55         # more byte than it should.
56         #
57         # We can work around it by configurably adding an extra
58         # zero byte.
59         cisco_accounting_username_bug = no
60
61         #
62         #  Help prevent DoS attacks by limiting the number of
63         #  sessions that the server is tracking.  For simplicity,
64         #  this is taken from the "max_requests" directive in
65         #  radiusd.conf.
66         max_sessions = ${max_requests}
67
68         # Supported EAP-types
69
70         #
71         #  We do NOT recommend using EAP-MD5 authentication
72         #  for wireless connections.  It is insecure, and does
73         #  not provide for dynamic WEP keys.
74         #
75         md5 {
76         }
77
78         #
79         # EAP-pwd -- secure password-based authentication
80         #
81 #       pwd {
82 #               group = 19
83
84                 #
85 #               server_id = theserver@example.com
86
87                 #  This has the same meaning as for TLS.
88 #               fragment_size = 1020
89
90                 # The virtual server which determines the
91                 # "known good" password for the user.
92                 # Note that unlike TLS, only the "authorize"
93                 # section is processed.  EAP-PWD requests can be
94                 # distinguished by having a User-Name, but
95                 # no User-Password, CHAP-Password, EAP-Message, etc.
96 #               virtual_server = "inner-tunnel"
97 #       }
98
99         # Cisco LEAP
100         #
101         #  We do not recommend using LEAP in new deployments.  See:
102         #  http://www.securiteam.com/tools/5TP012ACKE.html
103         #
104         #  Cisco LEAP uses the MS-CHAP algorithm (but not
105         #  the MS-CHAP attributes) to perform it's authentication.
106         #
107         #  As a result, LEAP *requires* access to the plain-text
108         #  User-Password, or the NT-Password attributes.
109         #  'System' authentication is impossible with LEAP.
110         #
111         leap {
112         }
113
114         #  Generic Token Card.
115         #
116         #  Currently, this is only permitted inside of EAP-TTLS,
117         #  or EAP-PEAP.  The module "challenges" the user with
118         #  text, and the response from the user is taken to be
119         #  the User-Password.
120         #
121         #  Proxying the tunneled EAP-GTC session is a bad idea,
122         #  the users password will go over the wire in plain-text,
123         #  for anyone to see.
124         #
125         gtc {
126                 #  The default challenge, which many clients
127                 #  ignore..
128                 #challenge = "Password: "
129
130                 #  The plain-text response which comes back
131                 #  is put into a User-Password attribute,
132                 #  and passed to another module for
133                 #  authentication.  This allows the EAP-GTC
134                 #  response to be checked against plain-text,
135                 #  or crypt'd passwords.
136                 #
137                 #  If you say "Local" instead of "PAP", then
138                 #  the module will look for a User-Password
139                 #  configured for the request, and do the
140                 #  authentication itself.
141                 #
142                 auth_type = PAP
143         }
144
145         ## Common TLS configuration for TLS-based EAP types
146         #
147         #  See raddb/certs/README for additional comments
148         #  on certificates.
149         #
150         #  If OpenSSL was not found at the time the server was
151         #  built, the "tls", "ttls", and "peap" sections will
152         #  be ignored.
153         #
154         #  If you do not currently have certificates signed by
155         #  a trusted CA you may use the 'snakeoil' certificates.
156         #  Included with the server in raddb/certs.
157         #
158         #  If these certificates have not been auto-generated:
159         #    cd raddb/certs
160         #    make
161         #
162         #  These test certificates SHOULD NOT be used in a normal
163         #  deployment.  They are created only to make it easier
164         #  to install the server, and to perform some simple
165         #  tests with EAP-TLS, TTLS, or PEAP.
166         #
167         #  See also:
168         #
169         #  http://www.dslreports.com/forum/remark,9286052~mode=flat
170         #
171         #  Note that you should NOT use a globally known CA here!
172         #  e.g. using a Verisign cert as a "known CA" means that
173         #  ANYONE who has a certificate signed by them can
174         #  authenticate via EAP-TLS!  This is likely not what you want.
175         tls-config tls-common {
176                 private_key_password = whatever
177                 private_key_file = ${certdir}/server.pem
178
179                 #  If Private key & Certificate are located in
180                 #  the same file, then private_key_file &
181                 #  certificate_file must contain the same file
182                 #  name.
183                 #
184                 #  If ca_file (below) is not used, then the
185                 #  certificate_file below MUST include not
186                 #  only the server certificate, but ALSO all
187                 #  of the CA certificates used to sign the
188                 #  server certificate.
189                 certificate_file = ${certdir}/server.pem
190
191                 #  Trusted Root CA list
192                 #
193                 #  ALL of the CA's in this list will be trusted
194                 #  to issue client certificates for authentication.
195                 #
196                 #  In general, you should use self-signed
197                 #  certificates for 802.1x (EAP) authentication.
198                 #  In that case, this CA file should contain
199                 #  *one* CA certificate.
200                 #
201                 ca_file = ${cadir}/ca.pem
202
203                 #
204                 #  If OpenSSL supports TLS-PSK, then we can use
205                 #  a PSK identity and (hex) password.  When the
206                 #  following two configuration items are specified,
207                 #  then certificate-based configuration items are
208                 #  not allowed.  e.g.:
209                 #
210                 #       private_key_password
211                 #       private_key_file
212                 #       certificate_file
213                 #       ca_file
214                 #       ca_path
215                 #
216                 #  For now, the identity is fixed, and must be the
217                 #  same on the client.  The passphrase must be a hex
218                 #  value, and can be up to 256 hex digits.
219                 #
220                 #  Future versions of the server may be able to
221                 #  look up the shared key (hexphrase) based on the
222                 #  identity.
223                 #
224         #       psk_identity = "test"
225         #       psk_hexphrase = "036363823"
226
227                 #
228                 #  For DH cipher suites to work, you have to
229                 #  run OpenSSL to create the DH file first:
230                 #
231                 #       openssl dhparam -out certs/dh 1024
232                 #
233                 dh_file = ${certdir}/dh
234
235                 #
236                 #  If your system doesn't have /dev/urandom,
237                 #  you will need to create this file, and
238                 #  periodically change its contents.
239                 #
240                 #  For security reasons, FreeRADIUS doesn't
241                 #  write to files in its configuration
242                 #  directory.
243                 #
244 #               random_file = ${certdir}/random
245
246                 #
247                 #  This can never exceed the size of a RADIUS
248                 #  packet (4096 bytes), and is preferably half
249                 #  that, to accommodate other attributes in
250                 #  RADIUS packet.  On most APs the MAX packet
251                 #  length is configured between 1500 - 1600
252                 #  In these cases, fragment size should be
253                 #  1024 or less.
254                 #
255         #       fragment_size = 1024
256
257                 #  include_length is a flag which is
258                 #  by default set to yes If set to
259                 #  yes, Total Length of the message is
260                 #  included in EVERY packet we send.
261                 #  If set to no, Total Length of the
262                 #  message is included ONLY in the
263                 #  First packet of a fragment series.
264                 #
265         #       include_length = yes
266
267                 #  Check the Certificate Revocation List
268                 #
269                 #  1) Copy CA certificates and CRLs to same directory.
270                 #  2) Execute 'c_rehash <CA certs&CRLs Directory>'.
271                 #    'c_rehash' is OpenSSL's command.
272                 #  3) uncomment the line below.
273                 #  5) Restart radiusd
274         #       check_crl = yes
275                 ca_path = ${cadir}
276
277                 #
278                 #  If check_cert_issuer is set, the value will
279                 #  be checked against the DN of the issuer in
280                 #  the client certificate.  If the values do not
281                 #  match, the certificate verification will fail,
282                 #  rejecting the user.
283                 #
284                 #  In 2.1.10 and later, this check can be done
285                 #  more generally by checking the value of the
286                 #  TLS-Client-Cert-Issuer attribute.  This check
287                 #  can be done via any mechanism you choose.
288                 #
289         #       check_cert_issuer = "/C=GB/ST=Berkshire/L=Newbury/O=My Company Ltd"
290
291                 #
292                 #  If check_cert_cn is set, the value will
293                 #  be xlat'ed and checked against the CN
294                 #  in the client certificate.  If the values
295                 #  do not match, the certificate verification
296                 #  will fail rejecting the user.
297                 #
298                 #  This check is done only if the previous
299                 #  "check_cert_issuer" is not set, or if
300                 #  the check succeeds.
301                 #
302                 #  In 2.1.10 and later, this check can be done
303                 #  more generally by checking the value of the
304                 #  TLS-Client-Cert-CN attribute.  This check
305                 #  can be done via any mechanism you choose.
306                 #
307         #       check_cert_cn = %{User-Name}
308                 #
309                 # Set this option to specify the allowed
310                 # TLS cipher suites.  The format is listed
311                 # in "man 1 ciphers".
312                 cipher_list = "DEFAULT"
313
314                 #
315
316                 #
317                 #  Elliptical cryptography configuration
318                 #
319                 #  Only for OpenSSL >= 0.9.8.f
320                 #
321                 ecdh_curve = "prime256v1"
322
323                 #
324                 #  Session resumption / fast reauthentication
325                 #  cache.
326                 #
327                 #  The cache contains the following information:
328                 #
329                 #  session Id - unique identifier, managed by SSL
330                 #  User-Name  - from the Access-Accept
331                 #  Stripped-User-Name - from the Access-Request
332                 #  Cached-Session-Policy - from the Access-Accept
333                 #
334                 #  The "Cached-Session-Policy" is the name of a
335                 #  policy which should be applied to the cached
336                 #  session.  This policy can be used to assign
337                 #  VLANs, IP addresses, etc.  It serves as a useful
338                 #  way to re-apply the policy from the original
339                 #  Access-Accept to the subsequent Access-Accept
340                 #  for the cached session.
341                 #
342                 #  On session resumption, these attributes are
343                 #  copied from the cache, and placed into the
344                 #  reply list.
345                 #
346                 #  You probably also want "use_tunneled_reply = yes"
347                 #  when using fast session resumption.
348                 #
349                 cache {
350                         #
351                         #  Enable it.  The default is "no".
352                         #  Deleting the entire "cache" subsection
353                         #  also disables caching.
354                         #
355                         #  You can disallow resumption for a
356                         #  particular user by adding the following
357                         #  attribute to the control item list:
358                         #
359                         #               Allow-Session-Resumption = No
360                         #
361                         #  If "enable = no" below, you CANNOT
362                         #  enable resumption for just one user
363                         #  by setting the above attribute to "yes".
364                         #
365                         enable = yes
366
367                         #
368                         #  Lifetime of the cached entries, in hours.
369                         #  The sessions will be deleted after this
370                         #  time.
371                         #
372                         lifetime = 24 # hours
373
374                         #
375                         #  The maximum number of entries in the
376                         #  cache.  Set to "0" for "infinite".
377                         #
378                         #  This could be set to the number of users
379                         #  who are logged in... which can be a LOT.
380                         #
381                         max_entries = 255
382
383                         #
384                         #  Internal "name" of the session cache.
385                         #  Used to distinguish which TLS context
386                         #  sessions belong to.
387                         #
388                         #  The server will generate a random value
389                         #  if unset. This will change across server
390                         #  restart so you MUST set the "name" if you
391                         #  want to persist sessions (see below).
392                         #
393                         #name = "EAP module"
394
395                         #
396                         #  Simple directory-based storage of sessions.
397                         #  Two files per session will be written, the SSL
398                         #  state and the cached VPs. This will persist session
399                         #  across server restarts.
400                         #
401                         #  The server will need write perms, and the directory
402                         #  should be secured from anyone else. You might want
403                         #  a script to remove old files from here periodically:
404                         #
405                         #    find ${logdir}/tlscache -mtime +2 -exec rm -f {} \;
406                         #
407                         #  This feature REQUIRES "name" option be set above.
408                         #
409                         #persist_dir = "${logdir}/tlscache"
410                 }
411
412                 #
413                 #  As of version 2.1.10, client certificates can be
414                 #  validated via an external command.  This allows
415                 #  dynamic CRLs or OCSP to be used.
416                 #
417                 #  This configuration is commented out in the
418                 #  default configuration.  Uncomment it, and configure
419                 #  the correct paths below to enable it.
420                 #
421                 verify {
422                         #  A temporary directory where the client
423                         #  certificates are stored.  This directory
424                         #  MUST be owned by the UID of the server,
425                         #  and MUST not be accessible by any other
426                         #  users.  When the server starts, it will do
427                         #  "chmod go-rwx" on the directory, for
428                         #  security reasons.  The directory MUST
429                         #  exist when the server starts.
430                         #
431                         #  You should also delete all of the files
432                         #  in the directory when the server starts.
433         #               tmpdir = /tmp/radiusd
434
435                         #  The command used to verify the client cert.
436                         #  We recommend using the OpenSSL command-line
437                         #  tool.
438                         #
439                         #  The ${..ca_path} text is a reference to
440                         #  the ca_path variable defined above.
441                         #
442                         #  The %{TLS-Client-Cert-Filename} is the name
443                         #  of the temporary file containing the cert
444                         #  in PEM format.  This file is automatically
445                         #  deleted by the server when the command
446                         #  returns.
447         #               client = "/path/to/openssl verify -CApath ${..ca_path} %{TLS-Client-Cert-Filename}"
448                 }
449
450                 #
451                 #  OCSP Configuration
452                 #  Certificates can be verified against an OCSP
453                 #  Responder. This makes it possible to immediately
454                 #  revoke certificates without the distribution of
455                 #  new Certificate Revocation Lists (CRLs).
456                 #
457                 ocsp {
458                         #
459                         #  Enable it.  The default is "no".
460                         #  Deleting the entire "ocsp" subsection
461                         #  also disables ocsp checking
462                         #
463                         enable = no
464
465                         #
466                         #  The OCSP Responder URL can be automatically
467                         #  extracted from the certificate in question.
468                         #  To override the OCSP Responder URL set
469                         #  "override_cert_url = yes".
470                         #
471                         override_cert_url = yes
472
473                         #
474                         #  If the OCSP Responder address is not
475                         #  extracted from the certificate, the
476                         #  URL can be defined here.
477
478                         #
479                         #  Limitation: Currently the HTTP
480                         #  Request is not sending the "Host: "
481                         #  information to the web-server.  This
482                         #  can be a problem if the OCSP
483                         #  Responder is running as a vhost.
484                         #
485                         url = "http://127.0.0.1/ocsp/"
486
487                         #
488                         # If the OCSP Responder can not cope with nonce
489                         # in the request, then it can be disabled here.
490                         #
491                         # For security reasons, disabling this option
492                         # is not recommended as nonce protects against
493                         # replay attacks.
494                         #
495                         # Note that Microsoft AD Certificate Services OCSP
496                         # Responder does not enable nonce by default. It is
497                         # more secure to enable nonce on the responder than
498                         # to disable it in the query here.
499                         # See http://technet.microsoft.com/en-us/library/cc770413%28WS.10%29.aspx
500                         #
501                         # use_nonce = yes
502
503                         #
504                         # Number of seconds before giving up waiting
505                         # for OCSP response. 0 uses system default.
506                         #
507                         # timeout = 0
508
509                         #
510                         # Normally an error in querying the OCSP
511                         # responder (no response from server, server did
512                         # not understand the request, etc) will result in
513                         # a validation failure.
514                         #
515                         # To treat these errors as 'soft' failures and
516                         # still accept the certificate, enable this
517                         # option.
518                         #
519                         # Warning: this may enable clients with revoked
520                         # certificates to connect if the OCSP responder
521                         # is not available. Use with caution.
522                         #
523                         # softfail = no
524                 }
525         }
526
527         ## EAP-TLS
528         #
529         #  As of Version 3.0, the TLS configuration for TLS-based
530         #  EAP types is above in the "tls-config" section.
531         #
532         tls {
533                 # Point to the common TLS configuration
534                 tls = tls-common
535
536                 #
537                 # As part of checking a client certificate, the EAP-TLS
538                 # sets some attributes such as TLS-Client-Cert-CN. This
539                 # virtual server has access to these attributes, and can
540                 # be used to accept or reject the request.
541                 #
542         #       virtual_server = check-eap-tls
543         }
544
545
546         ## EAP-TTLS
547         #
548         #  The TTLS module implements the EAP-TTLS protocol,
549         #  which can be described as EAP inside of Diameter,
550         #  inside of TLS, inside of EAP, inside of RADIUS...
551         #
552         #  Surprisingly, it works quite well.
553         #
554         ttls {
555                 #  Which tls-config section the TLS negotiation parameters
556                 #  are in - see EAP-TLS above for an explanation.
557                 #
558                 #  In the case that an old configuration from FreeRADIUS
559                 #  v2.x is being used, all the options of the tls-config
560                 #  section may also appear instead in the 'tls' section
561                 #  above. If that is done, the tls= option here (and in
562                 #  tls above) MUST be commented out.
563                 #
564                 tls = tls-common
565
566                 #  The tunneled EAP session needs a default EAP type
567                 #  which is separate from the one for the non-tunneled
568                 #  EAP module.  Inside of the TTLS tunnel, we recommend
569                 #  using EAP-MD5.  If the request does not contain an
570                 #  EAP conversation, then this configuration entry is
571                 #  ignored.
572                 #
573                 default_eap_type = md5
574
575                 #  The tunneled authentication request does not usually
576                 #  contain useful attributes like 'Calling-Station-Id',
577                 #  etc.  These attributes are outside of the tunnel,
578                 #  and normally unavailable to the tunneled
579                 #  authentication request.
580                 #
581                 #  By setting this configuration entry to 'yes',
582                 #  any attribute which is NOT in the tunneled
583                 #  authentication request, but which IS available
584                 #  outside of the tunnel, is copied to the tunneled
585                 #  request.
586                 #
587                 #  allowed values: {no, yes}
588                 #
589                 copy_request_to_tunnel = no
590
591                 #  The reply attributes sent to the NAS are usually
592                 #  based on the name of the user 'outside' of the
593                 #  tunnel (usually 'anonymous').  If you want to send
594                 #  the reply attributes based on the user name inside
595                 #  of the tunnel, then set this configuration entry to
596                 #  'yes', and the reply to the NAS will be taken from
597                 #  the reply to the tunneled request.
598                 #
599                 #  allowed values: {no, yes}
600                 #
601                 use_tunneled_reply = no
602
603                 #
604                 #  The inner tunneled request can be sent
605                 #  through a virtual server constructed
606                 #  specifically for this purpose.
607                 #
608                 #  If this entry is commented out, the inner
609                 #  tunneled request will be sent through
610                 #  the virtual server that processed the
611                 #  outer requests.
612                 #
613                 virtual_server = "inner-tunnel"
614
615                 #  This has the same meaning, and overwrites, the
616                 #  same field in the "tls" configuration, above.
617                 #  The default value here is "yes".
618                 #
619         #       include_length = yes
620
621                 #
622                 # Unlike EAP-TLS, EAP-TTLS does not require a client
623                 # certificate. However, you can require one by setting the
624                 # following option. You can also override this option by
625                 # setting
626                 #
627                 #       EAP-TLS-Require-Client-Cert = Yes
628                 #
629                 # in the control items for a request.
630                 #
631         #       require_client_cert = yes
632         }
633
634
635         ## EAP-PEAP
636         #
637
638         ##################################################
639         #
640         #  !!!!! WARNINGS for Windows compatibility  !!!!!
641         #
642         ##################################################
643         #
644         #  If you see the server send an Access-Challenge,
645         #  and the client never sends another Access-Request,
646         #  then
647         #
648         #               STOP!
649         #
650         #  The server certificate has to have special OID's
651         #  in it, or else the Microsoft clients will silently
652         #  fail.  See the "scripts/xpextensions" file for
653         #  details, and the following page:
654         #
655         #       http://support.microsoft.com/kb/814394/en-us
656         #
657         #  For additional Windows XP SP2 issues, see:
658         #
659         #       http://support.microsoft.com/kb/885453/en-us
660         #
661         #
662         #  If is still doesn't work, and you're using Samba,
663         #  you may be encountering a Samba bug.  See:
664         #
665         #       https://bugzilla.samba.org/show_bug.cgi?id=6563
666         #
667         #  Note that we do not necessarily agree with their
668         #  explanation... but the fix does appear to work.
669         #
670         ##################################################
671
672         #
673         #  The tunneled EAP session needs a default EAP type
674         #  which is separate from the one for the non-tunneled
675         #  EAP module.  Inside of the TLS/PEAP tunnel, we
676         #  recommend using EAP-MS-CHAPv2.
677         #
678         peap {
679                 #  Which tls-config section the TLS negotiation parameters
680                 #  are in - see EAP-TLS above for an explanation.
681                 #
682                 #  In the case that an old configuration from FreeRADIUS
683                 #  v2.x is being used, all the options of the tls-config
684                 #  section may also appear instead in the 'tls' section
685                 #  above. If that is done, the tls= option here (and in
686                 #  tls above) MUST be commented out.
687                 #
688                 tls = tls-common
689
690                 #  The tunneled EAP session needs a default
691                 #  EAP type which is separate from the one for
692                 #  the non-tunneled EAP module.  Inside of the
693                 #  PEAP tunnel, we recommend using MS-CHAPv2,
694                 #  as that is the default type supported by
695                 #  Windows clients.
696                 #
697                 default_eap_type = mschapv2
698
699                 #  The PEAP module also has these configuration
700                 #  items, which are the same as for TTLS.
701                 #
702                 copy_request_to_tunnel = no
703                 use_tunneled_reply = no
704
705                 #  When the tunneled session is proxied, the
706                 #  home server may not understand EAP-MSCHAP-V2.
707                 #  Set this entry to "no" to proxy the tunneled
708                 #  EAP-MSCHAP-V2 as normal MSCHAPv2.
709                 #
710         #       proxy_tunneled_request_as_eap = yes
711
712                 #
713                 #  The inner tunneled request can be sent
714                 #  through a virtual server constructed
715                 #  specifically for this purpose.
716                 #
717                 #  If this entry is commented out, the inner
718                 #  tunneled request will be sent through
719                 #  the virtual server that processed the
720                 #  outer requests.
721                 #
722                 virtual_server = "inner-tunnel"
723
724                 # This option enables support for MS-SoH
725                 # see doc/SoH.txt for more info.
726                 # It is disabled by default.
727                 #
728         #       soh = yes
729
730                 #
731                 # The SoH reply will be turned into a request which
732                 # can be sent to a specific virtual server:
733                 #
734         #       soh_virtual_server = "soh-server"
735
736                 #
737                 # Unlike EAP-TLS, PEAP does not require a client certificate.
738                 # However, you can require one by setting the following
739                 # option. You can also override this option by setting
740                 #
741                 #       EAP-TLS-Require-Client-Cert = Yes
742                 #
743                 # in the control items for a request.
744                 #
745         #       require_client_cert = yes
746         }
747
748         #
749         #  This takes no configuration.
750         #
751         #  Note that it is the EAP MS-CHAPv2 sub-module, not
752         #  the main 'mschap' module.
753         #
754         #  Note also that in order for this sub-module to work,
755         #  the main 'mschap' module MUST ALSO be configured.
756         #
757         #  This module is the *Microsoft* implementation of MS-CHAPv2
758         #  in EAP.  There is another (incompatible) implementation
759         #  of MS-CHAPv2 in EAP by Cisco, which FreeRADIUS does not
760         #  currently support.
761         #
762         mschapv2 {
763                 #  Prior to version 2.1.11, the module never
764                 #  sent the MS-CHAP-Error message to the
765                 #  client.  This worked, but it had issues
766                 #  when the cached password was wrong.  The
767                 #  server *should* send "E=691 R=0" to the
768                 #  client, which tells it to prompt the user
769                 #  for a new password.
770                 #
771                 #  The default is to behave as in 2.1.10 and
772                 #  earlier, which is known to work.  If you
773                 #  set "send_error = yes", then the error
774                 #  message will be sent back to the client.
775                 #  This *may* help some clients work better,
776                 #  but *may* also cause other clients to stop
777                 #  working.
778                 #
779 #               send_error = no
780         }
781 }