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