Document the new "reply-name" directive.
[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 #  Destination for log messages.  This can be one of:
44 #
45 #       files - log to ${log_file}, as defined above.
46 #       syslog - to syslog (see also the log{} section, below)
47 #       stdout - standard output
48 #       stderr - standard error.
49 #
50 #  The command-line option "-X" over-rides this option, and forces
51 #  logging to go to stdout.
52 #
53 log_destination = files
54
55 #
56 # libdir: Where to find the rlm_* modules.
57 #
58 #   This should be automatically set at configuration time.
59 #
60 #   If the server builds and installs, but fails at execution time
61 #   with an 'undefined symbol' error, then you can use the libdir
62 #   directive to work around the problem.
63 #
64 #   The cause is usually that a library has been installed on your
65 #   system in a place where the dynamic linker CANNOT find it.  When
66 #   executing as root (or another user), your personal environment MAY
67 #   be set up to allow the dynamic linker to find the library.  When
68 #   executing as a daemon, FreeRADIUS MAY NOT have the same
69 #   personalized configuration.
70 #
71 #   To work around the problem, find out which library contains that symbol,
72 #   and add the directory containing that library to the end of 'libdir',
73 #   with a colon separating the directory names.  NO spaces are allowed.
74 #
75 #   e.g. libdir = /usr/local/lib:/opt/package/lib
76 #
77 #   You can also try setting the LD_LIBRARY_PATH environment variable
78 #   in a script which starts the server.
79 #
80 #   If that does not work, then you can re-configure and re-build the
81 #   server to NOT use shared libraries, via:
82 #
83 #       ./configure --disable-shared
84 #       make
85 #       make install
86 #
87 libdir = @libdir@
88
89 #  pidfile: Where to place the PID of the RADIUS server.
90 #
91 #  The server may be signalled while it's running by using this
92 #  file.
93 #
94 #  This file is written when ONLY running in daemon mode.
95 #
96 #  e.g.:  kill -HUP `cat /var/run/radiusd/radiusd.pid`
97 #
98 pidfile = ${run_dir}/radiusd.pid
99
100
101 # user/group: The name (or #number) of the user/group to run radiusd as.
102 #
103 #   If these are commented out, the server will run as the user/group
104 #   that started it.  In order to change to a different user/group, you
105 #   MUST be root ( or have root privleges ) to start the server.
106 #
107 #   We STRONGLY recommend that you run the server with as few permissions
108 #   as possible.  That is, if you're not using shadow passwords, the
109 #   user and group items below should be set to 'nobody'.
110 #
111 #    On SCO (ODT 3) use "user = nouser" and "group = nogroup".
112 #
113 #  NOTE that some kernels refuse to setgid(group) when the value of
114 #  (unsigned)group is above 60000; don't use group nobody on these systems!
115 #
116 #  On systems with shadow passwords, you might have to set 'group = shadow'
117 #  for the server to be able to read the shadow password file.  If you can
118 #  authenticate users while in debug mode, but not in daemon mode, it may be
119 #  that the debugging mode server is running as a user that can read the
120 #  shadow info, and the user listed below can not.
121 #
122 #user = nobody
123 #group = nobody
124
125 #  max_request_time: The maximum time (in seconds) to handle a request.
126 #
127 #  Requests which take more time than this to process may be killed, and
128 #  a REJECT message is returned.
129 #
130 #  WARNING: If you notice that requests take a long time to be handled,
131 #  then this MAY INDICATE a bug in the server, in one of the modules
132 #  used to handle a request, OR in your local configuration.
133 #
134 #  This problem is most often seen when using an SQL database.  If it takes
135 #  more than a second or two to receive an answer from the SQL database,
136 #  then it probably means that you haven't indexed the database.  See your
137 #  SQL server documentation for more information.
138 #
139 #  Useful range of values: 5 to 120
140 #
141 max_request_time = 30
142
143 #  delete_blocked_requests: If the request takes MORE THAN 'max_request_time'
144 #  to be handled, then maybe the server should delete it.
145 #
146 #  If you're running in threaded, or thread pool mode, this setting
147 #  should probably be 'no'.  Setting it to 'yes' when using a threaded
148 #  server MAY cause the server to crash!
149 #
150 delete_blocked_requests = no
151
152 #  cleanup_delay: The time to wait (in seconds) before cleaning up
153 #  a reply which was sent to the NAS.
154 #
155 #  The RADIUS request is normally cached internally for a short period
156 #  of time, after the reply is sent to the NAS.  The reply packet may be
157 #  lost in the network, and the NAS will not see it.  The NAS will then
158 #  re-send the request, and the server will respond quickly with the
159 #  cached reply.
160 #
161 #  If this value is set too low, then duplicate requests from the NAS
162 #  MAY NOT be detected, and will instead be handled as seperate requests.
163 #
164 #  If this value is set too high, then the server will cache too many
165 #  requests, and some new requests may get blocked.  (See 'max_requests'.)
166 #
167 #  Useful range of values: 2 to 10
168 #
169 cleanup_delay = 5
170
171 #  max_requests: The maximum number of requests which the server keeps
172 #  track of.  This should be 256 multiplied by the number of clients.
173 #  e.g. With 4 clients, this number should be 1024.
174 #
175 #  If this number is too low, then when the server becomes busy,
176 #  it will not respond to any new requests, until the 'cleanup_delay'
177 #  time has passed, and it has removed the old requests.
178 #
179 #  If this number is set too high, then the server will use a bit more
180 #  memory for no real benefit.
181 #
182 #  If you aren't sure what it should be set to, it's better to set it
183 #  too high than too low.  Setting it to 1000 per client is probably
184 #  the highest it should be.
185 #
186 #  Useful range of values: 256 to infinity
187 #
188 max_requests = 1024
189
190 #  listen: Make the server listen on a particular IP address, and send
191 #  replies out from that address. This directive is most useful for
192 #  hosts with multiple IP addresses on one interface.
193 #
194 #  If you want the server to listen on additional addresses, or on
195 #  additionnal ports, you can use multiple "listen" sections.
196 #
197 #  Each section make the server listen for only one type of packet,
198 #  therefore authentication and accounting have to be configured in
199 #  different sections.
200 #
201 #  The server ignore all "listen" section if you are using '-i' and '-p'
202 #  on the command line.
203 #
204 listen {
205         #  IP address on which to listen.
206         #  Allowed values are:
207         #       dotted quad (1.2.3.4)
208         #       hostname    (radius.example.com)
209         #       wildcard    (*)
210         ipaddr = *
211
212         #  OR, you can use an IPv6 address, but not both
213         #  at the same time.
214 #       ipv6addr = ::   # any.  ::1 == localhost
215
216         #  Port on which to listen.
217         #  Allowed values are:
218         #       integer port number (1812)
219         #       0 means "use /etc/services for the proper port"
220         port = 0
221
222         #  Type of packets to listen for.
223         #  Allowed values are:
224         #       auth    listen for authentication packets
225         #       acct    listen for accounting packets
226         #
227         type = auth
228
229         #  Some systems support binding to an interface, in addition
230         #  to the IP address.  This feature isn't strictly necessary,
231         #  but for sites with many IP addresses on one interface,
232         #  it's useful to say "listen on all addresses for eth0".
233         #
234         #  If your system does not support this feature, you will
235         #  get an error if you try to use it.
236         #
237 #       interface = eth0
238
239         #  Per-socket lists of clients.  This is a very useful feature.
240         #
241         #  The name here is a reference to a section elsewhere in
242         #  radiusd.conf, or clients.conf.  Having the name as
243         #  a reference allows multiple sockets to use the same
244         #  set of clients.
245         #
246         #  If this configuration is used, then the global list of clients
247         #  is IGNORED for this "listen" section.  Take care configuring
248         #  this feature, to ensure you don't accidentally disable a
249         #  client you need.
250         #
251         #  See clients.conf for the configuration of "per_socket_clients".
252         #
253 #       clients = per_socket_clients
254 }
255
256 #  This second "listen" section is for listening on the accounting
257 #  port, too.
258 #
259 listen {
260         ipaddr = *
261 #       ipv6addr = ::
262         port = 0
263         type = acct
264 #       interface = eth0
265 #       clients = per_socket_clients
266 }
267
268 #  hostname_lookups: Log the names of clients or just their IP addresses
269 #  e.g., www.freeradius.org (on) or 206.47.27.232 (off).
270 #
271 #  The default is 'off' because it would be overall better for the net
272 #  if people had to knowingly turn this feature on, since enabling it
273 #  means that each client request will result in AT LEAST one lookup
274 #  request to the nameserver.   Enabling hostname_lookups will also
275 #  mean that your server may stop randomly for 30 seconds from time
276 #  to time, if the DNS requests take too long.
277 #
278 #  Turning hostname lookups off also means that the server won't block
279 #  for 30 seconds, if it sees an IP address which has no name associated
280 #  with it.
281 #
282 #  allowed values: {no, yes}
283 #
284 hostname_lookups = no
285
286 #  Core dumps are a bad thing.  This should only be set to 'yes'
287 #  if you're debugging a problem with the server.
288 #
289 #  allowed values: {no, yes}
290 #
291 allow_core_dumps = no
292
293 #  Regular expressions
294 #
295 #  These items are set at configure time.  If they're set to "yes",
296 #  then setting them to "no" turns off regular expression support.
297 #
298 #  If they're set to "no" at configure time, then setting them to "yes"
299 #  WILL NOT WORK.  It will give you an error.
300 #
301 regular_expressions     = @REGEX@
302 extended_expressions    = @REGEX_EXTENDED@
303
304 #
305 #  Logging section.  The various "log_*" configuration items
306 #  will eventually be moved here.
307 #
308 log {
309         #
310         #  Which syslog facility to use, if ${log_destination} == "syslog"
311         #
312         #  The exact values permitted here are OS-dependent.  You probably
313         #  don't want to change this.
314         #
315         syslog_facility = daemon
316 }
317
318 #  Log the full User-Name attribute, as it was found in the request.
319 #
320 # allowed values: {no, yes}
321 #
322 log_stripped_names = no
323
324 #  Log authentication requests to the log file.
325 #
326 #  allowed values: {no, yes}
327 #
328 log_auth = no
329
330 #  Log passwords with the authentication requests.
331 #  log_auth_badpass  - logs password if it's rejected
332 #  log_auth_goodpass - logs password if it's correct
333 #
334 #  allowed values: {no, yes}
335 #
336 log_auth_badpass = no
337 log_auth_goodpass = no
338
339 #  The program to execute to do concurrency checks.
340 checkrad = ${sbindir}/checkrad
341
342 # SECURITY CONFIGURATION
343 #
344 #  There may be multiple methods of attacking on the server.  This
345 #  section holds the configuration items which minimize the impact
346 #  of those attacks
347 #
348 security {
349         #
350         #  max_attributes: The maximum number of attributes
351         #  permitted in a RADIUS packet.  Packets which have MORE
352         #  than this number of attributes in them will be dropped.
353         #
354         #  If this number is set too low, then no RADIUS packets
355         #  will be accepted.
356         #
357         #  If this number is set too high, then an attacker may be
358         #  able to send a small number of packets which will cause
359         #  the server to use all available memory on the machine.
360         #
361         #  Setting this number to 0 means "allow any number of attributes"
362         max_attributes = 200
363
364         #
365         #  reject_delay: When sending an Access-Reject, it can be
366         #  delayed for a few seconds.  This may help slow down a DoS
367         #  attack.  It also helps to slow down people trying to brute-force
368         #  crack a users password.
369         #
370         #  Setting this number to 0 means "send rejects immediately"
371         #
372         #  If this number is set higher than 'cleanup_delay', then the
373         #  rejects will be sent at 'cleanup_delay' time, when the request
374         #  is deleted from the internal cache of requests.
375         #
376         #  Useful ranges: 1 to 5
377         reject_delay = 1
378
379         #
380         #  status_server: Whether or not the server will respond
381         #  to Status-Server requests.
382         #
383         #  Normally this should be set to "no", because they're useless.
384         #  See: http://www.freeradius.org/rfc/rfc2865.html#Keep-Alives
385         #
386         #  However, certain NAS boxes may require them. 
387         #
388         #  When sent a Status-Server message, the server responds with
389         #  an Access-Accept packet, containing a Reply-Message attribute,
390         #  which is a string describing how long the server has been
391         #  running.
392         #
393         status_server = no
394 }
395
396 # PROXY CONFIGURATION
397 #
398 #  proxy_requests: Turns proxying of RADIUS requests on or off.
399 #
400 #  The server has proxying turned on by default.  If your system is NOT
401 #  set up to proxy requests to another server, then you can turn proxying
402 #  off here.  This will save a small amount of resources on the server.
403 #
404 #  If you have proxying turned off, and your configuration files say
405 #  to proxy a request, then an error message will be logged.
406 #
407 #  To disable proxying, change the "yes" to "no", and comment the
408 #  $INCLUDE line.
409 #
410 #  allowed values: {no, yes}
411 #
412 proxy_requests  = yes
413 $INCLUDE  ${confdir}/proxy.conf
414
415
416 # CLIENTS CONFIGURATION
417 #
418 #  Client configuration is defined in "clients.conf".  
419 #
420
421 #  The 'clients.conf' file contains all of the information from the old
422 #  'clients' and 'naslist' configuration files.  We recommend that you
423 #  do NOT use 'client's or 'naslist', although they are still
424 #  supported.
425 #
426 #  Anything listed in 'clients.conf' will take precedence over the
427 #  information from the old-style configuration files.
428 #
429 $INCLUDE  ${confdir}/clients.conf
430
431
432 # SNMP CONFIGURATION
433 #
434 #  Snmp configuration is only valid if SNMP support was enabled
435 #  at compile time.
436 #
437 #  To enable SNMP querying of the server, set the value of the
438 #  'snmp' attribute to 'yes'
439 #
440 snmp    = no
441 $INCLUDE  ${confdir}/snmp.conf
442
443
444 # THREAD POOL CONFIGURATION
445 #
446 #  The thread pool is a long-lived group of threads which
447 #  take turns (round-robin) handling any incoming requests.
448 #
449 #  You probably want to have a few spare threads around,
450 #  so that high-load situations can be handled immediately.  If you
451 #  don't have any spare threads, then the request handling will
452 #  be delayed while a new thread is created, and added to the pool.
453 #
454 #  You probably don't want too many spare threads around,
455 #  otherwise they'll be sitting there taking up resources, and
456 #  not doing anything productive.
457 #
458 #  The numbers given below should be adequate for most situations.
459 #
460 thread pool {
461         #  Number of servers to start initially --- should be a reasonable
462         #  ballpark figure.
463         start_servers = 5
464
465         #  Limit on the total number of servers running.
466         #
467         #  If this limit is ever reached, clients will be LOCKED OUT, so it
468         #  should NOT BE SET TOO LOW.  It is intended mainly as a brake to
469         #  keep a runaway server from taking the system with it as it spirals
470         #  down...
471         #
472         #  You may find that the server is regularly reaching the
473         #  'max_servers' number of threads, and that increasing
474         #  'max_servers' doesn't seem to make much difference.
475         #
476         #  If this is the case, then the problem is MOST LIKELY that
477         #  your back-end databases are taking too long to respond, and
478         #  are preventing the server from responding in a timely manner.
479         #
480         #  The solution is NOT do keep increasing the 'max_servers'
481         #  value, but instead to fix the underlying cause of the
482         #  problem: slow database, or 'hostname_lookups=yes'.
483         #
484         #  For more information, see 'max_request_time', above.
485         #
486         max_servers = 32
487
488         #  Server-pool size regulation.  Rather than making you guess
489         #  how many servers you need, FreeRADIUS dynamically adapts to
490         #  the load it sees, that is, it tries to maintain enough
491         #  servers to handle the current load, plus a few spare
492         #  servers to handle transient load spikes.
493         #
494         #  It does this by periodically checking how many servers are
495         #  waiting for a request.  If there are fewer than
496         #  min_spare_servers, it creates a new spare.  If there are
497         #  more than max_spare_servers, some of the spares die off.
498         #  The default values are probably OK for most sites.
499         #
500         min_spare_servers = 3
501         max_spare_servers = 10
502
503         #  There may be memory leaks or resource allocation problems with
504         #  the server.  If so, set this value to 300 or so, so that the
505         #  resources will be cleaned up periodically.
506         #
507         #  This should only be necessary if there are serious bugs in the
508         #  server which have not yet been fixed.
509         #
510         #  '0' is a special value meaning 'infinity', or 'the servers never
511         #  exit'
512         max_requests_per_server = 0
513 }
514
515 # MODULE CONFIGURATION
516 #
517 #  The names and configuration of each module is located in this section.
518 #
519 #  After the modules are defined here, they may be referred to by name,
520 #  in other sections of this configuration file.
521 #
522 modules {
523         #
524         #  Each module has a configuration as follows:
525         #
526         #       name [ instance ] {
527         #               config_item = value
528         #               ...
529         #       }
530         #
531         #  The 'name' is used to load the 'rlm_name' library
532         #  which implements the functionality of the module.
533         #
534         #  The 'instance' is optional.  To have two different instances
535         #  of a module, it first must be referred to by 'name'.
536         #  The different copies of the module are then created by
537         #  inventing two 'instance' names, e.g. 'instance1' and 'instance2'
538         #
539         #  The instance names can then be used in later configuration
540         #  INSTEAD of the original 'name'.  See the 'radutmp' configuration
541         #  below for an example.
542         #
543
544         # PAP module to authenticate users based on their stored password
545         #
546         #  Supports multiple encryption/hash schemes.  See "man passwd"
547         #  for details.
548         #
549         #  The "auto_header" configuration item can be set to "yes".
550         #  In this case, the module will look inside of the User-Password
551         #  attribute for the headers {crypt}, {clear}, etc., and will
552         #  automatically create the attribute on the right-hand side,
553         #  with the correct value.  It will also automatically handle
554         #  Base-64 encoded data, hex strings, and binary data.
555         pap {
556                 auto_header = no
557         }
558
559         # CHAP module
560         #
561         #  To authenticate requests containing a CHAP-Password attribute.
562         #
563         chap {
564                 authtype = CHAP
565         }
566
567         # Pluggable Authentication Modules
568         #
569         #  For Linux, see:
570         #       http://www.kernel.org/pub/linux/libs/pam/index.html
571         #
572         #  WARNING: On many systems, the system PAM libraries have
573         #           memory leaks!  We STRONGLY SUGGEST that you do not
574         #           use PAM for authentication, due to those memory leaks.
575         #
576         pam {
577                 #
578                 #  The name to use for PAM authentication.
579                 #  PAM looks in /etc/pam.d/${pam_auth_name}
580                 #  for it's configuration.  See 'redhat/radiusd-pam'
581                 #  for a sample PAM configuration file.
582                 #
583                 #  Note that any Pam-Auth attribute set in the 'authorize'
584                 #  section will over-ride this one.
585                 #
586                 pam_auth = radiusd
587         }
588
589         # Unix /etc/passwd style authentication
590         #
591         unix {
592                 #  As of 1.1.0, the Unix module no longer reads,
593                 #  or caches /etc/passwd, /etc/shadow, or /etc/group.
594                 #  If you wish to cache those files, see the passwd
595                 #  module, above.
596                 #
597
598                 #
599                 #  The location of the "wtmp" file.
600                 #  This should be moved to it's own module soon.
601                 #
602                 #  The only use for 'radlast'.  If you don't use
603                 #  'radlast', then you can comment out this item.
604                 #
605                 radwtmp = ${logdir}/radwtmp
606         }
607
608         #  Extensible Authentication Protocol
609         #
610         #  For all EAP related authentications.
611         #  Now in another file, because it is very large.
612         #
613 $INCLUDE ${confdir}/eap.conf
614
615         # Microsoft CHAP authentication
616         #
617         #  This module supports MS-CHAP and MS-CHAPv2 authentication.
618         #  It also enforces the SMB-Account-Ctrl attribute.
619         #
620         mschap {
621                 #
622                 #  As of 0.9, the mschap module does NOT support
623                 #  reading from /etc/smbpasswd.
624                 #
625                 #  If you are using /etc/smbpasswd, see the 'passwd'
626                 #  module for an example of how to use /etc/smbpasswd
627
628                 # if use_mppe is not set to no mschap will
629                 # add MS-CHAP-MPPE-Keys for MS-CHAPv1 and
630                 # MS-MPPE-Recv-Key/MS-MPPE-Send-Key for MS-CHAPv2
631                 #
632                 #use_mppe = no
633
634                 # if mppe is enabled require_encryption makes
635                 # encryption moderate
636                 #
637                 #require_encryption = yes
638
639                 # require_strong always requires 128 bit key
640                 # encryption
641                 #
642                 #require_strong = yes
643
644                 # Windows sends us a username in the form of
645                 # DOMAIN\user, but sends the challenge response
646                 # based on only the user portion.  This hack
647                 # corrects for that incorrect behavior.
648                 #
649                 #with_ntdomain_hack = no
650
651                 # The module can perform authentication itself, OR
652                 # use a Windows Domain Controller.  This configuration
653                 # directive tells the module to call the ntlm_auth
654                 # program, which will do the authentication, and return
655                 # the NT-Key.  Note that you MUST have "winbindd" and
656                 # "nmbd" running on the local machine for ntlm_auth
657                 # to work.  See the ntlm_auth program documentation
658                 # for details.
659                 #
660                 # Be VERY careful when editing the following line!
661                 #
662                 #ntlm_auth = "/path/to/ntlm_auth --request-nt-key --username=%{Stripped-User-Name:-%{User-Name:-None}} --challenge=%{mschap:Challenge:-00} --nt-response=%{mschap:NT-Response:-00}"
663         }
664
665         # Lightweight Directory Access Protocol (LDAP)
666         #
667         #  This module definition allows you to use LDAP for
668         #  authorization and authentication.
669         #
670         #  See doc/rlm_ldap for description of configuration options 
671         #  and sample authorize{} and authenticate{} blocks 
672         #
673         #  However, LDAP can be used for authentication ONLY when the
674         #  Access-Request packet contains a clear-text User-Password
675         #  attribute.  LDAP authentication will NOT work for any other
676         #  authentication method.
677         #
678         #  This means that LDAP servers don't understand EAP.  If you
679         #  force "Auth-Type = LDAP", and then send the server a
680         #  request containing EAP authentication, then authentication
681         #  WILL NOT WORK.
682         #
683         #  The solution is to use the default configuration, which does
684         #  work.
685         #
686         #  Setting "Auth-Type = LDAP" is ALMOST ALWAYS WRONG.  We
687         #  really can't emphasize this enough.
688         #       
689         ldap {
690                 server = "ldap.your.domain"
691                 #identity = "cn=admin,o=My Org,c=UA"
692                 #password = mypass
693                 basedn = "o=My Org,c=UA"
694                 filter = "(uid=%{Stripped-User-Name:-%{User-Name}})"
695                 #base_filter = "(objectclass=radiusprofile)"
696
697                 #  How many connections to keep open to the LDAP server.
698                 #  This saves time over opening a new LDAP socket for
699                 #  every authentication request.
700                 ldap_connections_number = 5
701
702                 timeout = 4
703                 timelimit = 3
704                 net_timeout = 1
705
706                 #
707                 #  This subsection configures the tls related items
708                 #  that control how FreeRADIUS connects to an LDAP
709                 #  server.  It contains all of the "tls_*" configuration
710                 #  entries used in older versions of FreeRADIUS.  Those
711                 #  configuration entries can still be used, but we recommend
712                 #  using these.
713                 #
714                 tls {
715                         # Set this to 'yes' to use TLS encrypted connections
716                         # to the LDAP database by using the StartTLS extended
717                         # operation.
718                         #                       
719                         # The StartTLS operation is supposed to be
720                         # used with normal ldap connections instead of
721                         # using ldaps (port 689) connections
722                         start_tls = no
723
724                         # cacertfile    = /path/to/cacert.pem
725                         # cacertdir             = /path/to/ca/dir/
726                         # certfile              = /path/to/radius.crt
727                         # keyfile               = /path/to/radius.key
728                         # randfile              = /path/to/rnd
729                         # require_cert  = "demand"
730                 }
731
732                 # default_profile = "cn=radprofile,ou=dialup,o=My Org,c=UA"
733                 # profile_attribute = "radiusProfileDn"
734                 # access_attr = "dialupAccess"
735
736                 # Mapping of RADIUS dictionary attributes to LDAP
737                 # directory attributes.
738                 dictionary_mapping = ${raddbdir}/ldap.attrmap
739
740                 #  Set password_attribute = nspmPassword to get the
741                 #  user's password from a Novell eDirectory
742                 #  backend. This will work ONLY IF FreeRADIUS has been
743                 #  built with the --with-edir configure option.
744                 #
745                 # password_attribute = userPassword
746
747                 #  As of 1.1.0, the LDAP module will auto-discover
748                 #  the password headers (which are non-standard).
749                 #  It will use the following table to map passwords
750                 #  to RADIUS attributes.  The PAP module (see above)
751                 #  can then automatically determine the hashing
752                 #  method to use to authenticate the user.
753                 #
754                 #       Header          Attribute
755                 #       ------          ---------
756                 #       {clear}         User-Password
757                 #       {cleartext}     User-Password
758                 #       {md5}           MD5-Password
759                 #       {smd5}          SMD5-Password
760                 #       {crypt}         Crypt-Password
761                 #       {sha}           SHA-Password
762                 #       {ssha}          SSHA-Password
763                 #       {nt}            NT-Password
764                 #       {ns-mta-md5}    NS-MTA-MD5-Password
765                 #               
766                 #
767                 #  The headers are compared in a case-insensitive manner.
768                 #  The format of the password in LDAP (base 64-encoded, hex,
769                 #  clear-text, whatever) is not that important.  The PAP
770                 #  module will figure it out.
771                 #
772                 #  The default for "auto_header" is "no", to enable backwards
773                 #  compatibility with the "password_header" directive,
774                 #  which is now deprecated.  If this is set to "yes",
775                 #  then the above table will be used, and the
776                 #  "password_header" directive will be ignored.
777
778                 #auto_header = yes
779
780                 #  Un-comment the following to disable Novell
781                 #  eDirectory account policy check and intruder
782                 #  detection. This will work *only if* FreeRADIUS is
783                 #  configured to build with --with-edir option.
784                 #
785                 #edir_account_policy_check = no
786
787                 #
788                 #  Group membership checking.  Disabled by default.
789                 #
790                 # groupname_attribute = cn
791                 # groupmembership_filter = "(|(&(objectClass=GroupOfNames)(member=%{Ldap-UserDn}))(&(objectClass=GroupOfUniqueNames)(uniquemember=%{Ldap-UserDn})))"
792                 # groupmembership_attribute = radiusGroupName
793
794                 # compare_check_items = yes
795                 # do_xlat = yes
796                 # access_attr_used_for_allow = yes
797
798                 #
799                 #  By default, if the packet contains a User-Password,
800                 #  and no other module is configured to handle the
801                 #  authentication, the LDAP module sets itself to do
802                 #  LDAP bind for authentication.
803                 #
804                 #  You can disable this behavior by setting the following
805                 #  configuration entry to "no".
806                 #
807                 #  allowed values: {no, yes}
808                 # set_auth_type = yes
809         }
810
811         # passwd module allows to do authorization via any passwd-like
812         # file and to extract any attributes from these modules
813         #
814         # parameters are:
815         #   filename - path to filename
816         #   format - format for filename record. This parameters
817         #            correlates record in the passwd file and RADIUS
818         #            attributes.
819         #
820         #            Field marked as '*' is key field. That is, the parameter
821         #            with this name from the request is used to search for
822         #            the record from passwd file
823         #            Attribute marked as '=' is added to reply_itmes instead
824         #            of default configure_itmes
825         #            Attribute marked as '~' is added to request_items
826         #
827         #            Field marked as ',' may contain a comma separated list
828         #            of attributes.
829         #   hashsize - hashtable size. If 0 or not specified records are not
830         #            stored in memory and file is red on every request.
831         #   allowmultiplekeys - if few records for every key are allowed
832         #   ignorenislike - ignore NIS-related records
833         #   delimiter - symbol to use as a field separator in passwd file,
834         #            for format ':' symbol is always used. '\0', '\n' are
835         #            not allowed 
836         #
837
838         #  An example configuration for using /etc/smbpasswd.
839         #
840         #passwd etc_smbpasswd {
841         #       filename = /etc/smbpasswd
842         #       format = "*User-Name::LM-Password:NT-Password:SMB-Account-CTRL-TEXT::"
843         #       hashsize = 100
844         #       ignorenislike = no
845         #       allowmultiplekeys = no
846         #}
847
848         #  Similar configuration, for the /etc/group file. Adds a Group-Name
849         #  attribute for every group that the user is member of.
850         #
851         #passwd etc_group {
852         #       filename = /etc/group
853         #       format = "=Group-Name:::*,User-Name"
854         #       hashsize = 50
855         #       ignorenislike = yes
856         #       allowmultiplekeys = yes
857         #       delimiter = ":"
858         #}
859
860         # Realm module, for proxying.
861         #
862         #  You can have multiple instances of the realm module to
863         #  support multiple realm syntaxs at the same time.  The
864         #  search order is defined by the order in the authorize and
865         #  preacct sections.
866         #
867         #  Four config options:
868         #       format         -  must be "prefix" or "suffix"
869         #                         The special cases of "DEFAULT"
870         #                         and "NULL" are allowed, too.
871         #       delimiter      -  must be a single character
872
873         #  'realm/username'
874         #
875         #  Using this entry, IPASS users have their realm set to "IPASS".
876         realm IPASS {
877                 format = prefix
878                 delimiter = "/"
879         }
880
881         #  'username@realm'
882         #
883         realm suffix {
884                 format = suffix
885                 delimiter = "@"
886         }
887
888         #  'username%realm'
889         #
890         realm realmpercent {
891                 format = suffix
892                 delimiter = "%"
893         }
894
895         #
896         #  'domain\user'
897         #
898         realm ntdomain {
899                 format = prefix
900                 delimiter = "\\"
901         }       
902
903         #  A simple value checking module
904         #
905         #  It can be used to check if an attribute value in the request
906         #  matches a (possibly multi valued) attribute in the check
907         #  items This can be used for example for caller-id
908         #  authentication.  For the module to run, both the request
909         #  attribute and the check items attribute must exist
910         #
911         #  i.e.
912         #  A user has an ldap entry with 2 radiusCallingStationId
913         #  attributes with values "12345678" and "12345679".  If we
914         #  enable rlm_checkval, then any request which contains a
915         #  Calling-Station-Id with one of those two values will be
916         #  accepted.  Requests with other values for
917         #  Calling-Station-Id will be rejected.
918         #
919         #  Regular expressions in the check attribute value are allowed
920         #  as long as the operator is '=~'
921         #
922         checkval {
923                 # The attribute to look for in the request
924                 item-name = Calling-Station-Id
925
926                 # The attribute to look for in check items. Can be multi valued
927                 check-name = Calling-Station-Id
928
929                 # The data type. Can be
930                 # string,integer,ipaddr,date,abinary,octets
931                 data-type = string
932
933                 # If set to yes and we dont find the item-name attribute in the
934                 # request then we send back a reject
935                 # DEFAULT is no
936                 #notfound-reject = no
937         }
938         
939         #  rewrite arbitrary packets.  Useful in accounting and authorization.
940         #
941         #
942         #  The module can also use the Rewrite-Rule attribute. If it
943         #  is set and matches the name of the module instance, then
944         #  that module instance will be the only one which runs.
945         #
946         #  Also if new_attribute is set to yes then a new attribute
947         #  will be created containing the value replacewith and it
948         #  will be added to searchin (packet, reply, proxy, proxy_reply or config).
949         # searchfor,ignore_case and max_matches will be ignored in that case.
950         #
951         # Backreferences are supported: %{0} will contain the string the whole match
952         # and %{1} to %{8} will contain the contents of the 1st to the 8th parentheses
953         #
954         # If max_matches is greater than one the backreferences will correspond to the
955         # first match
956
957         #
958         #attr_rewrite sanecallerid {
959         #       attribute = Called-Station-Id
960                 # may be "packet", "reply", "proxy", "proxy_reply" or "config"
961         #       searchin = packet
962         #       searchfor = "[+ ]"
963         #       replacewith = ""
964         #       ignore_case = no
965         #       new_attribute = no
966         #       max_matches = 10
967         #       ## If set to yes then the replace string will be appended to the original string
968         #       append = no
969         #}
970
971         # Preprocess the incoming RADIUS request, before handing it off
972         # to other modules.
973         #
974         #  This module processes the 'huntgroups' and 'hints' files.
975         #  In addition, it re-writes some weird attributes created
976         #  by some NASes, and converts the attributes into a form which
977         #  is a little more standard.
978         #
979         preprocess {
980                 huntgroups = ${confdir}/huntgroups
981                 hints = ${confdir}/hints
982
983                 # This hack changes Ascend's wierd port numberings
984                 # to standard 0-??? port numbers so that the "+" works
985                 # for IP address assignments.
986                 with_ascend_hack = no
987                 ascend_channels_per_line = 23
988
989                 # Windows NT machines often authenticate themselves as
990                 # NT_DOMAIN\username
991                 #
992                 # If this is set to 'yes', then the NT_DOMAIN portion
993                 # of the user-name is silently discarded.
994                 #
995                 # This configuration entry SHOULD NOT be used.
996                 # See the "realms" module for a better way to handle
997                 # NT domains.
998                 with_ntdomain_hack = no
999
1000                 # Specialix Jetstream 8500 24 port access server.
1001                 #
1002                 # If the user name is 10 characters or longer, a "/"
1003                 # and the excess characters after the 10th are
1004                 # appended to the user name.
1005                 #
1006                 # If you're not running that NAS, you don't need
1007                 # this hack.
1008                 with_specialix_jetstream_hack = no
1009
1010                 # Cisco (and Quintum in Cisco mode) sends it's VSA attributes
1011                 # with the attribute name *again* in the string, like:
1012                 #
1013                 #   H323-Attribute = "h323-attribute=value".
1014                 #
1015                 # If this configuration item is set to 'yes', then
1016                 # the redundant data in the the attribute text is stripped
1017                 # out.  The result is:
1018                 #
1019                 #  H323-Attribute = "value"
1020                 #
1021                 # If you're not running a Cisco or Quintum NAS, you don't
1022                 # need this hack.
1023                 with_cisco_vsa_hack = no
1024         }
1025
1026         # Livingston-style 'users' file
1027         #
1028         files {
1029                 # The default key attribute to use for matches.  The content
1030                 # of this attribute is used to match the "name" of the
1031                 # entry.
1032                 #key = "%{Stripped-User-Name:-%{User-Name}}"
1033
1034                 usersfile = ${confdir}/users
1035                 acctusersfile = ${confdir}/acct_users
1036                 preproxy_usersfile = ${confdir}/preproxy_users
1037
1038                 #  If you want to use the old Cistron 'users' file
1039                 #  with FreeRADIUS, you should change the next line
1040                 #  to 'compat = cistron'.  You can the copy your 'users'
1041                 #  file from Cistron.
1042                 compat = no
1043         }
1044
1045         # Write a detailed log of all accounting records received.
1046         #
1047         detail {
1048                 #  Note that we do NOT use NAS-IP-Address here, as
1049                 #  that attribute MAY BE from the originating NAS, and
1050                 #  NOT from the proxy which actually sent us the
1051                 #  request.  The Client-IP-Address attribute is ALWAYS
1052                 #  the address of the client which sent us the
1053                 #  request.
1054                 #
1055                 #  The following line creates a new detail file for
1056                 #  every radius client (by IP address or hostname).
1057                 #  In addition, a new detail file is created every
1058                 #  day, so that the detail file doesn't have to go
1059                 #  through a 'log rotation'
1060                 #
1061                 #  If your detail files are large, you may also want
1062                 #  to add a ':%H' (see doc/variables.txt) to the end
1063                 #  of it, to create a new detail file every hour, e.g.:
1064                 #
1065                 #   ..../detail-%Y%m%d:%H
1066                 #
1067                 #  This will create a new detail file for every hour.
1068                 #
1069                 detailfile = ${radacctdir}/%{Client-IP-Address}/detail-%Y%m%d
1070
1071                 #
1072                 #  The Unix-style permissions on the 'detail' file.
1073                 #
1074                 #  The detail file often contains secret or private
1075                 #  information about users.  So by keeping the file
1076                 #  permissions restrictive, we can prevent unwanted
1077                 #  people from seeing that information.
1078                 detailperm = 0600
1079
1080                 #
1081                 #  Every entry in th edetail file has a header which
1082                 #  is a timestamp.  By default, we use the ctime
1083                 #  format (see "man ctime" for details).
1084                 #
1085                 #  The header can be customized by editing this
1086                 #  string.  See "doc/variables.txt" for a description
1087                 #  of what can be put here.
1088                 #
1089                 header = "%t"
1090
1091                 #
1092                 # Certain attributes such as User-Password may be
1093                 # "sensitive", so they should not be printed in the
1094                 # detail file.  This section lists the attributes
1095                 # that should be suppressed.
1096                 #
1097                 # The attributes should be listed one to a line.
1098                 #
1099                 #suppress {
1100                         # User-Password
1101                 #}
1102
1103         }
1104
1105         #
1106         #  Many people want to log authentication requests.
1107         #  Rather than modifying the server core to print out more
1108         #  messages, we can use a different instance of the 'detail'
1109         #  module, to log the authentication requests to a file.
1110         #
1111         #  You will also need to un-comment the 'auth_log' line
1112         #  in the 'authorize' section, below.
1113         #
1114         # detail auth_log {
1115                 # detailfile = ${radacctdir}/%{Client-IP-Address}/auth-detail-%Y%m%d
1116
1117                 #
1118                 #  This MUST be 0600, otherwise anyone can read
1119                 #  the users passwords!
1120                 # detailperm = 0600
1121         # }
1122
1123         #
1124         #  This module logs authentication reply packets sent
1125         #  to a NAS.  Both Access-Accept and Access-Reject packets
1126         #  are logged.
1127         #
1128         #  You will also need to un-comment the 'reply_log' line
1129         #  in the 'post-auth' section, below.
1130         #
1131         # detail reply_log {
1132                 # detailfile = ${radacctdir}/%{Client-IP-Address}/reply-detail-%Y%m%d
1133
1134                 #
1135                 #  This MUST be 0600, otherwise anyone can read
1136                 #  the users passwords!
1137                 # detailperm = 0600
1138         # }
1139
1140         #
1141         #  This module logs packets proxied to a home server.
1142         #
1143         #  You will also need to un-comment the 'pre_proxy_log' line
1144         #  in the 'pre-proxy' section, below.
1145         #
1146         # detail pre_proxy_log {
1147                 # detailfile = ${radacctdir}/%{Client-IP-Address}/pre-proxy-detail-%Y%m%d
1148
1149                 #
1150                 #  This MUST be 0600, otherwise anyone can read
1151                 #  the users passwords!
1152                 # detailperm = 0600
1153         # }
1154
1155         #
1156         #  This module logs response packets from a home server.
1157         #
1158         #  You will also need to un-comment the 'post_proxy_log' line
1159         #  in the 'post-proxy' section, below.
1160         #
1161         # detail post_proxy_log {
1162                 # detailfile = ${radacctdir}/%{Client-IP-Address}/post-proxy-detail-%Y%m%d
1163
1164                 #
1165                 #  This MUST be 0600, otherwise anyone can read
1166                 #  the users passwords!
1167                 # detailperm = 0600
1168         # }
1169
1170         #
1171         #  The rlm_sql_log module appends the SQL queries in a log
1172         #  file which is read later by the radsqlrelay program.
1173         #
1174         #  This module only performs the dynamic expansion of the
1175         #  variables found in the SQL statements. No operation is
1176         #  executed on the database server. (this could be done
1177         #  later by an external program) That means the module is
1178         #  useful only with non-"SELECT" statements.
1179         #
1180         #  See rlm_sql_log(5) manpage.
1181         #
1182 #       sql_log {
1183 #               path = ${radacctdir}/sql-relay
1184 #               acct_table = "radacct"
1185 #               postauth_table = "radpostauth"
1186 #
1187 #               Start = "INSERT INTO ${acct_table} (AcctSessionId, UserName, \
1188 #                NASIPAddress, FramedIPAddress, AcctStartTime, AcctStopTime, \
1189 #                AcctSessionTime, AcctTerminateCause) VALUES                 \
1190 #                ('%{Acct-Session-Id}', '%{User-Name}', '%{NAS-IP-Address}', \
1191 #                '%{Framed-IP-Address}', '%S', '0', '0', '');"
1192 #               Stop = "INSERT INTO ${acct_table} (AcctSessionId, UserName,  \
1193 #                NASIPAddress, FramedIPAddress, AcctStartTime, AcctStopTime, \
1194 #                AcctSessionTime, AcctTerminateCause) VALUES                 \
1195 #                ('%{Acct-Session-Id}', '%{User-Name}', '%{NAS-IP-Address}', \
1196 #                '%{Framed-IP-Address}', '0', '%S', '%{Acct-Session-Time}',  \
1197 #                '%{Acct-Terminate-Cause}');"
1198 #               Alive = "INSERT INTO ${acct_table} (AcctSessionId, UserName, \
1199 #                NASIPAddress, FramedIPAddress, AcctStartTime, AcctStopTime, \
1200 #                AcctSessionTime, AcctTerminateCause) VALUES                 \
1201 #                ('%{Acct-Session-Id}', '%{User-Name}', '%{NAS-IP-Address}', \
1202 #                '%{Framed-IP-Address}', '0', '0', '%{Acct-Session-Time}','');"
1203 #
1204 #               Post-Auth = "INSERT INTO ${postauth_table}                   \
1205 #                (user, pass, reply, date) VALUES                            \
1206 #                ('%{User-Name}', '%{User-Password:-Chap-Password}',         \
1207 #                '%{reply:Packet-Type}', '%S');"
1208 #       }
1209
1210         #
1211         #  Create a unique accounting session Id.  Many NASes re-use
1212         #  or repeat values for Acct-Session-Id, causing no end of
1213         #  confusion.
1214         #
1215         #  This module will add a (probably) unique session id 
1216         #  to an accounting packet based on the attributes listed
1217         #  below found in the packet.  See doc/rlm_acct_unique for
1218         #  more information.
1219         #
1220         acct_unique {
1221                 key = "User-Name, Acct-Session-Id, NAS-IP-Address, Client-IP-Address, NAS-Port"
1222         }
1223
1224
1225         #  Include another file that has the SQL-related configuration.
1226         #  This is another file only because it tends to be big.
1227         #
1228         $INCLUDE  ${confdir}/sql.conf
1229
1230
1231         #  For Cisco VoIP specific accounting with Postgresql,
1232         #  use:         ${confdir}/sql/postgresql-voip-postpaid.conf
1233         #
1234         #  You will also need the sql schema from:
1235         #        src/billing/cisco_h323_db_schema-postgres.sql
1236         #  Note: This config can be use AS WELL AS the standard sql
1237         #  config if you need SQL based Auth
1238         
1239
1240         #  Write a 'utmp' style file, of which users are currently
1241         #  logged in, and where they've logged in from.
1242         #
1243         #  This file is used mainly for Simultaneous-Use checking,
1244         #  and also 'radwho', to see who's currently logged in.
1245         #
1246         radutmp {
1247                 #  Where the file is stored.  It's not a log file,
1248                 #  so it doesn't need rotating.
1249                 #
1250                 filename = ${logdir}/radutmp
1251
1252                 #  The field in the packet to key on for the
1253                 #  'user' name,  If you have other fields which you want
1254                 #  to use to key on to control Simultaneous-Use,
1255                 #  then you can use them here.
1256                 #
1257                 #  Note, however, that the size of the field in the
1258                 #  'utmp' data structure is small, around 32
1259                 #  characters, so that will limit the possible choices
1260                 #  of keys.
1261                 #
1262                 #  You may want instead: %{Stripped-User-Name:-%{User-Name}}
1263                 username = %{User-Name}
1264
1265
1266                 #  Whether or not we want to treat "user" the same
1267                 #  as "USER", or "User".  Some systems have problems
1268                 #  with case sensitivity, so this should be set to
1269                 #  'no' to enable the comparisons of the key attribute
1270                 #  to be case insensitive.
1271                 #
1272                 case_sensitive = yes
1273
1274                 #  Accounting information may be lost, so the user MAY
1275                 #  have logged off of the NAS, but we haven't noticed.
1276                 #  If so, we can verify this information with the NAS,
1277                 #
1278                 #  If we want to believe the 'utmp' file, then this
1279                 #  configuration entry can be set to 'no'.
1280                 #
1281                 check_with_nas = yes            
1282
1283                 # Set the file permissions, as the contents of this file
1284                 # are usually private.
1285                 perm = 0600
1286
1287                 callerid = "yes"
1288         }
1289
1290         # "Safe" radutmp - does not contain caller ID, so it can be
1291         # world-readable, and radwho can work for normal users, without
1292         # exposing any information that isn't already exposed by who(1).
1293         #
1294         # This is another 'instance' of the radutmp module, but it is given
1295         # then name "sradutmp" to identify it later in the "accounting"
1296         # section.
1297         radutmp sradutmp {
1298                 filename = ${logdir}/sradutmp
1299                 perm = 0644
1300                 callerid = "no"
1301         }
1302
1303         # attr_filter - filters the attributes received in replies from
1304         # proxied servers, to make sure we send back to our RADIUS client
1305         # only allowed attributes.
1306         attr_filter attr_filter.post-proxy {
1307                 attrsfile = ${confdir}/attrs
1308         }
1309
1310         # attr_filter - filters the attributes in the packets we send to
1311         # the RADIUS home servers.
1312         attr_filter attr_filter.pre-proxy {
1313                 attrsfile = ${confdir}/attrs.pre-proxy
1314         }
1315
1316         #  counter module:
1317         #  This module takes an attribute (count-attribute).
1318         #  It also takes a key, and creates a counter for each unique
1319         #  key.  The count is incremented when accounting packets are
1320         #  received by the server.  The value of the increment depends
1321         #  on the attribute type.
1322         #  If the attribute is Acct-Session-Time or of an integer type we add
1323         #  the value of the attribute. If it is anything else we increase the
1324         #  counter by one.
1325         #
1326         #  The 'reset' parameter defines when the counters are all reset to
1327         #  zero.  It can be hourly, daily, weekly, monthly or never.
1328         #
1329         #  hourly: Reset on 00:00 of every hour
1330         #  daily: Reset on 00:00:00 every day
1331         #  weekly: Reset on 00:00:00 on sunday
1332         #  monthly: Reset on 00:00:00 of the first day of each month
1333         #
1334         #  It can also be user defined. It should be of the form:
1335         #  num[hdwm] where:
1336         #  h: hours, d: days, w: weeks, m: months
1337         #  If the letter is ommited days will be assumed. In example:
1338         #  reset = 10h (reset every 10 hours)
1339         #  reset = 12  (reset every 12 days)
1340         #
1341         #
1342         #  The check-name attribute defines an attribute which will be
1343         #  registered by the counter module and can be used to set the
1344         #  maximum allowed value for the counter after which the user
1345         #  is rejected.
1346         #  Something like:
1347         #
1348         #  DEFAULT Max-Daily-Session := 36000
1349         #          Fall-Through = 1
1350         #
1351         #  You should add the counter module in the instantiate
1352         #  section so that it registers check-name before the files
1353         #  module reads the users file.
1354         #
1355         #  If check-name is set and the user is to be rejected then we
1356         #  send back a Reply-Message and we log a Failure-Message in
1357         #  the radius.log
1358         #  If the count attribute is Acct-Session-Time then on each login
1359         #  we send back the remaining online time as a Session-Timeout attribute
1360         #  ELSE and if the reply-name is set, we send back that attribute.
1361         #  The reply-name attribute MUST be of an integer type.
1362         #
1363         #  The counter-name can also be used instead of using the check-name
1364         #  like below:
1365         #
1366         #  DEFAULT  Daily-Session-Time > 3600, Auth-Type = Reject
1367         #      Reply-Message = "You've used up more than one hour today"
1368         #
1369         #  The allowed-servicetype attribute can be used to only take
1370         #  into account specific sessions. For example if a user first
1371         #  logs in through a login menu and then selects ppp there will
1372         #  be two sessions. One for Login-User and one for Framed-User
1373         #  service type. We only need to take into account the second one.
1374         #
1375         #  The module should be added in the instantiate, authorize and
1376         #  accounting sections.  Make sure that in the authorize
1377         #  section it comes after any module which sets the
1378         #  'check-name' attribute.
1379         #
1380         counter daily {
1381                 filename = ${raddbdir}/db.daily
1382                 key = User-Name
1383                 count-attribute = Acct-Session-Time
1384                 reset = daily
1385                 counter-name = Daily-Session-Time
1386                 check-name = Max-Daily-Session
1387                 reply-name = Session-Timeout
1388                 allowed-servicetype = Framed-User
1389                 cache-size = 5000
1390         }
1391
1392         #
1393         #  This module is an SQL enabled version of the counter module.
1394         #
1395         #  Rather than maintaining seperate (GDBM) databases of
1396         #  accounting info for each counter, this module uses the data
1397         #  stored in the raddacct table by the sql modules. This
1398         #  module NEVER does any database INSERTs or UPDATEs.  It is
1399         #  totally dependent on the SQL module to process Accounting
1400         #  packets.
1401         #
1402         #  The 'sqlmod_inst' parameter holds the instance of the sql
1403         #  module to use when querying the SQL database. Normally it
1404         #  is just "sql".  If you define more and one SQL module
1405         #  instance (usually for failover situations), you can
1406         #  specify which module has access to the Accounting Data
1407         #  (radacct table).
1408         #
1409         #  The 'reset' parameter defines when the counters are all
1410         #  reset to zero.  It can be hourly, daily, weekly, monthly or
1411         #  never.  It can also be user defined. It should be of the
1412         #  form:
1413         #       num[hdwm] where:
1414         #       h: hours, d: days, w: weeks, m: months
1415         #       If the letter is ommited days will be assumed. In example:
1416         #       reset = 10h (reset every 10 hours)
1417         #       reset = 12  (reset every 12 days)
1418         #
1419         #  The 'key' parameter specifies the unique identifier for the
1420         #  counter records (usually 'User-Name').
1421         #
1422         #  The 'query' parameter specifies the SQL query used to get
1423         #  the current Counter value from the database. There are 3
1424         #  parameters that can be used in the query:
1425         #               %k      'key' parameter
1426         #               %b      unix time value of beginning of reset period
1427         #               %e      unix time value of end of reset period
1428         #
1429         #  The 'check-name' parameter is the name of the 'check'
1430         #  attribute to use to access the counter in the 'users' file
1431         #  or SQL radcheck or radcheckgroup tables.
1432         #
1433         #  DEFAULT  Max-Daily-Session > 3600, Auth-Type = Reject
1434         #      Reply-Message = "You've used up more than one hour today"
1435         #
1436         sqlcounter dailycounter {
1437                 counter-name = Daily-Session-Time
1438                 check-name = Max-Daily-Session
1439                 reply-name = Session-Timeout
1440                 sqlmod-inst = sql
1441                 key = User-Name
1442                 reset = daily
1443
1444                 # This query properly handles calls that span from the
1445                 # previous reset period into the current period but
1446                 # involves more work for the SQL server than those
1447                 # below
1448                 # For mysql:
1449                 query = "SELECT SUM(AcctSessionTime - \
1450                  GREATEST((%b - UNIX_TIMESTAMP(AcctStartTime)), 0)) \
1451                  FROM radacct WHERE UserName='%{%k}' AND \
1452                  UNIX_TIMESTAMP(AcctStartTime) + AcctSessionTime > '%b'"
1453
1454                 # For postgresql:
1455 #               query = "SELECT SUM(AcctSessionTime - \
1456 #                GREATER((%b - AcctStartTime::ABSTIME::INT4), 0)) \
1457 #                FROM radacct WHERE UserName='%{%k}' AND \
1458 #                AcctStartTime::ABSTIME::INT4 + AcctSessionTime > '%b'"
1459
1460                 # This query ignores calls that started in a previous
1461                 # reset period and continue into into this one. But it
1462                 # is a little easier on the SQL server
1463                 # For mysql:
1464 #               query = "SELECT SUM(AcctSessionTime) FROM radacct WHERE \
1465 #                UserName='%{%k}' AND AcctStartTime > FROM_UNIXTIME('%b')"
1466
1467                 # For postgresql:
1468 #               query = "SELECT SUM(AcctSessionTime) FROM radacct WHERE \
1469 #                UserName='%{%k}' AND AND AcctStartTime::ABSTIME::INT4 > '%b'"
1470
1471                 # This query is the same as above, but demonstrates an
1472                 # additional counter parameter '%e' which is the
1473                 # timestamp for the end of the period
1474                 # For mysql:
1475 #               query = "SELECT SUM(AcctSessionTime) FROM radacct \
1476 #                WHERE UserName='%{%k}' AND AcctStartTime BETWEEN \
1477 #                FROM_UNIXTIME('%b') AND FROM_UNIXTIME('%e')"
1478
1479                 # For postgresql:
1480 #               query = "SELECT SUM(AcctSessionTime) FROM radacct \
1481 #                WHERE UserName='%{%k}' AND AcctStartTime::ABSTIME::INT4 \
1482 #                BETWEEN '%b' AND '%e'"
1483         }
1484
1485         sqlcounter monthlycounter {
1486                 counter-name = Monthly-Session-Time
1487                 check-name = Max-Monthly-Session
1488                 reply-name = Session-Timeout
1489                 sqlmod-inst = sql
1490                 key = User-Name
1491                 reset = monthly
1492
1493                 # This query properly handles calls that span from the
1494                 # previous reset period into the current period but
1495                 # involves more work for the SQL server than those
1496                 # below
1497                 # The same notes above about the differences between mysql
1498                 # versus postgres queries apply here.
1499                 query = "SELECT SUM(AcctSessionTime - \
1500                  GREATEST((%b - UNIX_TIMESTAMP(AcctStartTime)), 0)) \
1501                  FROM radacct WHERE UserName='%{%k}' AND \
1502                  UNIX_TIMESTAMP(AcctStartTime) + AcctSessionTime > '%b'"
1503
1504                 # This query ignores calls that started in a previous
1505                 # reset period and continue into into this one. But it
1506                 # is a little easier on the SQL server
1507 #               query = "SELECT SUM(AcctSessionTime) FROM radacct WHERE \
1508 #                UserName='%{%k}' AND AcctStartTime > FROM_UNIXTIME('%b')"
1509
1510                 # This query is the same as above, but demonstrates an
1511                 # additional counter parameter '%e' which is the
1512                 # timestamp for the end of the period
1513 #               query = "SELECT SUM(AcctSessionTime) FROM radacct \
1514 #                WHERE UserName='%{%k}' AND AcctStartTime BETWEEN \
1515 #                FROM_UNIXTIME('%b') AND FROM_UNIXTIME('%e')"
1516         }
1517
1518         #
1519         # The "always" module is here for debugging purposes. Each
1520         # instance simply returns the same result, always, without
1521         # doing anything.
1522         always fail {
1523                 rcode = fail
1524         }
1525         always reject {
1526                 rcode = reject
1527         }
1528         always ok {
1529                 rcode = ok
1530                 simulcount = 0
1531                 mpp = no
1532         }
1533
1534         #
1535         #  The 'expression' module currently has no configuration.
1536         #
1537         #  This module is useful only for 'xlat'.  To use it,
1538         #  put 'exec' into the 'instantiate' section.  You can then
1539         #  do dynamic translation of attributes like:
1540         #
1541         #  Attribute-Name = `%{expr:2 + 3 + %{exec: uid -u}}`
1542         #
1543         #  The value of the attribute will be replaced with the output
1544         #  of the program which is executed.  Due to RADIUS protocol
1545         #  limitations, any output over 253 bytes will be ignored.
1546         #
1547         #  The module also registers a few paircompare functions
1548         expr {
1549         }
1550
1551         #
1552         #  The 'digest' module currently has no configuration.
1553         #
1554         #  "Digest" authentication against a Cisco SIP server.
1555         #  See 'doc/rfc/draft-sterman-aaa-sip-00.txt' for details
1556         #  on performing digest authentication for Cisco SIP servers.
1557         #
1558         digest {
1559         }
1560
1561         #
1562         # The expiration module. This handles the Expiration attribute
1563         # It should be included in the *end* of the authorize section
1564         # in order to handle user Expiration. It should also be included
1565         # in the instantiate section in order to register the Expiration
1566         # compare function
1567         #
1568         expiration {
1569                 #
1570                 # The Reply-Message which will be sent back in case the
1571                 # account has expired. Dynamic substitution is supported
1572                 #
1573                 reply-message = "Password Has Expired\r\n" 
1574 #               reply-message = "Your account has expired, %{User-Name}\r\n"
1575         }
1576
1577         # The logintime module. This handles the Login-Time,
1578         # Current-Time, and Time-Of-Day attributes.  It should be
1579         # included in the *end* of the authorize section in order to
1580         # handle Login-Time checks. It should also be included in the
1581         # instantiate section in order to register the Current-Time
1582         # and Time-Of-Day comparison functions.
1583         #
1584         # When the Login-Time attribute is set to some value, and the
1585         # user has bene permitted to log in, a Session-Timeout is
1586         # calculated based on the remaining time.  See "doc/README".
1587         #
1588         logintime {
1589                 #
1590                 # The Reply-Message which will be sent back in case
1591                 # the account is calling outside of the allowed
1592                 # timespan. Dynamic substitution is supported.
1593                 #
1594                 reply-message = "You are calling outside your allowed timespan\r\n"
1595 #               reply-message = "Outside allowed timespan (%{check:Login-Time}), %{User-Name}\r\n"
1596
1597                 # The minimum timeout (in seconds) a user is allowed
1598                 # to have. If the calculated timeout is lower we don't
1599                 # allow the logon. Some NASes do not handle values
1600                 # lower than 60 seconds well.
1601                 minimum-timeout = 60
1602         }
1603         #
1604         #  Execute external programs
1605         #
1606         #  This module is useful only for 'xlat'.  To use it,
1607         #  put 'exec' into the 'instantiate' section.  You can then
1608         #  do dynamic translation of attributes like:
1609         #
1610         #  Attribute-Name = `%{exec:/path/to/program args}`
1611         #
1612         #  The value of the attribute will be replaced with the output
1613         #  of the program which is executed.  Due to RADIUS protocol
1614         #  limitations, any output over 253 bytes will be ignored.
1615         #
1616         #  The RADIUS attributes from the user request will be placed
1617         #  into environment variables of the executed program, as
1618         #  described in 'doc/variables.txt'
1619         #
1620         exec {
1621                 wait = yes
1622                 input_pairs = request
1623                 shell_escape = yes
1624                 output = none
1625         }
1626
1627         #
1628         #  This is a more general example of the execute module.
1629         #
1630         #  This one is called "echo".
1631         #
1632         #  Attribute-Name = `%{echo:/path/to/program args}`
1633         #
1634         #  If you wish to execute an external program in more than
1635         #  one section (e.g. 'authorize', 'pre_proxy', etc), then it
1636         #  is probably best to define a different instance of the
1637         #  'exec' module for every section.     
1638         #
1639         #  The return value of the program run determines the result
1640         #  of the exec instance call as follows:
1641         #  (See doc/configurable_failover for details)
1642         #
1643         #  < 0 : fail      the module failed
1644         #  = 0 : ok        the module succeeded
1645         #  = 1 : reject    the module rejected the user
1646         #  = 2 : fail      the module failed
1647         #  = 3 : ok        the module succeeded
1648         #  = 4 : handled   the module has done everything to handle the request
1649         #  = 5 : invalid   the user's configuration entry was invalid
1650         #  = 6 : userlock  the user was locked out
1651         #  = 7 : notfound  the user was not found
1652         #  = 8 : noop      the module did nothing
1653         #  = 9 : updated   the module updated information in the request
1654         #  > 9 : fail      the module failed
1655         #
1656         exec echo {
1657                 #
1658                 #  Wait for the program to finish.
1659                 #
1660                 #  If we do NOT wait, then the program is "fire and
1661                 #  forget", and any output attributes from it are ignored.
1662                 #
1663                 #  If we are looking for the program to output
1664                 #  attributes, and want to add those attributes to the
1665                 #  request, then we MUST wait for the program to
1666                 #  finish, and therefore set 'wait=yes'
1667                 #
1668                 # allowed values: {no, yes}
1669                 wait = yes
1670
1671                 #
1672                 #  The name of the program to execute, and it's
1673                 #  arguments.  Dynamic translation is done on this
1674                 #  field, so things like the following example will
1675                 #  work.
1676                 #
1677                 program = "/bin/echo %{User-Name}"
1678
1679                 #
1680                 #  The attributes which are placed into the
1681                 #  environment variables for the program.
1682                 #
1683                 #  Allowed values are:
1684                 #
1685                 #       request         attributes from the request
1686                 #       config          attributes from the configuration items list
1687                 #       reply           attributes from the reply
1688                 #       proxy-request   attributes from the proxy request
1689                 #       proxy-reply     attributes from the proxy reply
1690                 #
1691                 #  Note that some attributes may not exist at some
1692                 #  stages.  e.g. There may be no proxy-reply
1693                 #  attributes if this module is used in the
1694                 #  'authorize' section.
1695                 #
1696                 input_pairs = request
1697
1698                 #
1699                 #  Where to place the output attributes (if any) from
1700                 #  the executed program.  The values allowed, and the
1701                 #  restrictions as to availability, are the same as
1702                 #  for the input_pairs.
1703                 #
1704                 output_pairs = reply
1705
1706                 #
1707                 #  When to execute the program.  If the packet
1708                 #  type does NOT match what's listed here, then
1709                 #  the module does NOT execute the program.
1710                 #
1711                 #  For a list of allowed packet types, see
1712                 #  the 'dictionary' file, and look for VALUEs
1713                 #  of the Packet-Type attribute.
1714                 #
1715                 #  By default, the module executes on ANY packet.
1716                 #  Un-comment out the following line to tell the
1717                 #  module to execute only if an Access-Accept is
1718                 #  being sent to the NAS.
1719                 #
1720                 #packet_type = Access-Accept
1721
1722                 #
1723                 #  Should we escape the environment variables?
1724                 #  
1725                 #  If this is set, all the RADIUS attributes
1726                 #  are capitalised and dashes replaced with
1727                 #  underscores. Also, RADIUS values are surrounded
1728                 #  with double-quotes.
1729                 #
1730                 #  That is to say: User-Name=BobUser => USER_NAME="BobUser"
1731                 shell_escape = yes
1732
1733         }
1734
1735         #  Do server side ip pool management. Should be added in post-auth and
1736         #  accounting sections.
1737         #
1738         #  The module also requires the existance of the Pool-Name
1739         #  attribute. That way the administrator can add the Pool-Name
1740         #  attribute in the user profiles and use different pools
1741         #  for different users. The Pool-Name attribute is a *check* item not
1742         #  a reply item.
1743         #  The Pool-Name should be set to the ippool module instance name or to
1744         #  DEFAULT to match any module.
1745         #
1746         # Example:
1747         # radiusd.conf: ippool students { [...] }
1748         #               ippool teachers { [...] }
1749         # users file  : DEFAULT Group == students, Pool-Name := "students"
1750         #               DEFAULT Group == teachers, Pool-Name := "teachers"
1751         #               DEFAULT Group == other, Pool-Name := "DEFAULT"
1752         #
1753         # ********* IF YOU CHANGE THE RANGE PARAMETERS YOU MUST *********
1754         # ********* THEN ERASE THE DB FILES                     *********
1755         #
1756         ippool main_pool {
1757
1758                 #  range-start,range-stop: The start and end ip
1759                 #  addresses for the ip pool
1760                 range-start = 192.168.1.1
1761                 range-stop = 192.168.3.254
1762
1763                 #  netmask: The network mask used for the ip's
1764                 netmask = 255.255.255.0
1765
1766                 #  cache-size: The gdbm cache size for the db
1767                 #  files. Should be equal to the number of ip's
1768                 #  available in the ip pool
1769                 cache-size = 800
1770
1771                 # session-db: The main db file used to allocate ip's to clients
1772                 session-db = ${raddbdir}/db.ippool
1773
1774                 # ip-index: Helper db index file used in multilink
1775                 ip-index = ${raddbdir}/db.ipindex
1776
1777                 # override: Will this ippool override a Framed-IP-Address already set
1778                 override = no
1779
1780                 # maximum-timeout: If not zero specifies the maximum time in seconds an
1781                 # entry may be active. Default: 0
1782                 maximum-timeout = 0
1783
1784                 # The key to use for the session database (which holds the allocated ip's)
1785                 # normally it should just be the nas  ip/port (which is the default)
1786                 #key = "%{NAS-IP-Address} %{NAS-Port}"
1787         }
1788
1789         # $INCLUDE  ${confdir}/sqlippool.conf
1790
1791         # OTP token support.  Not included by default.
1792         # $INCLUDE  ${confdir}/otp.conf
1793
1794         #
1795         #  Implements Login-Time, Current-Time, and Time-Of-Day
1796         #
1797         logintime {
1798                 #
1799                 #  Don't worry about anything here for now..
1800                 #
1801         }
1802
1803         #
1804         #  Kerberos.  See doc/rlm_krb5 for minimal docs.
1805         #
1806 #       krb5 {
1807 #               keytab = /path/to/keytab
1808 #               service_principal = name_of_principle
1809 #       }
1810 }
1811
1812 # Instantiation
1813 #
1814 #  This section orders the loading of the modules.  Modules
1815 #  listed here will get loaded BEFORE the later sections like
1816 #  authorize, authenticate, etc. get examined.
1817 #
1818 #  This section is not strictly needed.  When a section like
1819 #  authorize refers to a module, it's automatically loaded and
1820 #  initialized.  However, some modules may not be listed in any
1821 #  of the following sections, so they can be listed here.
1822 #
1823 #  Also, listing modules here ensures that you have control over
1824 #  the order in which they are initalized.  If one module needs
1825 #  something defined by another module, you can list them in order
1826 #  here, and ensure that the configuration will be OK.
1827 #
1828 instantiate {
1829         #
1830         #  Allows the execution of external scripts.
1831         #  The entire command line (and output) must fit into 253 bytes.
1832         #
1833         #  e.g. Framed-Pool = `%{exec:/bin/echo foo}`
1834         exec
1835
1836         #
1837         #  The expression module doesn't do authorization,
1838         #  authentication, or accounting.  It only does dynamic
1839         #  translation, of the form:
1840         #
1841         #       Session-Timeout = `%{expr:2 + 3}`
1842         #
1843         #  So the module needs to be instantiated, but CANNOT be
1844         #  listed in any other section.  See 'doc/rlm_expr' for
1845         #  more information.
1846         #
1847         expr
1848
1849         #
1850         # We add the counter module here so that it registers
1851         # the check-name attribute before any module which sets
1852         # it
1853 #       daily
1854         expiration
1855         logintime
1856
1857         # subsections here can be thought of as "virtual" modules.
1858         #
1859         # e.g. If you have two redundant SQL servers, and you want to
1860         # use them in the authorize and accounting sections, you could
1861         # place a "redundant" block in each section, containing the
1862         # exact same text.  Or, you could uncomment the following
1863         # lines, and list "redundant_sql" in the authorize and
1864         # accounting sections.
1865         #
1866         #redundant redundant_sql {
1867         #       sql1
1868         #       sql2
1869         #}
1870 }
1871
1872 #  Authorization. First preprocess (hints and huntgroups files),
1873 #  then realms, and finally look in the "users" file.
1874 #
1875 #  The order of the realm modules will determine the order that
1876 #  we try to find a matching realm.
1877 #
1878 #  Make *sure* that 'preprocess' comes before any realm if you 
1879 #  need to setup hints for the remote radius server
1880 authorize {
1881         #
1882         #  The preprocess module takes care of sanitizing some bizarre
1883         #  attributes in the request, and turning them into attributes
1884         #  which are more standard.
1885         #
1886         #  It takes care of processing the 'raddb/hints' and the
1887         #  'raddb/huntgroups' files.
1888         #
1889         #  It also adds the %{Client-IP-Address} attribute to the request.
1890         preprocess
1891
1892         #
1893         #  If you want to have a log of authentication requests,
1894         #  un-comment the following line, and the 'detail auth_log'
1895         #  section, above.
1896 #       auth_log
1897
1898         #
1899         #  The chap module will set 'Auth-Type := CHAP' if we are
1900         #  handling a CHAP request and Auth-Type has not already been set
1901         chap
1902
1903         #
1904         #  If the users are logging in with an MS-CHAP-Challenge
1905         #  attribute for authentication, the mschap module will find
1906         #  the MS-CHAP-Challenge attribute, and add 'Auth-Type := MS-CHAP'
1907         #  to the request, which will cause the server to then use
1908         #  the mschap module for authentication.
1909         mschap
1910
1911         #
1912         #  Pull crypt'd passwords from /etc/passwd or /etc/shadow,
1913         #  using the system API's to get the password.  If you want
1914         #  to read /etc/passwd or /etc/shadow directly, see the
1915         #  passwd module, above.
1916         #
1917         unix
1918
1919         #
1920         #  If you have a Cisco SIP server authenticating against
1921         #  FreeRADIUS, uncomment the following line, and the 'digest'
1922         #  line in the 'authenticate' section.
1923 #       digest
1924
1925         #
1926         #  Look for IPASS style 'realm/', and if not found, look for
1927         #  '@realm', and decide whether or not to proxy, based on
1928         #  that.
1929 #       IPASS
1930
1931         #
1932         #  If you are using multiple kinds of realms, you probably
1933         #  want to set "ignore_null = yes" for all of them.
1934         #  Otherwise, when the first style of realm doesn't match,
1935         #  the other styles won't be checked.
1936         #
1937         suffix
1938 #       ntdomain
1939
1940         #
1941         #  This module takes care of EAP-MD5, EAP-TLS, and EAP-LEAP
1942         #  authentication.
1943         #
1944         #  It also sets the EAP-Type attribute in the request
1945         #  attribute list to the EAP type from the packet.
1946         eap
1947
1948         #
1949         #  Read the 'users' file
1950         files
1951
1952         #
1953         #  Look in an SQL database.  The schema of the database
1954         #  is meant to mirror the "users" file.
1955         #
1956         #  See "Authorization Queries" in sql.conf
1957 #       sql
1958
1959         #
1960         #  If you are using /etc/smbpasswd, and are also doing
1961         #  mschap authentication, the un-comment this line, and
1962         #  configure the 'etc_smbpasswd' module, above.
1963 #       etc_smbpasswd
1964
1965         #
1966         #  The ldap module will set Auth-Type to LDAP if it has not
1967         #  already been set
1968 #       ldap
1969
1970         #
1971         #  Enforce daily limits on time spent logged in.
1972 #       daily
1973
1974         #
1975         # Use the checkval module
1976 #       checkval
1977
1978         expiration
1979         logintime
1980
1981         #
1982         #  If no other module has claimed responsibility for
1983         #  authentication, then try to use PAP.  This allows the
1984         #  other modules listed above to add a "known good" password
1985         #  to the request, and to do nothing else.  The PAP module
1986         #  will then see that password, and use it to do PAP
1987         #  authentication.
1988         #
1989         #  This module should be listed last, so that the other modules
1990         #  get a chance to set Auth-Type for themselves.
1991         #
1992         pap
1993 }
1994
1995
1996 #  Authentication.
1997 #
1998 #
1999 #  This section lists which modules are available for authentication.
2000 #  Note that it does NOT mean 'try each module in order'.  It means
2001 #  that a module from the 'authorize' section adds a configuration
2002 #  attribute 'Auth-Type := FOO'.  That authentication type is then
2003 #  used to pick the apropriate module from the list below.
2004 #
2005
2006 #  In general, you SHOULD NOT set the Auth-Type attribute.  The server
2007 #  will figure it out on its own, and will do the right thing.  The
2008 #  most common side effect of erroneously setting the Auth-Type
2009 #  attribute is that one authentication method will work, but the
2010 #  others will not.
2011 #
2012 #  The common reasons to set the Auth-Type attribute by hand
2013 #  is to either forcibly reject the user, or forcibly accept him.
2014 #
2015 authenticate {
2016         #
2017         #  PAP authentication, when a back-end database listed
2018         #  in the 'authorize' section supplies a password.  The
2019         #  password can be clear-text, or encrypted.
2020         Auth-Type PAP {
2021                 pap
2022         }
2023
2024         #
2025         #  Most people want CHAP authentication
2026         #  A back-end database listed in the 'authorize' section
2027         #  MUST supply a CLEAR TEXT password.  Encrypted passwords
2028         #  won't work.
2029         Auth-Type CHAP {
2030                 chap
2031         }
2032
2033         #
2034         #  MSCHAP authentication.
2035         Auth-Type MS-CHAP {
2036                 mschap
2037         }
2038
2039         #
2040         #  If you have a Cisco SIP server authenticating against
2041         #  FreeRADIUS, uncomment the following line, and the 'digest'
2042         #  line in the 'authorize' section.
2043 #       digest
2044
2045         #
2046         #  Pluggable Authentication Modules.
2047 #       pam
2048
2049         #
2050         #  See 'man getpwent' for information on how the 'unix'
2051         #  module checks the users password.  Note that packets
2052         #  containing CHAP-Password attributes CANNOT be authenticated
2053         #  against /etc/passwd!  See the FAQ for details.
2054         #  
2055         unix
2056
2057         # Uncomment it if you want to use ldap for authentication
2058         #
2059         # Note that this means "check plain-text password against
2060         # the ldap database", which means that EAP won't work,
2061         # as it does not supply a plain-text password.
2062 #       Auth-Type LDAP {
2063 #               ldap
2064 #       }
2065
2066         #
2067         #  Allow EAP authentication.
2068         eap
2069 }
2070
2071
2072 #
2073 #  Pre-accounting.  Decide which accounting type to use.
2074 #
2075 preacct {
2076         preprocess
2077
2078         #
2079         #  Ensure that we have a semi-unique identifier for every
2080         #  request, and many NAS boxes are broken.
2081         acct_unique
2082
2083         #
2084         #  Look for IPASS-style 'realm/', and if not found, look for
2085         #  '@realm', and decide whether or not to proxy, based on
2086         #  that.
2087         #
2088         #  Accounting requests are generally proxied to the same
2089         #  home server as authentication requests.
2090 #       IPASS
2091         suffix
2092 #       ntdomain
2093
2094         #
2095         #  Read the 'acct_users' file
2096         files
2097 }
2098
2099 #
2100 #  Accounting.  Log the accounting data.
2101 #
2102 accounting {
2103         #
2104         #  Create a 'detail'ed log of the packets.
2105         #  Note that accounting requests which are proxied
2106         #  are also logged in the detail file.
2107         detail
2108 #       daily
2109
2110         #  Update the wtmp file
2111         #
2112         #  If you don't use "radlast", you can delete this line.
2113         unix
2114
2115         #
2116         #  For Simultaneous-Use tracking.
2117         #
2118         #  Due to packet losses in the network, the data here
2119         #  may be incorrect.  There is little we can do about it.
2120         radutmp
2121 #       sradutmp
2122
2123         #  Return an address to the IP Pool when we see a stop record.
2124 #       main_pool
2125
2126         #
2127         #  Log traffic to an SQL database.
2128         #
2129         #  See "Accounting queries" in sql.conf
2130 #       sql
2131
2132         #
2133         #  Instead of sending the query to the SQL server,
2134         #  write it into a log file.
2135         #
2136 #       sql_log
2137
2138         #  Cisco VoIP specific bulk accounting
2139 #       pgsql-voip
2140
2141 }
2142
2143
2144 #  Session database, used for checking Simultaneous-Use. Either the radutmp 
2145 #  or rlm_sql module can handle this.
2146 #  The rlm_sql module is *much* faster
2147 session {
2148         radutmp
2149
2150         #
2151         #  See "Simultaneous Use Checking Querie" in sql.conf
2152 #       sql
2153 }
2154
2155
2156 #  Post-Authentication
2157 #  Once we KNOW that the user has been authenticated, there are
2158 #  additional steps we can take.
2159 post-auth {
2160         #  Get an address from the IP Pool.
2161 #       main_pool
2162
2163         #
2164         #  If you want to have a log of authentication replies,
2165         #  un-comment the following line, and the 'detail reply_log'
2166         #  section, above.
2167 #       reply_log
2168
2169         #
2170         #  After authenticating the user, do another SQL query.
2171         #
2172         #  See "Authentication Logging Queries" in sql.conf
2173 #       sql
2174
2175         #
2176         #  Instead of sending the query to the SQL server,
2177         #  write it into a log file.
2178         #
2179 #       sql_log
2180
2181         #
2182         #  Un-comment the following if you have set
2183         #  'edir_account_policy_check = yes' in the ldap module sub-section of
2184         #  the 'modules' section.
2185         #
2186 #       ldap
2187         #
2188         #  Access-Reject packets are sent through the REJECT sub-section of the
2189         #  post-auth section.
2190         #  Uncomment the following and set the module name to the ldap instance
2191         #  name if you have set 'edir_account_policy_check = yes' in the ldap
2192         #  module sub-section of the 'modules' section.
2193         #
2194 #       Post-Auth-Type REJECT {
2195 #               insert-module-name-here
2196 #       }
2197
2198 }
2199
2200 #
2201 #  When the server decides to proxy a request to a home server,
2202 #  the proxied request is first passed through the pre-proxy
2203 #  stage.  This stage can re-write the request, or decide to
2204 #  cancel the proxy.
2205 #
2206 #  Only a few modules currently have this method.
2207 #
2208 pre-proxy {
2209 #       attr_rewrite
2210
2211         #  Uncomment the following line if you want to change attributes
2212         #  as defined in the preproxy_users file.
2213 #       files
2214
2215         #  Uncomment the following line if you want to filter requests
2216         #  sent to remote servers based on the rules defined in the
2217         #  'attrs.pre-proxy' file.
2218 #       attr_filter.pre-proxy
2219
2220         #  If you want to have a log of packets proxied to a home
2221         #  server, un-comment the following line, and the
2222         #  'detail pre_proxy_log' section, above.
2223 #       pre_proxy_log
2224 }
2225
2226 #
2227 #  When the server receives a reply to a request it proxied
2228 #  to a home server, the request may be massaged here, in the
2229 #  post-proxy stage.
2230 #
2231 post-proxy {
2232
2233         #  If you want to have a log of replies from a home server,
2234         #  un-comment the following line, and the 'detail post_proxy_log'
2235         #  section, above.
2236 #       post_proxy_log
2237
2238 #       attr_rewrite
2239
2240         #  Uncomment the following line if you want to filter replies from
2241         #  remote proxies based on the rules defined in the 'attrs' file.
2242 #       attr_filter.post-proxy
2243
2244         #
2245         #  If you are proxying LEAP, you MUST configure the EAP
2246         #  module, and you MUST list it here, in the post-proxy
2247         #  stage.
2248         #
2249         #  You MUST also use the 'nostrip' option in the 'realm'
2250         #  configuration.  Otherwise, the User-Name attribute
2251         #  in the proxied request will not match the user name
2252         #  hidden inside of the EAP packet, and the end server will
2253         #  reject the EAP request.
2254         #
2255         eap
2256 }