99c7d8d925febffceaf9b9ce4f3808033cd78a3a
[freeradius.git] / raddb / radiusd.conf.in
1 ##
2 ## radiusd.conf -- FreeRADIUS server configuration file.
3 ##
4 ##      http://www.freeradius.org/
5 ##      $Id$
6 ##
7
8 #       The location of other config files and
9 #       logfiles are declared in this file
10 #
11 #       Also general configuration for modules can be done
12 #       in this file, it is exported through the API to
13 #       modules that ask for it.
14 #
15 #       The configuration variables defined here are of the form ${foo}
16 #       They are local to this file, and do not change from request to
17 #       request.
18 #
19 #       The per-request variables are of the form %{Attribute-Name}, and
20 #       are taken from the values of the attribute in the incoming
21 #       request.  See 'doc/variables.txt' for more information.
22
23 prefix = @prefix@
24 exec_prefix = @exec_prefix@
25 sysconfdir = @sysconfdir@
26 localstatedir = @localstatedir@
27 sbindir = @sbindir@
28 logdir = @logdir@
29 raddbdir = @raddbdir@
30 radacctdir = @radacctdir@
31
32 #  Location of config and logfiles.
33 confdir = ${raddbdir}
34 run_dir = ${localstatedir}/run/radiusd
35
36 #
37 #  The logging messages for the server are appended to the
38 #  tail of this file.
39 #
40 log_file = ${logdir}/radius.log
41
42 #
43 # libdir: Where to find the rlm_* modules.
44 #
45 #   This should be automatically set at configuration time.
46 #
47 #   If the server builds and installs, but fails at execution time
48 #   with an 'undefined symbol' error, then you can use the libdir
49 #   directive to work around the problem.
50 #
51 #   The cause is usually that a library has been installed on your
52 #   system in a place where the dynamic linker CANNOT find it.  When
53 #   executing as root (or another user), your personal environment MAY
54 #   be set up to allow the dynamic linker to find the library.  When
55 #   executing as a daemon, FreeRADIUS MAY NOT have the same
56 #   personalized configuration.
57 #
58 #   To work around the problem, find out which library contains that symbol,
59 #   and add the directory containing that library to the end of 'libdir',
60 #   with a colon separating the directory names.  NO spaces are allowed.
61 #
62 #   e.g. libdir = /usr/local/lib:/opt/package/lib
63 #
64 #   You can also try setting the LD_LIBRARY_PATH environment variable
65 #   in a script which starts the server.
66 #
67 #   If that does not work, then you can re-configure and re-build the
68 #   server to NOT use shared libraries, via:
69 #
70 #       ./configure --disable-shared
71 #       make
72 #       make install
73 #
74 libdir = @libdir@
75
76 #  pidfile: Where to place the PID of the RADIUS server.
77 #
78 #  The server may be signalled while it's running by using this
79 #  file.
80 #
81 #  This file is written when ONLY running in daemon mode.
82 #
83 #  e.g.:  kill -HUP `cat /var/run/radiusd/radiusd.pid`
84 #
85 pidfile = ${run_dir}/radiusd.pid
86
87
88 # user/group: The name (or #number) of the user/group to run radiusd as.
89 #
90 #   If these are commented out, the server will run as the user/group
91 #   that started it.  In order to change to a different user/group, you
92 #   MUST be root ( or have root privleges ) to start the server.
93 #
94 #   We STRONGLY recommend that you run the server with as few permissions
95 #   as possible.  That is, if you're not using shadow passwords, the
96 #   user and group items below should be set to 'nobody'.
97 #
98 #    On SCO (ODT 3) use "user = nouser" and "group = nogroup".
99 #
100 #  NOTE that some kernels refuse to setgid(group) when the value of
101 #  (unsigned)group is above 60000; don't use group nobody on these systems!
102 #
103 #  On systems with shadow passwords, you might have to set 'group = shadow'
104 #  for the server to be able to read the shadow password file.  If you can
105 #  authenticate users while in debug mode, but not in daemon mode, it may be
106 #  that the debugging mode server is running as a user that can read the
107 #  shadow info, and the user listed below can not.
108 #
109 #user = nobody
110 #group = nobody
111
112 #  max_request_time: The maximum time (in seconds) to handle a request.
113 #
114 #  Requests which take more time than this to process may be killed, and
115 #  a REJECT message is returned.
116 #
117 #  WARNING: If you notice that requests take a long time to be handled,
118 #  then this MAY INDICATE a bug in the server, in one of the modules
119 #  used to handle a request, OR in your local configuration.
120 #
121 #  This problem is most often seen when using an SQL database.  If it takes
122 #  more than a second or two to receive an answer from the SQL database,
123 #  then it probably means that you haven't indexed the database.  See your
124 #  SQL server documentation for more information.
125 #
126 #  Useful range of values: 5 to 120
127 #
128 max_request_time = 30
129
130 #  delete_blocked_requests: If the request takes MORE THAN 'max_request_time'
131 #  to be handled, then maybe the server should delete it.
132 #
133 #  If you're running in threaded, or thread pool mode, this setting
134 #  should probably be 'no'.  Setting it to 'yes' when using a threaded
135 #  server MAY cause the server to crash!
136 #
137 delete_blocked_requests = no
138
139 #  cleanup_delay: The time to wait (in seconds) before cleaning up
140 #  a reply which was sent to the NAS.
141 #
142 #  The RADIUS request is normally cached internally for a short period
143 #  of time, after the reply is sent to the NAS.  The reply packet may be
144 #  lost in the network, and the NAS will not see it.  The NAS will then
145 #  re-send the request, and the server will respond quickly with the
146 #  cached reply.
147 #
148 #  If this value is set too low, then duplicate requests from the NAS
149 #  MAY NOT be detected, and will instead be handled as seperate requests.
150 #
151 #  If this value is set too high, then the server will cache too many
152 #  requests, and some new requests may get blocked.  (See 'max_requests'.)
153 #
154 #  Useful range of values: 2 to 10
155 #
156 cleanup_delay = 5
157
158 #  max_requests: The maximum number of requests which the server keeps
159 #  track of.  This should be 256 multiplied by the number of clients.
160 #  e.g. With 4 clients, this number should be 1024.
161 #
162 #  If this number is too low, then when the server becomes busy,
163 #  it will not respond to any new requests, until the 'cleanup_delay'
164 #  time has passed, and it has removed the old requests.
165 #
166 #  If this number is set too high, then the server will use a bit more
167 #  memory for no real benefit.
168 #
169 #  If you aren't sure what it should be set to, it's better to set it
170 #  too high than too low.  Setting it to 1000 per client is probably
171 #  the highest it should be.
172 #
173 #  Useful range of values: 256 to infinity
174 #
175 max_requests = 1024
176
177 #  bind_address:  Make the server listen on a particular IP address, and
178 #  send replies out from that address.  This directive is most useful
179 #  for machines with multiple IP addresses on one interface.
180 #
181 #  It can either contain "*", or an IP address, or a fully qualified
182 #  Internet domain name.  The default is "*"
183 #
184 bind_address = *
185
186 #  port: Allows you to bind FreeRADIUS to a specific port.
187 #
188 #  The default port that most NAS boxes use is 1645, which is historical.
189 #  RFC 2138 defines 1812 to be the new port.  Many new servers and
190 #  NAS boxes use 1812, which can create interoperability problems.
191 #
192 #  The port is defined here to be 0 so that the server will pick up
193 #  the machine's local configuration for the radius port, as defined
194 #  in /etc/services.
195 #
196 #  If you want to use the default RADIUS port as defined on your server,
197 #  (usually through 'grep radius /etc/services') set this to 0 (zero).
198 #
199 #  A port given on the command-line via '-p' over-rides this one.
200 #
201 port = 0
202
203 #  hostname_lookups: Log the names of clients or just their IP addresses
204 #  e.g., www.freeradius.org (on) or 206.47.27.232 (off).
205 #
206 #  The default is 'off' because it would be overall better for the net
207 #  if people had to knowingly turn this feature on, since enabling it
208 #  means that each client request will result in AT LEAST one lookup
209 #  request to the nameserver.   Enabling hostname_lookups will also
210 #  mean that your server may stop randomly for 30 seconds from time
211 #  to time, if the DNS requests take too long.
212 #
213 #  Turning hostname lookups off also means that the server won't block
214 #  for 30 seconds, if it sees an IP address which has no name associated
215 #  with it.
216 #
217 #  allowed values: {no, yes}
218 #
219 hostname_lookups = no
220
221 #  Core dumps are a bad thing.  This should only be set to 'yes'
222 #  if you're debugging a problem with the server.
223 #
224 #  allowed values: {no, yes}
225 #
226 allow_core_dumps = no
227
228 #  Regular expressions
229 #
230 #  These items are set at configure time.  If they're set to "yes",
231 #  then setting them to "no" turns off regular expression support.
232 #
233 #  If they're set to "no" at configure time, then setting them to "yes"
234 #  WILL NOT WORK.  It will give you an error.
235 #
236 regular_expressions     = @REGEX@
237 extended_expressions    = @REGEX_EXTENDED@
238
239 #  Log the full User-Name attribute, as it was found in the request.
240 #
241 # allowed values: {no, yes}
242 #
243 log_stripped_names = no
244
245 #  Log authentication requests to the log file.
246 #
247 #  allowed values: {no, yes}
248 #
249 log_auth = no
250
251 #  Log passwords with the authentication requests.
252 #  log_auth_badpass  - logs password if it's rejected
253 #  log_auth_goodpass - logs password if it's correct
254 #
255 #  allowed values: {no, yes}
256 #
257 log_auth_badpass = no
258 log_auth_goodpass = no
259
260 # usercollide:  Turn "username collision" code on and off.  See the
261 # "doc/duplicate-users" file
262 #
263 usercollide = no
264
265 # lower_user / lower_pass:  
266 # Lower case the username/password "before" or "after"
267 # attempting to authenticate.  
268 #
269 #  If "before", the server will first modify the request and then try
270 #  to auth the user.  If "after", the server will first auth using the
271 #  values provided by the user.  If that fails it will reprocess the
272 #  request after modifying it as you specify below.
273 #
274 #  This is as close as we can get to case insensitivity.  It is the
275 #  admin's job to ensure that the username on the auth db side is
276 #  *also* lowercase to make this work
277 #
278 # Default is 'no' (don't lowercase values)
279 # Valid values = "before" / "after" / "no"
280 #
281 lower_user = no
282 lower_pass = no
283
284 # nospace_user / nospace_pass:
285 #
286 #  Some users like to enter spaces in their username or password
287 #  incorrectly.  To save yourself the tech support call, you can
288 #  eliminate those spaces here:
289 #
290 # Default is 'no' (don't remove spaces)
291 # Valid values = "before" / "after" / "no" (explanation above)
292 #
293 nospace_user = no
294 nospace_pass = no
295
296 #  The program to execute to do concurrency checks.
297 checkrad = ${sbindir}/checkrad
298
299 # SECURITY CONFIGURATION
300 #
301 #  There may be multiple methods of attacking on the server.  This
302 #  section holds the configuration items which minimize the impact
303 #  of those attacks
304 #
305 security {
306         #
307         #  max_attributes: The maximum number of attributes
308         #  permitted in a RADIUS packet.  Packets which have MORE
309         #  than this number of attributes in them will be dropped.
310         #
311         #  If this number is set too low, then no RADIUS packets
312         #  will be accepted.
313         #
314         #  If this number is set too high, then an attacker may be
315         #  able to send a small number of packets which will cause
316         #  the server to use all available memory on the machine.
317         #
318         #  Setting this number to 0 means "allow any number of attributes"
319         max_attributes = 200
320
321         #
322         #  delayed_reject: When sending an Access-Reject, it can be
323         #  delayed for a few seconds.  This may help slow down a DoS
324         #  attack.  It also helps to slow down people trying to brute-force
325         #  crack a users password.
326         #
327         #  Setting this number to 0 means "send rejects immediately"
328         #
329         #  If this number is set higher than 'cleanup_delay', then the
330         #  rejects will be sent at 'cleanup_delay' time, when the request
331         #  is deleted from the internal cache of requests.
332         #
333         #  Useful ranges: 1 to 5
334         reject_delay = 1
335
336         #
337         #  status_server: Whether or not the server will respond
338         #  to Status-Server requests.
339         #
340         #  Normally this should be set to "no", because they're useless.
341         #  See: http://www.freeradius.org/rfc/rfc2865.html#Keep-Alives
342         #
343         #  However, certain NAS boxes may require them. 
344         #
345         #  When sent a Status-Server message, the server responds with
346         #  and Access-Accept packet, containing a Reply-Message attribute,
347         #  which is a string describing how long the server has been
348         #  running.
349         #
350         status_server = no
351 }
352
353 # PROXY CONFIGURATION
354 #
355 #  proxy_requests: Turns proxying of RADIUS requests on or off.
356 #
357 #  The server has proxying turned on by default.  If your system is NOT
358 #  set up to proxy requests to another server, then you can turn proxying
359 #  off here.  This will save a small amount of resources on the server.
360 #
361 #  If you have proxying turned off, and your configuration files say
362 #  to proxy a request, then an error message will be logged.
363 #
364 #  To disable proxying, change the "yes" to "no", and comment the
365 #  $INCLUDE line.
366 #
367 #  allowed values: {no, yes}
368 #
369 proxy_requests  = yes
370 $INCLUDE  ${confdir}/proxy.conf
371
372
373 # CLIENTS CONFIGURATION
374 #
375 #  Client configuration is defined in "clients.conf".  
376 #
377
378 #  The 'clients.conf' file contains all of the information from the old
379 #  'clients' and 'naslist' configuration files.  We recommend that you
380 #  do NOT use 'client's or 'naslist', although they are still
381 #  supported.
382 #
383 #  Anything listed in 'clients.conf' will take precedence over the
384 #  information from the old-style configuration files.
385 #
386 $INCLUDE  ${confdir}/clients.conf
387
388
389 # SNMP CONFIGURATION
390 #
391 #  Snmp configuration is only valid if SNMP support was enabled
392 #  at compile time.
393 #
394 #  To enable SNMP querying of the server, set the value of the
395 #  'snmp' attribute to 'yes'
396 #
397 snmp    = no
398 $INCLUDE  ${confdir}/snmp.conf
399
400
401 # THREAD POOL CONFIGURATION
402 #
403 #  The thread pool is a long-lived group of threads which
404 #  take turns (round-robin) handling any incoming requests.
405 #
406 #  You probably want to have a few spare threads around,
407 #  so that high-load situations can be handled immediately.  If you
408 #  don't have any spare threads, then the request handling will
409 #  be delayed while a new thread is created, and added to the pool.
410 #
411 #  You probably don't want too many spare threads around,
412 #  otherwise they'll be sitting there taking up resources, and
413 #  not doing anything productive.
414 #
415 #  The numbers given below should be adequate for most situations.
416 #
417 thread pool {
418         #  Number of servers to start initially --- should be a reasonable
419         #  ballpark figure.
420         start_servers = 5
421
422         #  Limit on the total number of servers running.
423         #
424         #  If this limit is ever reached, clients will be LOCKED OUT, so it
425         #  should NOT BE SET TOO LOW.  It is intended mainly as a brake to
426         #  keep a runaway server from taking the system with it as it spirals
427         #  down...
428         #
429         #  You may find that the server is regularly reaching the
430         #  'max_servers' number of threads, and that increasing
431         #  'max_servers' doesn't seem to make much difference.
432         #
433         #  If this is the case, then the problem is MOST LIKELY that
434         #  your back-end databases are taking too long to respond, and
435         #  are preventing the server from responding in a timely manner.
436         #
437         #  The solution is NOT do keep increasing the 'max_servers'
438         #  value, but instead to fix the underlying cause of the
439         #  problem: slow database, or 'hostname_lookups=yes'.
440         #
441         #  For more information, see 'max_request_time', above.
442         #
443         max_servers = 32
444
445         #  Server-pool size regulation.  Rather than making you guess
446         #  how many servers you need, FreeRADIUS dynamically adapts to
447         #  the load it sees, that is, it tries to maintain enough
448         #  servers to handle the current load, plus a few spare
449         #  servers to handle transient load spikes.
450         #
451         #  It does this by periodically checking how many servers are
452         #  waiting for a request.  If there are fewer than
453         #  min_spare_servers, it creates a new spare.  If there are
454         #  more than max_spare_servers, some of the spares die off.
455         #  The default values are probably OK for most sites.
456         #
457         min_spare_servers = 3
458         max_spare_servers = 10
459
460         #  There may be memory leaks or resource allocation problems with
461         #  the server.  If so, set this value to 300 or so, so that the
462         #  resources will be cleaned up periodically.
463         #
464         #  This should only be necessary if there are serious bugs in the
465         #  server which have not yet been fixed.
466         #
467         #  '0' is a special value meaning 'infinity', or 'the servers never
468         #  exit'
469         max_requests_per_server = 0
470 }
471
472 # MODULE CONFIGURATION
473 #
474 #  The names and configuration of each module is located in this section.
475 #
476 #  After the modules are defined here, they may be referred to by name,
477 #  in other sections of this configuration file.
478 #
479 modules {
480         #
481         #  Each module has a configuration as follows:
482         #
483         #       name [ instance ] {
484         #               config_item = value
485         #               ...
486         #       }
487         #
488         #  The 'name' is used to load the 'rlm_name' library
489         #  which implements the functionality of the module.
490         #
491         #  The 'instance' is optional.  To have two different instances
492         #  of a module, it first must be referred to by 'name'.
493         #  The different copies of the module are then created by
494         #  inventing two 'instance' names, e.g. 'instance1' and 'instance2'
495         #
496         #  The instance names can then be used in later configuration
497         #  INSTEAD of the original 'name'.  See the 'radutmp' configuration
498         #  below for an example.
499         #
500
501         # PAP module to authenticate users based on their stored password
502         #
503         #  Supports multiple encryption schemes
504         #  clear: Clear text
505         #  crypt: Unix crypt
506         #    md5: MD5 ecnryption
507         #   sha1: SHA1 encryption.
508         #  DEFAULT: crypt
509         pap {
510                 encryption_scheme = crypt
511         }
512
513         # CHAP module
514         #
515         #  To authenticate requests containing a CHAP-Password attribute.
516         #
517         chap {
518                 authtype = CHAP
519         }
520
521         # Pluggable Authentication Modules
522         #
523         #  For Linux, see:
524         #       http://www.kernel.org/pub/linux/libs/pam/index.html
525         #
526         pam {
527                 #
528                 #  The name to use for PAM authentication.
529                 #  PAM looks in /etc/pam.d/${pam_auth_name}
530                 #  for it's configuration.  See 'redhat/radiusd-pam'
531                 #  for a sample PAM configuration file.
532                 #
533                 #  Note that any Pam-Auth attribute set in the 'authorize'
534                 #  section will over-ride this one.
535                 #
536                 pam_auth = radiusd
537         }
538
539         # Unix /etc/passwd style authentication
540         #
541         unix {
542                 #
543                 #  Cache /etc/passwd, /etc/shadow, and /etc/group
544                 #
545                 #  The default is to NOT cache them.
546                 #
547                 #  For FreeBSD, you do NOT want to enable the cache,
548                 #  as it's password lookups are done via a database, so
549                 #  set this value to 'no'.
550                 #
551                 #  Some systems (e.g. RedHat Linux with pam_pwbd) can
552                 #  take *seconds* to check a password, from a passwd
553                 #  file containing 1000's of entries.  For those systems,
554                 #  you should set the cache value to 'yes', and set
555                 #  the locations of the 'passwd', 'shadow', and 'group'
556                 #  files, below.
557                 #
558                 # allowed values: {no, yes}
559                 cache = no
560
561                 # Reload the cache every 600 seconds (10mins). 0 to disable.
562                 cache_reload = 600
563
564                 #
565                 #  Define the locations of the normal passwd, shadow, and
566                 #  group files.
567                 #
568                 #  'shadow' is commented out by default, because not all
569                 #  systems have shadow passwords.
570                 #
571                 #  To force the module to use the system password functions,
572                 #  instead of reading the files, leave the following entries
573                 #  commented out.
574                 #
575                 #  This is required for some systems, like FreeBSD,
576                 #  and Mac OSX.
577                 #
578                 #       passwd = /etc/passwd
579                 #       shadow = /etc/shadow
580                 #       group = /etc/group
581
582
583                 #
584                 #  Where the 'wtmp' file is located.
585                 #  This should be moved to it's own module soon.
586                 #
587                 #  The only use for 'radlast'.  If you don't use
588                 #  'radlast', then you can comment out this item.
589                 #
590                 radwtmp = ${logdir}/radwtmp
591         }
592
593         #  Extensible Authentication Protocol
594         #
595         #  For all EAP related authentications 
596         eap {
597                 #  Invoke the default supported EAP type when
598                 #  EAP-Identity response is received.
599                 #
600                 #  The incoming EAP messages MAY NOT specify which EAP
601                 #  type they will be using, so it MUST be set here.
602                 #
603                 #  For now, only one default EAP type may be used at a time.
604                 #
605                 default_eap_type = md5
606
607                 #  Default expiry time to clean the EAP list, It is
608                 #  maintained to correlate the EAP-Response for each
609                 #  EAP-request sent.
610                 timer_expire     = 60
611
612                 #  There are many EAP types, but the server has support
613                 #  for only a limited subset.  If the server receives
614                 #  a request for an EAP type it does not support, then
615                 #  it normally rejects the request.  By setting this
616                 #  value to "yes", you can tell the server to instead
617                 #  keep processing the request.  Another module MUST
618                 #  then be configured to proxy the request to another
619                 #  RADIUS server which supports that EAP type.
620                 #
621                 #  If another module is NOT configured to handle the
622                 #  request, then the request will still end up being
623                 #  rejected.
624                 ignore_unknown_eap_types = no
625
626                 # Supported EAP-types
627                 md5 {
628                 }
629
630                 # Cisco LEAP
631                 #
632                 #  Cisco LEAP uses the MS-CHAP algorithm (but not
633                 #  the MS-CHAP attributes) to perform it's authentication.
634                 #
635                 #  As a result, LEAP *requires* access to the plain-text
636                 #  User-Password, or the NT-Password attributes.
637                 #  'System' authentication is impossible with LEAP.
638                 #
639                 leap {
640                 }
641
642                 ## EAP-TLS is highly experimental EAP-Type at the moment.  
643                 #       Please give feedback on the mailing list.
644                 #tls {
645                 #       private_key_password = password
646                 #       private_key_file = /path/filename
647
648                 #       If Private key & Certificate are located in the
649                 #       same file, then private_key_file & certificate_file
650                 #       must contain the same file name.
651                 #       certificate_file = /path/filename
652
653                 #       Trusted Root CA list
654                         #CA_file = /path/filename
655
656                 #       dh_file = /path/filename
657                         #random_file = /path/filename
658                 #
659                 #       This can never exceed MAX_RADIUS_LEN (4096)
660                 #       preferably half the MAX_RADIUS_LEN, to
661                 #       accomodate other attributes in RADIUS packet.
662                 #       On most APs the MAX packet length is configured
663                 #       between 1500 - 1600. In these cases, fragment
664                 #       size should be <= 1024.
665                 #
666                 #               fragment_size = 1024
667
668                 #       include_length is a flag which is by default set to yes
669                 #       If set to yes, Total Length of the message is included
670                 #       in EVERY packet we send.
671                 #       If set to no, Total Length of the message is included
672                 #       ONLY in the First packet of a fragment series.
673                 #
674                 #               include_length = yes
675                 #}
676         }
677
678         # Microsoft CHAP authentication
679         #
680         #  This module supports MS-CHAP and MS-CHAPv2 authentication.
681         #  It also enforces the SMB-Account-Ctrl attribute.
682         #
683         mschap {
684                 #
685                 #  As of 0.9, the mschap module does NOT support
686                 #  reading from /etc/smbpasswd.
687                 #
688                 #  If you are using /etc/smbpasswd, see the 'passwd'
689                 #  module for an example of how to use /etc/smbpasswd
690
691                 # authtype value, if present, will be used
692                 # to overwrite (or add) Auth-Type during
693                 # authorization. Normally should be MS-CHAP
694                 authtype = MS-CHAP
695                 
696                 # if use_mppe is not set to no mschap will
697                 # add MS-CHAP-MPPE-Keys for MS-CHAPv1 and
698                 # MS-MPPE-Recv-Key/MS-MPPE-Send-Key for MS-CHAPv2
699                 #       use_mppe = no
700
701                 # if mppe is enabled require_encryption makes
702                 # encryption moderate
703                 #       require_encryption = yes
704
705                 # require_strong always requires 128 bit key
706                 # encryption
707                 #       require_strong = yes
708         }
709
710         # Lightweight Directory Access Protocol (LDAP)
711         #
712         #  This module definition allows you to use LDAP for
713         #  authorization and authentication (Auth-Type := LDAP)
714         #
715         #  See doc/rlm_ldap for description of configuration options 
716         #  and sample authorize{} and authenticate{} blocks 
717         ldap {
718                 server = "ldap.your.domain"
719                 # identity = "cn=admin,o=My Org,c=UA"
720                 # password = mypass
721                 basedn = "o=My Org,c=UA"
722                 filter = "(uid=%{Stripped-User-Name:-%{User-Name}})"
723
724                 # set this to 'yes' to use TLS encrypted connections
725                 # to the LDAP database by using the StartTLS extended
726                 # operation.
727                 # The StartTLS operation is supposed to be used with normal
728                 # ldap connections instead of using ldaps (port 689) connections
729                 start_tls = no
730
731                 # default_profile = "cn=radprofile,ou=dialup,o=My Org,c=UA"
732                 # profile_attribute = "radiusProfileDn"
733                 access_attr = "dialupAccess"
734
735                 # Mapping of RADIUS dictionary attributes to LDAP
736                 # directory attributes.
737                 dictionary_mapping = ${raddbdir}/ldap.attrmap
738
739                 ldap_connections_number = 5
740                 # password_header = "{clear}"
741                 # password_attribute = userPassword
742                 # groupname_attribute = cn
743                 # groupmembership_filter = "(|(&(objectClass=GroupOfNames)(member=%{Ldap-UserDn}))(&(objectClass=GroupOfUniqueNames)(uniquemember=%{Ldap-UserDn})))"
744                 # groupmembership_attribute = radiusGroupName
745                 timeout = 4
746                 timelimit = 3
747                 net_timeout = 1
748                 # compare_check_items = yes
749                 # access_attr_used_for_allow = yes
750         }
751
752         # passwd module allows to do authorization via any passwd-like
753         # file and to extract any attributes from these modules
754         #
755         # parameters are:
756         #   filename - path to filename
757         #   format - format for filename record. This parameters
758         #            correlates record in the passwd file and RADIUS
759         #            attributes.
760         #
761         #            Field marked as '*' is key field. That is, the parameter
762         #            with this name from the request is used to search for
763         #            the record from passwd file
764         #            Attribute marked as '=' is added to reply_itmes instead
765         #            of default configure_itmes
766         #            Attribute marked as '~' is added to request_items
767         #
768         #            Field marked as ',' may contain a comma separated list
769         #            of attributes.
770         #   authtype - if record found this Auth-Type is used to authenticate
771         #            user
772         #   hashsize - hashtable size. If 0 or not specified records are not
773         #            stored in memory and file is red on every request.
774         #   allowmultiplekeys - if few records for every key are allowed
775         #   ignorenislike - ignore NIS-related records
776         #   delimiter - symbol to use as a field separator in passwd file,
777         #            for format ':' symbol is always used. '\0', '\n' are
778         #            not allowed 
779         #
780
781         #  An example configuration for using /etc/smbpasswd.
782         #
783         #passwd etc_smbpasswd {
784         #       filename = /etc/smbpasswd
785         #       format = "*User-Name::LM-Password:NT-Password:SMB-Account-CTRL-TEXT::"
786         #       authtype = MS-CHAP
787         #       hashsize = 100
788         #       ignorenislike = no
789         #       allowmultiplekeys = no
790         #}
791
792         #  Similar configuration, for the /etc/group file. Adds a Group-Name
793         #  attribute for every group that the user is member of.
794         #
795         #passwd etc_group {
796         #       filename = /etc/group
797         #       format = "=Group-Name:::*,User-Name"
798         #       hashsize = 50
799         #       ignorenislike = yes
800         #       allowmultiplekeys = yes
801         #       delimiter = ":"
802         #}
803
804         # Realm module, for proxying.
805         #
806         #  You can have multiple instances of the realm module to
807         #  support multiple realm syntaxs at the same time.  The
808         #  search order is defined the order in the authorize and
809         #  preacct blocks after the module config block.
810         #
811         #  Two config options:
812         #       format     -  must be 'prefix' or 'suffix'
813         #       delimiter  -  must be a single character
814
815         #  'realm/username'
816         #
817         #  Using this entry, IPASS users have their realm set to "IPASS".
818         realm realmslash {
819                 format = prefix
820                 delimiter = "/"
821         }
822
823         #  'username@realm'
824         #
825         realm suffix {
826                 format = suffix
827                 delimiter = "@"
828         }
829
830         #  'username%realm'
831         #
832         realm realmpercent {
833                 format = suffix
834                 delimiter = "%"
835         }
836         
837         #  rewrite arbitrary packets.  Useful in accounting and authorization.
838         #
839         ## This module is highly experimental at the moment.  Please give 
840         ## feedback to the mailing list.
841         #
842         #  The module can also use the Rewrite-Rule attribute. If it
843         #  is set and matches the name of the module instance, then
844         #  that module instance will be the only one which runs.
845         #
846         #  Also if new_attribute is set to yes then a new attribute
847         #  will be created containing the value replacewith and it
848         #  will be added to searchin (packet, reply or config).
849         # searchfor,ignore_case and max_matches will be ignored in that case.
850
851         #
852         #attr_rewrite sanecallerid {
853         #       attribute = Called-Station-Id
854                 # may be "packet", "reply", or "config"
855         #       searchin = packet
856         #       searchfor = "[+ ]"
857         #       replacewith = ""
858         #       ignore_case = no
859         #       new_attribute = no
860         #       max_matches = 10
861         #       ## If set to yes then the replace string will be appended to the original string
862         #       append = no
863         #}
864
865         # Preprocess the incoming RADIUS request, before handing it off
866         # to other modules.
867         #
868         #  This module processes the 'huntgroups' and 'hints' files.
869         #  In addition, it re-writes some weird attributes created
870         #  by some NASes, and converts the attributes into a form which
871         #  is a little more standard.
872         #
873         preprocess {
874                 huntgroups = ${confdir}/huntgroups
875                 hints = ${confdir}/hints
876
877                 # This hack changes Ascend's wierd port numberings
878                 # to standard 0-??? port numbers so that the "+" works
879                 # for IP address assignments.
880                 with_ascend_hack = no
881                 ascend_channels_per_line = 23
882
883                 # Windows NT machines often authenticate themselves as
884                 # NT_DOMAIN\username
885                 #
886                 # If this is set to 'yes', then the NT_DOMAIN portion
887                 # of the user-name is silently discarded.
888                 with_ntdomain_hack = no
889
890                 # Specialix Jetstream 8500 24 port access server.
891                 #
892                 # If the user name is 10 characters or longer, a "/"
893                 # and the excess characters after the 10th are
894                 # appended to the user name.
895                 #
896                 # If you're not running that NAS, you don't need
897                 # this hack.
898                 with_specialix_jetstream_hack = no
899
900                 # Cisco sends it's VSA attributes with the attribute
901                 # name *again* in the string, like:
902                 #
903                 #   H323-Attribute = "h323-attribute=value".
904                 #
905                 # If this configuration item is set to 'yes', then
906                 # the redundant data in the the attribute text is stripped
907                 # out.  The result is:
908                 #
909                 #  H323-Attribute = "value"
910                 #
911                 # If you're not running a Cisco NAS, you don't need
912                 # this hack.
913                 with_cisco_vsa_hack = no
914         }
915
916         # Livingston-style 'users' file
917         #
918         files {
919                 usersfile = ${confdir}/users
920                 acctusersfile = ${confdir}/acct_users
921
922                 #  If you want to use the old Cistron 'users' file
923                 #  with FreeRADIUS, you should change the next line
924                 #  to 'compat = cistron'.  You can the copy your 'users'
925                 #  file from Cistron.
926                 compat = no
927         }
928
929         # Write a detailed log of all accounting records received.
930         #
931         detail {
932                 #  Note that we do NOT use NAS-IP-Address here, as
933                 #  that attribute MAY BE from the originating NAS, and
934                 #  NOT from the proxy which actually sent us the
935                 #  request.  The Client-IP-Address attribute is ALWAYS
936                 #  the address of the client which sent us the
937                 #  request.
938                 #
939                 #  The following line creates a new detail file for
940                 #  every radius client (by IP address or hostname).
941                 #  In addition, a new detail file is created every
942                 #  day, so that the detail file doesn't have to go
943                 #  through a 'log rotation'
944                 #
945                 #  If your detail files are large, you may also want
946                 #  to add a ':%H' (see doc/variables.txt) to the end
947                 #  of it, to create a new detail file every hour, e.g.:
948                 #
949                 #   ..../detail-%Y%m%d:%H
950                 #
951                 #  This will create a new detail file for every hour.
952                 #
953                 detailfile = ${radacctdir}/%{Client-IP-Address}/detail-%Y%m%d
954
955                 #
956                 #  The Unix-style permissions on the 'detail' file.
957                 #
958                 #  The detail file often contains secret or private
959                 #  information about users.  So by keeping the file
960                 #  permissions restrictive, we can prevent unwanted
961                 #  people from seeing that information.
962                 detailperm = 0600
963         }
964
965         # Create a unique accounting session Id.  Many NASes re-use or
966         # repeat values for Acct-Session-Id, causing no end of
967         # confusion.
968         #
969         #  This module will add a (probably) unique session id 
970         #  to an accounting packet based on the attributes listed
971         #  below found in the packet.  See doc/rlm_acct_unique for
972         #  more information.
973         #
974         acct_unique {
975                 key = "User-Name, Acct-Session-Id, NAS-IP-Address, Client-IP-Address, NAS-Port-Id"
976         }
977
978
979         #  Include another file that has the SQL-related configuration.
980         #  This is another file only because it tends to be big.
981         #
982         #  The following configuration file is for use with MySQL.
983         #
984         #  For Postgresql, use:         ${confdir}/postgresql.conf
985         #  For MS-SQL, use:             ${confdir}/mssql.conf
986         #  For Oracle, use:             ${confdir}/oraclesql.conf
987         #
988         $INCLUDE  ${confdir}/sql.conf
989
990         #  Write a 'utmp' style file, of which users are currently
991         #  logged in, and where they've logged in from.
992         #
993         #  This file is used mainly for Simultaneous-Use checking,
994         #  and also 'radwho', to see who's currently logged in.
995         #
996         radutmp {
997                 #  Where the file is stored.  It's not a log file,
998                 #  so it doesn't need rotating.
999                 #
1000                 filename = ${logdir}/radutmp
1001
1002                 #  The field in the packet to key on for the
1003                 #  'user' name,  If you have other fields which you want
1004                 #  to use to key on to control Simultaneous-Use,
1005                 #  then you can use them here.
1006                 #
1007                 #  Note, however, that the size of the field in the
1008                 #  'utmp' data structure is small, around 32
1009                 #  characters, so that will limit the possible choices
1010                 #  of keys.
1011                 #
1012                 username = %{User-Name}
1013
1014                 #  Whether or not we want to treat "user" the same
1015                 #  as "USER", or "User".  Some systems have problems
1016                 #  with case sensitivity, so this should be set to
1017                 #  'no' to enable the comparisons of the key attribute
1018                 #  to be case insensitive.
1019                 #
1020                 case_sensitive = yes
1021
1022                 #  Accounting information may be lost, so the user MAY
1023                 #  have logged off of the NAS, but we haven't noticed.
1024                 #  If so, we can verify this information with the NAS,
1025                 #
1026                 #  If we want to believe the 'utmp' file, then this
1027                 #  configuration entry can be set to 'no'.
1028                 #
1029                 check_with_nas = yes            
1030
1031                 # Set the file permissions, as the contents of this file
1032                 # are usually private.
1033                 perm = 0600
1034
1035                 callerid = "yes"
1036         }
1037
1038         # "Safe" radutmp - does not contain caller ID, so it can be
1039         # world-readable, and radwho can work for normal users, without
1040         # exposing any information that isn't already exposed by who(1).
1041         #
1042         # This is another 'instance' of the radutmp module, but it is given
1043         # then name "sradutmp" to identify it later in the "accounting"
1044         # section.
1045         radutmp sradutmp {
1046                 filename = ${logdir}/sradutmp
1047                 perm = 0644
1048                 callerid = "no"
1049         }
1050
1051         # attr_filter - filters the attributes received in replies from
1052         # proxied servers, to make sure we send back to our RADIUS client
1053         # only allowed attributes.
1054         attr_filter {
1055                 attrsfile = ${confdir}/attrs
1056         }
1057
1058         #  counter module:
1059         #  This module takes an attribute (count-attribute).
1060         #  It also takes a key, and creates a counter for each unique
1061         #  key.  The count is incremented when accounting packets are
1062         #  received by the server.  The value of the increment depends
1063         #  on the attribute type.
1064         #  If the attribute is Acct-Session-Time or of an integer type we add the
1065         #  value of the attribute. If it is anything else we increase the
1066         #  counter by one.
1067         #
1068         #  The 'reset' parameter defines when the counters are all reset to
1069         #  zero.  It can be hourly, daily, weekly, monthly or never.
1070         #
1071         #  hourly: Reset on 00:00 of every hour
1072         #  daily: Reset on 00:00:00 every day
1073         #  weekly: Reset on 00:00:00 on sunday
1074         #  monthly: Reset on 00:00:00 of the first day of each month
1075         #
1076         #  It can also be user defined. It should be of the form:
1077         #  num[hdwm] where:
1078         #  h: hours, d: days, w: weeks, m: months
1079         #  If the letter is ommited days will be assumed. In example:
1080         #  reset = 10h (reset every 10 hours)
1081         #  reset = 12  (reset every 12 days)
1082         #
1083         #
1084         #  The check-name attribute defines an attribute which will be
1085         #  registered by the counter module and can be used to set the
1086         #  maximum allowed value for the counter after which the user
1087         #  is rejected.
1088         #  Something like:
1089         #
1090         #  DEFAULT Max-Daily-Session := 36000
1091         #          Fall-Through = 1
1092         #
1093         #  You should add the counter module in the instantiate
1094         #  section so that it registers check-name before the files
1095         #  module reads the users file.
1096         #
1097         #  If check-name is set and the user is to be rejected then we
1098         #  send back a Reply-Message and we log a Failure-Message in
1099         #  the radius.log
1100         #  If the count attribute is Acct-Session-Time then on each login
1101         #  we send back the remaining online time as a Session-Timeout attribute
1102         #
1103         #  The counter-name can also be used instead of using the check-name
1104         #  like below:
1105         #
1106         #  DEFAULT  Daily-Session-Time > 3600, Auth-Type = Reject
1107         #      Reply-Message = "You've used up more than one hour today"
1108         #
1109         #  The allowed-servicetype attribute can be used to only take
1110         #  into account specific sessions. For example if a user first
1111         #  logs in through a login menu and then selects ppp there will
1112         #  be two sessions. One for Login-User and one for Framed-User
1113         #  service type. We only need to take into account the second one.
1114         #
1115         #  The module should be added in the instantiate, authorize and
1116         #  accounting sections.  Make sure that in the authorize
1117         #  section it comes after any module which sets the
1118         #  'check-name' attribute.
1119         #
1120         counter daily {
1121                 filename = ${raddbdir}/db.daily
1122                 key = User-Name
1123                 count-attribute = Acct-Session-Time
1124                 reset = daily
1125                 counter-name = Daily-Session-Time
1126                 check-name = Max-Daily-Session
1127                 allowed-servicetype = Framed-User
1128                 cache-size = 5000
1129         }
1130
1131         # The "always" module is here for debugging purposes. Each
1132         # instance simply returns the same result, always, without
1133         # doing anything.
1134         always fail {
1135                 rcode = fail
1136         }
1137         always reject {
1138                 rcode = reject
1139         }
1140         always ok {
1141                 rcode = ok
1142                 simulcount = 0
1143                 mpp = no
1144         }
1145
1146         #
1147         #  The 'expression' module currently has no configuration.
1148         expr {
1149         }
1150
1151         #
1152         #  The 'digest' module currently has no configuration.
1153         #
1154         #  "Digest" authentication against a Cisco SIP server.
1155         #  See 'doc/rfc/draft-sterman-aaa-sip-00.txt' for details
1156         #  on performing digest authentication for Cisco SIP servers.
1157         #
1158         digest {
1159         }
1160
1161         #
1162         #  Execute external programs
1163         #
1164         #  The first example is useful only for 'xlat'.  To use it,
1165         #  put 'exec' into the 'instantiate' section.  You can then
1166         #  do dynamic translation of attributes like:
1167         #
1168         #  Attribute-Name = `{%exec:/path/to/program args}`
1169         #
1170         #  The value of the attribute will be replaced with the output
1171         #  of the program which is executed.  Due to RADIUS protocol
1172         #  limitations, any output over 253 bytes will be ignored.
1173         #
1174         #  The RADIUS attributes from the user request will be placed
1175         #  into environment variables of the executed program, as
1176         #  described in 'doc/variables.txt'
1177         #
1178         exec {
1179                 wait = yes
1180                 input_pairs = request
1181         }
1182
1183         #
1184         #  This is a more general example of the execute module.
1185         #
1186         #  If you wish to execute an external program in more than
1187         #  one section (e.g. 'authorize', 'pre_proxy', etc), then it
1188         #  is probably best to define a different instance of the
1189         #  'exec' module for every section.     
1190         #       
1191         exec echo {
1192                 #
1193                 #  Wait for the program to finish.
1194                 #
1195                 #  If we do NOT wait, then the program is "fire and
1196                 #  forget", and any output attributes from it are ignored.
1197                 #
1198                 #  If we are looking for the program to output
1199                 #  attributes, and want to add those attributes to the
1200                 #  request, then we MUST wait for the program to
1201                 #  finish, and therefore set 'wait=yes'
1202                 #
1203                 # allowed values: {no, yes}
1204                 wait = yes
1205
1206                 #
1207                 #  The name of the program to execute, and it's
1208                 #  arguments.  Dynamic translation is done on this
1209                 #  field, so things like the following example will
1210                 #  work.
1211                 #
1212                 program = "/bin/echo %{User-Name}"
1213
1214                 #
1215                 #  The attributes which are placed into the
1216                 #  environment variables for the program.
1217                 #
1218                 #  Allowed values are:
1219                 #
1220                 #       request         attributes from the request
1221                 #       reply           attributes from the reply
1222                 #       proxy-request   attributes from the proxy request
1223                 #       proxy-reply     attributes from the proxy reply
1224                 #
1225                 #  Note that some attributes may not exist at some
1226                 #  stages.  e.g. There may be no proxy-reply
1227                 #  attributes if this module is used in the
1228                 #  'authorize' section.
1229                 #
1230                 input_pairs = request
1231
1232                 #
1233                 #  Where to place the output attributes (if any) from
1234                 #  the executed program.  The values allowed, and the
1235                 #  restrictions as to availability, are the same as
1236                 #  for the input_pairs.
1237                 #
1238                 output_pairs = reply
1239
1240                 #
1241                 #  When to execute the program.  If the packet
1242                 #  type does NOT match what's listed here, then
1243                 #  the module does NOT execute the program.
1244                 #
1245                 #  For a list of allowed packet types, see
1246                 #  the 'dictionary' file, and look for VALUEs
1247                 #  of the Packet-Type attribute.
1248                 #
1249                 #  By default, the module executes on ANY packet.
1250                 #  Un-comment out the following line to tell the
1251                 #  module to execute only if an Access-Accept is
1252                 #  being sent to the NAS.
1253                 #
1254                 #packet_type = Access-Accept
1255         }
1256
1257         #  Do server side ip pool management. Should be added in post-auth and
1258         #  accounting sections.
1259         #
1260         #  The module also requires the existance of the Pool-Name
1261         #  attribute. That way the administrator can add the Pool-Name
1262         #  attribute in the user profiles and use different pools
1263         #  for different users. The Pool-Name attribute is a *check* item not
1264         #  a reply item.
1265         #
1266         # Example:
1267         # radiusd.conf: ippool students { [...] }
1268         # users file  : DEFAULT Group == students, Pool-Name := "students"
1269         #
1270         # ********* IF YOU CHANGE THE RANGE PARAMETERS YOU MUST THEN ERASE THE DB FILES *******
1271         #
1272         ippool main_pool {
1273
1274                 #  range-start,range-stop: The start and end ip
1275                 #  addresses for the ip pool
1276                 range-start = 192.168.1.1
1277                 range-stop = 192.168.3.254
1278
1279                 #  netmask: The network mask used for the ip's
1280                 netmask = 255.255.255.0
1281
1282                 #  cache-size: The gdbm cache size for the db
1283                 #  files. Should be equal to the number of ip's
1284                 #  available in the ip pool
1285                 cache-size = 800
1286
1287                 # session-db: The main db file used to allocate ip's to clients
1288                 session-db = ${raddbdir}/db.ippool
1289
1290                 # ip-index: Helper db index file used in multilink
1291                 ip-index = ${raddbdir}/db.ipindex
1292
1293                 # override: Will this ippool override a Framed-IP-Address already set
1294                 override = no
1295         }
1296
1297         # ANSI X9.9 token support.  Not included by default.
1298         # $INCLUDE  ${confdir}/x99.conf
1299
1300 }
1301
1302 # Instantiation
1303 #
1304 #  This section orders the loading of the modules.  Modules
1305 #  listed here will get loaded BEFORE the later sections like
1306 #  authorize, authenticate, etc. get examined.
1307 #
1308 #  This section is not strictly needed.  When a section like
1309 #  authorize refers to a module, it's automatically loaded and
1310 #  initialized.  However, some modules may not be listed in any
1311 #  of the following sections, so they can be listed here.
1312 #
1313 #  Also, listing modules here ensures that you have control over
1314 #  the order in which they are initalized.  If one module needs
1315 #  something defined by another module, you can list them in order
1316 #  here, and ensure that the configuration will be OK.
1317 #
1318 instantiate {
1319         #
1320         #  The expression module doesn't do authorization,
1321         #  authentication, or accounting.  It only does dynamic
1322         #  translation, of the form:
1323         #
1324         #       Session-Timeout = `%{expr:2 + 3}`
1325         #
1326         #  So the module needs to be instantiated, but CANNOT be
1327         #  listed in any other section.  See 'doc/rlm_expr' for
1328         #  more information.
1329         #
1330         expr
1331
1332         #
1333         # We add the counter module here so that it registers
1334         # the check-name attribute before any module which sets
1335         # it
1336 #       daily
1337 }
1338
1339 #  Authorization. First preprocess (hints and huntgroups files),
1340 #  then realms, and finally look in the "users" file.
1341 #
1342 #  The order of the realm modules will determine the order that
1343 #  we try to find a matching realm.
1344 #
1345 #  Make *sure* that 'preprocess' comes before any realm if you 
1346 #  need to setup hints for the remote radius server
1347 authorize {
1348         #
1349         #  The preprocess module takes care of sanitizing some bizarre
1350         #  attributes in the request, and turning them into attributes
1351         #  which are more standard.
1352         #
1353         #  It takes care of processing the 'raddb/hints' and the
1354         #  'raddb/huntgroups' files.
1355         #
1356         #  It also adds a Client-IP-Address attribute to the request.
1357         preprocess
1358         
1359         #
1360         #  The chap module will set 'Auth-Type := CHAP' if we are
1361         #  handling a CHAP request and Auth-Type has not already been set
1362         chap
1363
1364 #       attr_filter
1365
1366         #
1367         #  This module takes care of EAP-MD5, EAP-TLS, and EAP-LEAP
1368         #  authentication.
1369         eap
1370
1371         #
1372         #  If you have a Cisco SIP server authenticating against
1373         #  FreeRADIUS, uncomment the following line.
1374         # digest
1375
1376         #
1377         #  Look for IPASS style 'realm/', and if not found, look for
1378         #  '@realm', and decide whether or not to proxy, based on
1379         #  that.
1380 #       realmslash
1381         suffix
1382
1383         #
1384         #  Read the 'users' file
1385         files
1386
1387         #
1388         #  If you are using /etc/smbpasswd, and are also doing
1389         #  mschap authentication, the un-comment this line, and
1390         #  configure the 'etc_smbpasswd' module, above.
1391 #       etc_smbpasswd
1392
1393         #
1394         #  If the users are logging in with an MS-CHAP-Challenge
1395         #  attribute for authentication, the mschap module will find
1396         #  the MS-CHAP-Challenge attribute, and add 'Auth-Type := MS-CHAP'
1397         #  to the request, which will cause the server to then use
1398         #  the mschap module for authentication.
1399         mschap
1400
1401
1402 # The ldap module will set Auth-Type to LDAP if it has not already been set
1403 #       ldap
1404 #       daily
1405 }
1406
1407
1408 # Authentication.
1409 #
1410 #  This section lists which modules are available for authentication.
1411 #  Note that it does NOT mean 'try each module in order'.  It means
1412 #  that you have to have a module from the 'authorize' section add
1413 #  a configuration attribute 'Auth-Type := FOO'.  That authentication type
1414 #  is then used to pick the apropriate module from the list below.
1415 #
1416 #  The default Auth-Type is Local.  That is, whatever is not included inside
1417 # an authtype section will be called only if Auth-Type is set to Local.
1418 #
1419 # So you should do the following:
1420 # - Set Auth-Type to an appropriate value in the authorize modules above.
1421 #   For example, the chap module will set Auth-Type to CHAP, ldap to LDAP, etc.
1422 # - After that create corresponding authtype sections in the
1423 #   authenticate section below and call the appropriate modules.
1424 authenticate {
1425         #
1426         #  PAP authentication, when a back-end database listed
1427         #  in the 'authorize' section supplies a password.  The
1428         #  password can be clear-text, or encrypted.
1429         Auth-Type PAP {
1430                 pap
1431         }
1432
1433         #
1434         #  Most people want CHAP authentication
1435         #  A back-end database listed in the 'authorize' section
1436         #  MUST supply a CLEAR TEXT password.  Encrypted passwords
1437         #  won't work.
1438         Auth-Type CHAP {
1439                 chap
1440         }
1441
1442         #
1443         #  MSCHAP authentication.
1444         Auth-Type MS-CHAP {
1445                 mschap
1446         }
1447
1448         #
1449         #  If you have a Cisco SIP server authenticating against
1450         #  FreeRADIUS, uncomment the following line.
1451         # digest
1452
1453         #
1454         #  Pluggable Authentication Modules.
1455 #       pam
1456
1457         #
1458         #  See 'man getpwent' for information on how the 'unix'
1459         #  module checks the users password.  Note that packets
1460         #  containing CHAP-Password attributes CANNOT be authenticated
1461         #  against /etc/passwd!  See the FAQ for details.
1462         #  
1463         unix
1464
1465         # Uncomment it if you want to use ldap for authentication
1466 #       Auth-Type LDAP {
1467 #               ldap
1468 #       }
1469
1470
1471         #
1472         #  Allow EAP authentication.
1473         eap
1474 }
1475
1476
1477 #
1478 #  Pre-accounting.  Decide which accounting type to use.
1479 #
1480 preacct {
1481         preprocess
1482
1483         #
1484         #  Look for IPASS-style 'realm/', and if not found, look for
1485         #  '@realm', and decide whether or not to proxy, based on
1486         #  that.
1487         #
1488         #  Accounting requests are generally proxied to the same
1489         #  home server as authentication requests.
1490 #       realmslash
1491         suffix
1492
1493         #
1494         #  Read the 'acct_users' file
1495         files
1496 }
1497
1498 #
1499 #  Accounting.  Log the accounting data.
1500 #
1501 accounting {
1502         #
1503         #  Ensure that we have a semi-unique identifier for every
1504         #  request, and many NAS boxes are broken.
1505         acct_unique
1506
1507         #
1508         #  Create a 'detail'ed log of the packets.
1509         #  Note that accounting requests which are proxied
1510         #  are also logged in the detail file.
1511         detail
1512 #       daily
1513
1514         unix            # wtmp file
1515
1516         #
1517         #  For Simultaneous-Use tracking.
1518         #
1519         #  Due to packet losses in the network, the data here
1520         #  may be incorrect.  There's little we can do about it.
1521         radutmp
1522 #       sradutmp
1523
1524         #  Return an address to the IP Pool when we see a stop record.
1525 #       main_pool
1526 }
1527
1528
1529 #  Session database, used for checking Simultaneous-Use. Either the radutmp 
1530 #  or rlm_sql module can handle this.
1531 #  The rlm_sql module is *much* faster
1532 session {
1533         radutmp
1534 #       sql
1535 }
1536
1537
1538 #  Post-Authentication
1539 #  Once we KNOW that the user has been authenticated, there are
1540 #  additional steps we can take.
1541 post-auth {
1542         #  Get an address from the IP Pool.
1543 #       main_pool
1544 }
1545
1546 #
1547 #  When the server decides to proxy a request to a home server,
1548 #  the proxied request is first passed through the pre-proxy
1549 #  stage.  This stage can re-write the request, or decide to
1550 #  cancel the proxy.
1551 #
1552 #  Only a few modules currently have this method.
1553 #
1554 pre-proxy {
1555         # attr_rewrite
1556 }
1557
1558 #
1559 #  When the server receives a reply to a request it proxied
1560 #  to a home server, the request may be massaged here, in the
1561 #  post-proxy stage.
1562 #
1563 post-proxy {
1564         # attr_rewrite
1565
1566         #
1567         #  If you are proxing LEAP, you MUST configure the EAP
1568         #  module, and you MUST list it here, in the post-proxy
1569         #  stage.
1570         #
1571         #  You MUST also use the 'nostrip' option in the 'realm'
1572         #  configuration.  Otherwise, the User-Name attribute
1573         #  in the proxied request will not match the user name
1574         #  hidden inside of the EAP packet, and the end server will
1575         #  reject the EAP request.
1576         #
1577         eap
1578 }