b3be0c380ce7816b8c2d28bbf9c82ac38c4fccc3
[freeradius.git] / raddb / sites-available / default
1 ######################################################################
2 #
3 #       As of 2.0.0, FreeRADIUS supports virtual hosts using the
4 #       "server" section, and configuration directives.
5 #
6 #       Virtual hosts should be put into the "sites-available"
7 #       directory.  Soft links should be created in the "sites-enabled"
8 #       directory to these files.  This is done in a normal installation.
9 #
10 #       If you are using 802.1X (EAP) authentication, please see also
11 #       the "inner-tunnel" virtual server.  You will likely have to edit
12 #       that, too, for authentication to work.
13 #
14 #       $Id$
15 #
16 ######################################################################
17 #
18 #       Read "man radiusd" before editing this file.  See the section
19 #       titled DEBUGGING.  It outlines a method where you can quickly
20 #       obtain the configuration you want, without running into
21 #       trouble.  See also "man unlang", which documents the format
22 #       of this file.
23 #
24 #       This configuration is designed to work in the widest possible
25 #       set of circumstances, with the widest possible number of
26 #       authentication methods.  This means that in general, you should
27 #       need to make very few changes to this file.
28 #
29 #       The best way to configure the server for your local system
30 #       is to CAREFULLY edit this file.  Most attempts to make large
31 #       edits to this file will BREAK THE SERVER.  Any edits should
32 #       be small, and tested by running the server with "radiusd -X".
33 #       Once the edits have been verified to work, save a copy of these
34 #       configuration files somewhere.  (e.g. as a "tar" file).  Then,
35 #       make more edits, and test, as above.
36 #
37 #       There are many "commented out" references to modules such
38 #       as ldap, sql, etc.  These references serve as place-holders.
39 #       If you need the functionality of that module, then configure
40 #       it in radiusd.conf, and un-comment the references to it in
41 #       this file.  In most cases, those small changes will result
42 #       in the server being able to connect to the DB, and to
43 #       authenticate users.
44 #
45 ######################################################################
46
47 server default {
48 #
49 #  If you want the server to listen on additional addresses, or on
50 #  additional ports, you can use multiple "listen" sections.
51 #
52 #  Each section make the server listen for only one type of packet,
53 #  therefore authentication and accounting have to be configured in
54 #  different sections.
55 #
56 #  The server ignore all "listen" section if you are using '-i' and '-p'
57 #  on the command line.
58 #
59 listen {
60         #  Type of packets to listen for.
61         #  Allowed values are:
62         #       auth    listen for authentication packets
63         #       acct    listen for accounting packets
64         #       proxy   IP to use for sending proxied packets
65         #       detail  Read from the detail file.  For examples, see
66         #               raddb/sites-available/copy-acct-to-home-server
67         #       status  listen for Status-Server packets.  For examples,
68         #               see raddb/sites-available/status
69         #       coa     listen for CoA-Request and Disconnect-Request
70         #               packets.  For examples, see the file
71         #               raddb/sites-available/coa
72         #
73         type = auth
74
75         #  Note: "type = proxy" lets you control the source IP used for
76         #        proxying packets, with some limitations:
77         #
78         #    * A proxy listener CANNOT be used in a virtual server section.
79         #    * You should probably set "port = 0".
80         #    * Any "clients" configuration will be ignored.
81         #
82         #  See also proxy.conf, and the "src_ipaddr" configuration entry
83         #  in the sample "home_server" section.  When you specify the
84         #  source IP address for packets sent to a home server, the
85         #  proxy listeners are automatically created.
86
87         #  ipaddr/ipv4addr/ipv6addr - IP address on which to listen.
88         #  Out of several options the first one will be used.
89         #
90         #  Allowed values are:
91         #       IPv4 address (e.g. 1.2.3.4, for ipv4addr/ipaddr)
92         #       IPv6 address (e.g. 2001:db8::1, for ipv6addr/ipaddr)
93         #       hostname     (radius.example.com,
94         #                       A record for ipv4addr,
95         #                       AAAA record for ipv6addr,
96         #                       A or AAAA record for ipaddr)
97         #       wildcard     (*)
98         #
99         # ipv4addr = *
100         # ipv6addr = *
101         ipaddr = *
102
103         #  Port on which to listen.
104         #  Allowed values are:
105         #       integer port number (1812)
106         #       0 means "use /etc/services for the proper port"
107         port = 0
108
109         #  Some systems support binding to an interface, in addition
110         #  to the IP address.  This feature isn't strictly necessary,
111         #  but for sites with many IP addresses on one interface,
112         #  it's useful to say "listen on all addresses for eth0".
113         #
114         #  If your system does not support this feature, you will
115         #  get an error if you try to use it.
116         #
117 #       interface = eth0
118
119         #  Per-socket lists of clients.  This is a very useful feature.
120         #
121         #  The name here is a reference to a section elsewhere in
122         #  radiusd.conf, or clients.conf.  Having the name as
123         #  a reference allows multiple sockets to use the same
124         #  set of clients.
125         #
126         #  If this configuration is used, then the global list of clients
127         #  is IGNORED for this "listen" section.  Take care configuring
128         #  this feature, to ensure you don't accidentally disable a
129         #  client you need.
130         #
131         #  See clients.conf for the configuration of "per_socket_clients".
132         #
133 #       clients = per_socket_clients
134
135         #
136         #  Connection limiting for sockets with "proto = tcp".
137         #
138         #  This section is ignored for other kinds of sockets.
139         #
140         limit {
141               #
142               #  Limit the number of simultaneous TCP connections to the socket
143               #
144               #  The default is 16.
145               #  Setting this to 0 means "no limit"
146               max_connections = 16
147
148               #  The per-socket "max_requests" option does not exist.
149
150               #
151               #  The lifetime, in seconds, of a TCP connection.  After
152               #  this lifetime, the connection will be closed.
153               #
154               #  Setting this to 0 means "forever".
155               lifetime = 0
156
157               #
158               #  The idle timeout, in seconds, of a TCP connection.
159               #  If no packets have been received over the connection for
160               #  this time, the connection will be closed.
161               #
162               #  Setting this to 0 means "no timeout".
163               #
164               #  We STRONGLY RECOMMEND that you set an idle timeout.
165               #
166               idle_timeout = 30
167         }
168 }
169
170 #
171 #  This second "listen" section is for listening on the accounting
172 #  port, too.
173 #
174 listen {
175         ipaddr = *
176 #       ipv6addr = ::
177         port = 0
178         type = acct
179 #       interface = eth0
180 #       clients = per_socket_clients
181
182         limit {
183                 #  The number of packets received can be rate limited via the
184                 #  "max_pps" configuration item.  When it is set, the server
185                 #  tracks the total number of packets received in the previous
186                 #  second.  If the count is greater than "max_pps", then the
187                 #  new packet is silently discarded.  This helps the server
188                 #  deal with overload situations.
189                 #
190                 #  The packets/s counter is tracked in a sliding window.  This
191                 #  means that the pps calculation is done for the second
192                 #  before the current packet was received.  NOT for the current
193                 #  wall-clock second, and NOT for the previous wall-clock second.
194                 #
195                 #  Useful values are 0 (no limit), or 100 to 10000.
196                 #  Values lower than 100 will likely cause the server to ignore
197                 #  normal traffic.  Few systems are capable of handling more than
198                 #  10K packets/s.
199                 #
200                 #  It is most useful for accounting systems.  Set it to 50%
201                 #  more than the normal accounting load, and you can be sure that
202                 #  the server will never get overloaded
203                 #
204 #               max_pps = 0
205
206                 # Only for "proto = tcp". These are ignored for "udp" sockets.
207                 #
208 #               idle_timeout = 0
209 #               lifetime = 0
210 #               max_connections = 0
211         }
212 }
213
214 # IPv6 versions of the above - read their full config to understand options
215 listen {
216         type = auth
217         ipv6addr = ::   # any.  ::1 == localhost
218         port = 0
219 #       interface = eth0
220 #       clients = per_socket_clients
221         limit {
222               max_connections = 16
223               lifetime = 0
224               idle_timeout = 30
225         }
226 }
227
228 listen {
229         ipv6addr = ::
230         port = 0
231         type = acct
232 #       interface = eth0
233 #       clients = per_socket_clients
234
235         limit {
236 #               max_pps = 0
237 #               idle_timeout = 0
238 #               lifetime = 0
239 #               max_connections = 0
240         }
241 }
242
243 #  Authorization. First preprocess (hints and huntgroups files),
244 #  then realms, and finally look in the "users" file.
245 #
246 #  Any changes made here should also be made to the "inner-tunnel"
247 #  virtual server.
248 #
249 #  The order of the realm modules will determine the order that
250 #  we try to find a matching realm.
251 #
252 #  Make *sure* that 'preprocess' comes before any realm if you
253 #  need to setup hints for the remote radius server
254 authorize {
255         #
256         #  Take a User-Name, and perform some checks on it, for spaces and other
257         #  invalid characters.  If the User-Name appears invalid, reject the
258         #  request.
259         #
260         #  See policy.d/filter for the definition of the filter_username policy.
261         #
262         filter_username
263
264         #
265         #  Some broken equipment sends passwords with embedded zeros.
266         #  i.e. the debug output will show
267         #
268         #       User-Password = "password\000\000"
269         #
270         #  This policy will fix it to just be "password".
271         #
272 #       filter_password
273
274         #
275         #  The preprocess module takes care of sanitizing some bizarre
276         #  attributes in the request, and turning them into attributes
277         #  which are more standard.
278         #
279         #  It takes care of processing the 'raddb/mods-config/preprocess/hints' 
280         #  and the 'raddb/mods-config/preprocess/huntgroups' files.
281         preprocess
282
283         #  If you intend to use CUI and you require that the Operator-Name
284         #  be set for CUI generation and you want to generate CUI also
285         #  for your local clients then uncomment the operator-name
286         #  below and set the operator-name for your clients in clients.conf
287 #       operator-name
288
289         #
290         #  If you want to generate CUI for some clients that do not
291         #  send proper CUI requests, then uncomment the
292         #  cui below and set "add_cui = yes" for these clients in clients.conf
293 #       cui
294
295         #
296         #  If you want to have a log of authentication requests,
297         #  un-comment the following line.
298 #       auth_log
299
300         #
301         #  The chap module will set 'Auth-Type := CHAP' if we are
302         #  handling a CHAP request and Auth-Type has not already been set
303         chap
304
305         #
306         #  If the users are logging in with an MS-CHAP-Challenge
307         #  attribute for authentication, the mschap module will find
308         #  the MS-CHAP-Challenge attribute, and add 'Auth-Type := MS-CHAP'
309         #  to the request, which will cause the server to then use
310         #  the mschap module for authentication.
311         mschap
312
313         #
314         #  If you have a Cisco SIP server authenticating against
315         #  FreeRADIUS, uncomment the following line, and the 'digest'
316         #  line in the 'authenticate' section.
317         digest
318
319         #
320         #  The WiMAX specification says that the Calling-Station-Id
321         #  is 6 octets of the MAC.  This definition conflicts with
322         #  RFC 3580, and all common RADIUS practices.  Un-commenting
323         #  the "wimax" module here means that it will fix the
324         #  Calling-Station-Id attribute to the normal format as
325         #  specified in RFC 3580 Section 3.21
326 #       wimax
327
328         #
329         #  Look for IPASS style 'realm/', and if not found, look for
330         #  '@realm', and decide whether or not to proxy, based on
331         #  that.
332 #       IPASS
333
334         #
335         #  If you are using multiple kinds of realms, you probably
336         #  want to set "ignore_null = yes" for all of them.
337         #  Otherwise, when the first style of realm doesn't match,
338         #  the other styles won't be checked.
339         #
340         suffix
341 #       ntdomain
342
343         #
344         #  This module takes care of EAP-MD5, EAP-TLS, and EAP-LEAP
345         #  authentication.
346         #
347         #  It also sets the EAP-Type attribute in the request
348         #  attribute list to the EAP type from the packet.
349         #
350         #  The EAP module returns "ok" if it is not yet ready to
351         #  authenticate the user.  The configuration below checks for
352         #  that code, and stops processing the "authorize" section if
353         #  so.
354         #
355         #  Any LDAP and/or SQL servers will not be queried for the
356         #  initial set of packets that go back and forth to set up
357         #  TTLS or PEAP.
358         #
359         eap {
360                 ok = return
361         }
362
363         #
364         #  Pull crypt'd passwords from /etc/passwd or /etc/shadow,
365         #  using the system API's to get the password.  If you want
366         #  to read /etc/passwd or /etc/shadow directly, see the
367         #  mods-available/passwd module.
368         #
369 #       unix
370
371         #
372         #  Read the 'users' file.  In v3, this is located in
373         #  raddb/mods-config/files/authorize
374         files
375
376         #
377         #  Look in an SQL database.  The schema of the database
378         #  is meant to mirror the "users" file.
379         #
380         #  See "Authorization Queries" in mods-available/sql
381         -sql
382
383         #
384         #  If you are using /etc/smbpasswd, and are also doing
385         #  mschap authentication, the un-comment this line, and
386         #  configure the 'smbpasswd' module.
387 #       smbpasswd
388
389         #
390         #  The ldap module reads passwords from the LDAP database.
391         -ldap
392
393         #
394         #  Enforce daily limits on time spent logged in.
395 #       daily
396
397         #
398         expiration
399         logintime
400
401         #
402         #  If no other module has claimed responsibility for
403         #  authentication, then try to use PAP.  This allows the
404         #  other modules listed above to add a "known good" password
405         #  to the request, and to do nothing else.  The PAP module
406         #  will then see that password, and use it to do PAP
407         #  authentication.
408         #
409         #  This module should be listed last, so that the other modules
410         #  get a chance to set Auth-Type for themselves.
411         #
412         pap
413
414         #
415         #  If "status_server = yes", then Status-Server messages are passed
416         #  through the following section, and ONLY the following section.
417         #  This permits you to do DB queries, for example.  If the modules
418         #  listed here return "fail", then NO response is sent.
419         #
420 #       Autz-Type Status-Server {
421 #
422 #       }
423 }
424
425
426 #  Authentication.
427 #
428 #
429 #  This section lists which modules are available for authentication.
430 #  Note that it does NOT mean 'try each module in order'.  It means
431 #  that a module from the 'authorize' section adds a configuration
432 #  attribute 'Auth-Type := FOO'.  That authentication type is then
433 #  used to pick the appropriate module from the list below.
434 #
435
436 #  In general, you SHOULD NOT set the Auth-Type attribute.  The server
437 #  will figure it out on its own, and will do the right thing.  The
438 #  most common side effect of erroneously setting the Auth-Type
439 #  attribute is that one authentication method will work, but the
440 #  others will not.
441 #
442 #  The common reasons to set the Auth-Type attribute by hand
443 #  is to either forcibly reject the user (Auth-Type := Reject),
444 #  or to or forcibly accept the user (Auth-Type := Accept).
445 #
446 #  Note that Auth-Type := Accept will NOT work with EAP.
447 #
448 #  Please do not put "unlang" configurations into the "authenticate"
449 #  section.  Put them in the "post-auth" section instead.  That's what
450 #  the post-auth section is for.
451 #
452 authenticate {
453         #
454         #  PAP authentication, when a back-end database listed
455         #  in the 'authorize' section supplies a password.  The
456         #  password can be clear-text, or encrypted.
457         Auth-Type PAP {
458                 pap
459         }
460
461         #
462         #  Most people want CHAP authentication
463         #  A back-end database listed in the 'authorize' section
464         #  MUST supply a CLEAR TEXT password.  Encrypted passwords
465         #  won't work.
466         Auth-Type CHAP {
467                 chap
468         }
469
470         #
471         #  MSCHAP authentication.
472         Auth-Type MS-CHAP {
473                 mschap
474         }
475
476         #
477         #  If you have a Cisco SIP server authenticating against
478         #  FreeRADIUS, uncomment the following line, and the 'digest'
479         #  line in the 'authorize' section.
480         digest
481
482         #
483         #  Pluggable Authentication Modules.
484 #       pam
485
486         #  Uncomment it if you want to use ldap for authentication
487         #
488         #  Note that this means "check plain-text password against
489         #  the ldap database", which means that EAP won't work,
490         #  as it does not supply a plain-text password.
491         #
492         #  We do NOT recommend using this.  LDAP servers are databases.
493         #  They are NOT authentication servers.  FreeRADIUS is an
494         #  authentication server, and knows what to do with authentication.
495         #  LDAP servers do not.
496         #
497 #       Auth-Type LDAP {
498 #               ldap
499 #       }
500
501         #
502         #  Allow EAP authentication.
503         eap
504
505         #
506         #  The older configurations sent a number of attributes in
507         #  Access-Challenge packets, which wasn't strictly correct.
508         #  If you want to filter out these attributes, uncomment
509         #  the following lines.
510         #
511 #       Auth-Type eap {
512 #               eap {
513 #                       handled = 1
514 #               }
515 #               if (handled && (Response-Packet-Type == Access-Challenge)) {
516 #                       attr_filter.access_challenge.post-auth
517 #                       handled  # override the "updated" code from attr_filter
518 #               }
519 #       }
520 }
521
522
523 #
524 #  Pre-accounting.  Decide which accounting type to use.
525 #
526 preacct {
527         preprocess
528
529         #
530         #  Merge Acct-[Input|Output]-Gigawords and Acct-[Input-Output]-Octets
531         #  into a single 64bit counter Acct-[Input|Output]-Octets64.
532         #
533 #       acct_counters64
534
535         #
536         #  Session start times are *implied* in RADIUS.
537         #  The NAS never sends a "start time".  Instead, it sends
538         #  a start packet, *possibly* with an Acct-Delay-Time.
539         #  The server is supposed to conclude that the start time
540         #  was "Acct-Delay-Time" seconds in the past.
541         #
542         #  The code below creates an explicit start time, which can
543         #  then be used in other modules.  It will be *mostly* correct.
544         #  Any errors are due to the 1-second resolution of RADIUS,
545         #  and the possibility that the time on the NAS may be off.
546         #
547         #  The start time is: NOW - delay - session_length
548         #
549
550 #       update request {
551 #               FreeRADIUS-Acct-Session-Start-Time = "%{expr: %l - %{%{Acct-Session-Time}:-0} - %{%{Acct-Delay-Time}:-0}}"
552 #       }
553
554
555         #
556         #  Ensure that we have a semi-unique identifier for every
557         #  request, and many NAS boxes are broken.
558         acct_unique
559
560         #
561         #  Look for IPASS-style 'realm/', and if not found, look for
562         #  '@realm', and decide whether or not to proxy, based on
563         #  that.
564         #
565         #  Accounting requests are generally proxied to the same
566         #  home server as authentication requests.
567 #       IPASS
568         suffix
569 #       ntdomain
570
571         #
572         #  Read the 'acct_users' file
573         files
574 }
575
576 #
577 #  Accounting.  Log the accounting data.
578 #
579 accounting {
580         #  Update accounting packet by adding the CUI attribute
581         #  recorded from the corresponding Access-Accept
582         #  use it only if your NAS boxes do not support CUI themselves
583 #       cui
584         #
585         #  Create a 'detail'ed log of the packets.
586         #  Note that accounting requests which are proxied
587         #  are also logged in the detail file.
588         detail
589 #       daily
590
591         #  Update the wtmp file
592         #
593         #  If you don't use "radlast", you can delete this line.
594         unix
595
596         #
597         #  For Simultaneous-Use tracking.
598         #
599         #  Due to packet losses in the network, the data here
600         #  may be incorrect.  There is little we can do about it.
601 #       radutmp
602 #       sradutmp
603
604         #  Return an address to the IP Pool when we see a stop record.
605 #       main_pool
606
607         #
608         #  Log traffic to an SQL database.
609         #
610         #  See "Accounting queries" in mods-available/sql
611         -sql
612
613         #
614         #  If you receive stop packets with zero session length,
615         #  they will NOT be logged in the database.  The SQL module
616         #  will print a message (only in debugging mode), and will
617         #  return "noop".
618         #
619         #  You can ignore these packets by uncommenting the following
620         #  three lines.  Otherwise, the server will not respond to the
621         #  accounting request, and the NAS will retransmit.
622         #
623 #       if (noop) {
624 #               ok
625 #       }
626
627         #
628         #  Instead of sending the query to the SQL server,
629         #  write it into a log file.
630         #
631 #       sql_log
632
633         #  Cisco VoIP specific bulk accounting
634 #       pgsql-voip
635
636         # For Exec-Program and Exec-Program-Wait
637         exec
638
639         #  Filter attributes from the accounting response.
640         attr_filter.accounting_response
641
642         #
643         #  See "Autz-Type Status-Server" for how this works.
644         #
645 #       Acct-Type Status-Server {
646 #
647 #       }
648 }
649
650
651 #  Session database, used for checking Simultaneous-Use. Either the radutmp
652 #  or rlm_sql module can handle this.
653 #  The rlm_sql module is *much* faster
654 session {
655 #       radutmp
656
657         #
658         #  See "Simultaneous Use Checking Queries" in mods-available/sql
659 #       sql
660 }
661
662
663 #  Post-Authentication
664 #  Once we KNOW that the user has been authenticated, there are
665 #  additional steps we can take.
666 post-auth {
667         #
668         #  If you need to have a State attribute, you can
669         #  add it here.  e.g. for later CoA-Request with
670         #  State, and Service-Type = Authorize-Only.
671         #
672 #       if (!&reply:State) {
673 #               update reply {
674 #                       State := "0x%{randstr:16h}"
675 #               }
676 #       }
677
678         #
679         #  For EAP-TTLS and PEAP, add the cached attributes to the reply.
680         #  The "session-state" attributes are automatically cached when
681         #  an Access-Challenge is sent, and automatically retrieved
682         #  when an Access-Request is received.
683         #
684         #  The session-state attributes are automatically deleted after
685         #  an Access-Reject or Access-Accept is sent.
686         #
687         update {
688                 &reply: += &session-state:
689         }
690
691         #  Get an address from the IP Pool.
692 #       main_pool
693
694
695         #  Create the CUI value and add the attribute to Access-Accept.
696         #  Uncomment the line below if *returning* the CUI.
697 #       cui
698
699         #
700         #  If you want to have a log of authentication replies,
701         #  un-comment the following line, and enable the
702         #  'detail reply_log' module.
703 #       reply_log
704
705         #
706         #  After authenticating the user, do another SQL query.
707         #
708         #  See "Authentication Logging Queries" in mods-available/sql
709         -sql
710
711         #
712         #  Instead of sending the query to the SQL server,
713         #  write it into a log file.
714         #
715 #       sql_log
716
717         #
718         #  Un-comment the following if you want to modify the user's object
719         #  in LDAP after a successful login.
720         #
721 #       ldap
722
723         # For Exec-Program and Exec-Program-Wait
724         exec
725
726         #
727         #  Calculate the various WiMAX keys.  In order for this to work,
728         #  you will need to define the WiMAX NAI, usually via
729         #
730         #       update request {
731         #              WiMAX-MN-NAI = "%{User-Name}"
732         #       }
733         #
734         #  If you want various keys to be calculated, you will need to
735         #  update the reply with "template" values.  The module will see
736         #  this, and replace the template values with the correct ones
737         #  taken from the cryptographic calculations.  e.g.
738         #
739         #       update reply {
740         #               WiMAX-FA-RK-Key = 0x00
741         #               WiMAX-MSK = "%{EAP-MSK}"
742         #       }
743         #
744         #  You may want to delete the MS-MPPE-*-Keys from the reply,
745         #  as some WiMAX clients behave badly when those attributes
746         #  are included.  See "raddb/modules/wimax", configuration
747         #  entry "delete_mppe_keys" for more information.
748         #
749 #       wimax
750
751
752         #  If there is a client certificate (EAP-TLS, sometimes PEAP
753         #  and TTLS), then some attributes are filled out after the
754         #  certificate verification has been performed.  These fields
755         #  MAY be available during the authentication, or they may be
756         #  available only in the "post-auth" section.
757         #
758         #  The first set of attributes contains information about the
759         #  issuing certificate which is being used.  The second
760         #  contains information about the client certificate (if
761         #  available).
762 #
763 #       update reply {
764 #              Reply-Message += "%{TLS-Cert-Serial}"
765 #              Reply-Message += "%{TLS-Cert-Expiration}"
766 #              Reply-Message += "%{TLS-Cert-Subject}"
767 #              Reply-Message += "%{TLS-Cert-Issuer}"
768 #              Reply-Message += "%{TLS-Cert-Common-Name}"
769 #              Reply-Message += "%{TLS-Cert-Subject-Alt-Name-Email}"
770 #
771 #              Reply-Message += "%{TLS-Client-Cert-Serial}"
772 #              Reply-Message += "%{TLS-Client-Cert-Expiration}"
773 #              Reply-Message += "%{TLS-Client-Cert-Subject}"
774 #              Reply-Message += "%{TLS-Client-Cert-Issuer}"
775 #              Reply-Message += "%{TLS-Client-Cert-Common-Name}"
776 #              Reply-Message += "%{TLS-Client-Cert-Subject-Alt-Name-Email}"
777 #       }
778
779         #  Insert class attribute (with unique value) into response,
780         #  aids matching auth and acct records, and protects against duplicate
781         #  Acct-Session-Id. Note: Only works if the NAS has implemented
782         #  RFC 2865 behaviour for the class attribute, AND if the NAS
783         #  supports long Class attributes.  Many older or cheap NASes
784         #  only support 16-octet Class attributes.
785 #       insert_acct_class
786
787         #  MacSEC requires the use of EAP-Key-Name.  However, we don't
788         #  want to send it for all EAP sessions.  Therefore, the EAP
789         #  modules put required data into the EAP-Session-Id attribute.
790         #  This attribute is never put into a request or reply packet.
791         #
792         #  Uncomment the next few lines to copy the required data into
793         #  the EAP-Key-Name attribute
794 #       if (&reply:EAP-Session-Id) {
795 #               update reply {
796 #                       EAP-Key-Name := &reply:EAP-Session-Id
797 #               }
798 #       }
799
800         #  Remove reply message if the response contains an EAP-Message
801         remove_reply_message_if_eap
802
803         #
804         #  Access-Reject packets are sent through the REJECT sub-section of the
805         #  post-auth section.
806         #
807         #  Add the ldap module name (or instance) if you have set
808         #  'edir_account_policy_check = yes' in the ldap module configuration
809         #
810         #  The "session-state" attributes are not available here.
811         #
812         Post-Auth-Type REJECT {
813                 # log failed authentications in SQL, too.
814                 -sql
815                 attr_filter.access_reject
816
817                 # Insert EAP-Failure message if the request was
818                 # rejected by policy instead of because of an
819                 # authentication failure
820                 eap
821
822                 #  Remove reply message if the response contains an EAP-Message
823                 remove_reply_message_if_eap
824         }
825 }
826
827 #
828 #  When the server decides to proxy a request to a home server,
829 #  the proxied request is first passed through the pre-proxy
830 #  stage.  This stage can re-write the request, or decide to
831 #  cancel the proxy.
832 #
833 #  Only a few modules currently have this method.
834 #
835 pre-proxy {
836         # Before proxing the request add an Operator-Name attribute identifying
837         # if the operator-name is found for this client.
838         # No need to uncomment this if you have already enabled this in
839         # the authorize section.
840 #       operator-name
841
842         #  The client requests the CUI by sending a CUI attribute
843         #  containing one zero byte.
844         #  Uncomment the line below if *requesting* the CUI.
845 #       cui
846
847         #  Uncomment the following line if you want to change attributes
848         #  as defined in the preproxy_users file.
849 #       files
850
851         #  Uncomment the following line if you want to filter requests
852         #  sent to remote servers based on the rules defined in the
853         #  'attrs.pre-proxy' file.
854 #       attr_filter.pre-proxy
855
856         #  If you want to have a log of packets proxied to a home
857         #  server, un-comment the following line, and the
858         #  'detail pre_proxy_log' section, above.
859 #       pre_proxy_log
860 }
861
862 #
863 #  When the server receives a reply to a request it proxied
864 #  to a home server, the request may be massaged here, in the
865 #  post-proxy stage.
866 #
867 post-proxy {
868
869         #  If you want to have a log of replies from a home server,
870         #  un-comment the following line, and the 'detail post_proxy_log'
871         #  section, above.
872 #       post_proxy_log
873
874         #  Uncomment the following line if you want to filter replies from
875         #  remote proxies based on the rules defined in the 'attrs' file.
876 #       attr_filter.post-proxy
877
878         #
879         #  If you are proxying LEAP, you MUST configure the EAP
880         #  module, and you MUST list it here, in the post-proxy
881         #  stage.
882         #
883         #  You MUST also use the 'nostrip' option in the 'realm'
884         #  configuration.  Otherwise, the User-Name attribute
885         #  in the proxied request will not match the user name
886         #  hidden inside of the EAP packet, and the end server will
887         #  reject the EAP request.
888         #
889         eap
890
891         #
892         #  If the server tries to proxy a request and fails, then the
893         #  request is processed through the modules in this section.
894         #
895         #  The main use of this section is to permit robust proxying
896         #  of accounting packets.  The server can be configured to
897         #  proxy accounting packets as part of normal processing.
898         #  Then, if the home server goes down, accounting packets can
899         #  be logged to a local "detail" file, for processing with
900         #  radrelay.  When the home server comes back up, radrelay
901         #  will read the detail file, and send the packets to the
902         #  home server.
903         #
904         #  With this configuration, the server always responds to
905         #  Accounting-Requests from the NAS, but only writes
906         #  accounting packets to disk if the home server is down.
907         #
908 #       Post-Proxy-Type Fail-Accounting {
909 #                       detail
910 #       }
911 }
912 }