New build path variable
[freeradius.git] / raddb / experimental.conf
1 #
2 #  This file contains the configuration for experimental modules.
3 #
4 #  By default, it is NOT included in the build.
5 #
6 #  $Id$
7 #
8
9         # Configuration for the Python module.
10         #
11         # Where radiusd is a Python module, radiusd.py, and the
12         # function 'authorize' is called.  Here is a dummy piece
13         # of code:
14         # 
15         #       def authorize(params):
16         #           print params
17         #           return (5, ('Reply-Message', 'banned'))
18         #
19         # The RADIUS value-pairs are passed as a tuple of tuple
20         # pairs as the first argument, e.g. (('attribute1',
21         # 'value1'), ('attribute2', 'value2'))
22         #
23         # The function return is a tuple with the first element
24         # being the return value of the function.
25         # The 5 corresponds to RLM_MODULE_USERLOCK. I plan to
26         # write the return values as Python symbols to avoid
27         # confusion.
28         #
29         # The remaining tuple members are the string form of
30         # value-pairs which are passed on to pairmake().
31         #
32         python {
33                 mod_instantiate = radiusd_test
34                 func_instantiate = instantiate
35
36                 mod_authorize = radiusd_test
37                 func_authorize = authorize
38
39                 mod_accounting = radiusd_test
40                 func_accounting = accounting
41
42                 mod_pre_proxy = radiusd_test
43                 func_pre_proxy = pre_proxy
44
45                 mod_post_proxy = radiusd_test
46                 func_post_proxy = post_proxy
47
48                 mod_post_auth = radiusd_test
49                 func_post_auth = post_auth
50
51                 mod_recv_coa = radiusd_test
52                 func_recv_coa = recv_coa
53
54                 mod_send_coa = radiusd_test
55                 func_send_coa = send_coa
56
57                 mod_detach = radiusd_test
58                 func_detach = detach
59         }
60
61         
62         # Configuration for the example module.  Uncommenting it will cause it
63         # to get loaded and initialized, but should have no real effect as long
64         # it is not referencened in one of the autz/auth/preacct/acct sections
65         example {
66                 #  Boolean variable.
67                 # allowed values: {no, yes}
68                 boolean = yes
69
70                 #  An integer, of any value.
71                 integer = 16
72
73                 #  A string.
74                 string = "This is an example configuration string"
75
76                 # An IP address, either in dotted quad (1.2.3.4) or hostname
77                 # (example.com)
78                 ipaddr = 127.0.0.1
79
80                 # A subsection
81                 mysubsection {
82                         anotherinteger = 1000
83                         # They nest
84                         deeply nested {
85                                 string = "This is a different string"
86                         }
87                 }
88         }
89
90         #
91         #  To create a dbm users file, do:
92         #
93         #   cat test.users | rlm_dbm_parser -f /etc/raddb/users_db
94         #
95         #  Then add 'dbm' in 'authorize' section.
96         #
97         #  Note that even if the file has a ".db" or ".dbm" extension,
98         #  you may have to specify it here without that extension.  This
99         #  is because the DBM libraries "helpfully" add a ".db" to the
100         #  filename, but don't check if it's already there.
101         #
102         dbm {
103                 usersfile = ${confdir}/users_db
104         }
105
106         #
107         #  Perform NT-Domain authentication.  This only works
108         #  with PAP authentication.  That is, Authentication-Request
109         #  packets containing a User-Password attribute.
110         #
111         #  To use it, add 'smb' into the 'authenticate' section,
112         #  and then in another module (usually the 'users' file),
113         #  set 'Auth-Type := SMB'
114         #
115         #  WARNING: this module is not only experimental, it's also
116         #  a security threat. It's not recommended to use it until
117         #  it gets fixed.
118         #
119         smb {
120                 server = ntdomain.server.example.com
121                 backup = backup.server.example.com
122                 domain = NTDOMAIN
123         }
124
125         # See doc/rlm_fastusers before using this
126         # module or changing these values.
127         #
128         fastusers {
129                 usersfile = ${confdir}/users_fast
130                 hashsize = 1000
131                 compat = no
132                 # Reload the hash every 600 seconds (10mins)
133                 hash_reload = 600
134         }
135
136         # Caching module
137         #
138         # Should be added in the post-auth section (after all other modules)
139         # and in the authorize section (before any other modules)
140         #
141         # authorize {
142         #       caching {
143         #               ok = return
144         #       }
145         #       [... other modules ...]
146         # }
147         # post-auth {
148         #       [... other modules ...]
149         #       caching
150         # }
151         #
152         # The caching module will cache the Auth-Type and reply items
153         # and send them back on any subsequent requests for the same key
154         #
155         # Configuration:
156         #
157         # filename: The gdbm file to use for the cache database
158         #               (can be memory mapped for more speed)
159         #
160         # key: A string to xlat and use as a key. For instance,
161         #       "%{Acct-Unique-Session-Id}"
162         #
163         # post-auth: If we find a cached entry, set the post-auth to that value
164         #
165         # cache-ttl: The time to cache the entry. The same time format
166         #               as the counter module apply here.
167         #         num[hdwm] where:
168         #       h: hours, d: days, w: weeks, m: months
169         #       If the letter is ommited days will be assumed.
170         #       e.g. 1d == one day
171         #
172         # cache-size: The gdbm cache size to request (default 1000)
173         #
174         # hit-ratio: If set to non-zero we print out statistical
175         #       information after so many cache requests
176         #
177         # cache-rejects: Do we also cache rejects, or not? (default 'yes')
178         #
179         caching {
180                 filename = ${db_dir}/db.cache
181                 cache-ttl = 1d
182                 hit-ratio = 1000
183                 key = "%{Acct-Unique-Session-Id}"
184                 #post-auth = ""
185                 # cache-size = 2000
186                 # cache-rejects = yes
187         }
188
189
190         # Simple module for logging of Account packets to radiusd.log
191         # You need to declare it in the accounting section for it to work
192         acctlog {
193                 acctlog_update = ""
194                 acctlog_start = "Connect: [%{User-Name}] (did %{Called-Station-Id} cli %{Calling-Station-Id} port %{NAS-Port} ip %{Framed-IP-Address})"
195                 acctlog_stop = "Disconnect: [%{User-Name}] (did %{Called-Station-Id} cli %{Calling-Station-Id} port %{NAS-Port} ip %{Framed-IP-Address}) %{Acct-Session-Time} seconds"
196                 acctlog_on = "NAS %C (%{NAS-IP-Address}) just came online"
197                 acctlog_off = "NAS %C (%{NAS-IP-Address}) just went offline"
198         }
199
200         # Another implementation of the EAP module.
201         #
202         #  This module requires the libeap.so file from the hostap
203         #  software (http://hostap.epitest.fi/hostapd/).  It has been
204         #  tested on the development version of hostapd (0.6.1) ONLY.
205         #
206         #  In order to use it, you MUST build a "libeap.so" in hostapd,
207         #  which is not done by default.
208         #
209         #  You MUST also edit the file: src/modules/rlm_eap2/Makefile
210         #  to point to the location of the hostap include files.
211         #
212         #  This module CANNOT be used in the same way as the current
213         #  FreeRADIUS "eap" module.  There is NO way to look inside of
214         #  a tunneled request.  There is NO way to proxy a tunneled
215         #  request.  There is NO way to even look at the user name inside
216         #  of the tunneled request.  There is NO way to control the
217         #  choice of EAP types inside of the tunnel.  You MUST force
218         #  the server to choose "eap2" for authentication, because this
219         #  module has no "authorize" section.
220         #
221         #  If you want to use this module for experimentation, please
222         #  post your comments to the freeradius-devel list:
223         #
224         #    http://lists.freeradius.org/mailman/listinfo/freeradius-devel
225         #
226         #  If you want to use this module in a production (i.e. real-world)
227         #  environment:
228         #
229         #       !!! DO NOT USE IT IN A PRODUCTION ENVIRONMENT !!!
230         #
231         #  The module needs additional work to make it ready for
232         #  production use..  Please supply patches, or sponsor the
233         #  work by hiring a developer.  Do NOT ask when the work will
234         #  be done, because there is no plan to finish this module
235         #  unless there is demand for it.
236         #
237         eap2 {
238                 #  EAP types are chosen in the order that they are
239                 #  listed in this section.  There is no "default_eap_type"
240                 #  as with rlm_eap.  Instead, the *first* EAP type is
241                 #  used as the default type.
242                 #
243                 peap {
244                 }
245
246                 ttls {
247                 }
248
249                 #  This is the ONLY EAP type that has any configuration.
250                 #  All other EAP types have no configuration.
251                 #
252                 tls {
253                         ca_cert = ${confdir}/certs/ca.pem
254                         server_cert = ${confdir}/certs/server.pem
255                         private_key_file = ${confdir}/certs/server.pem
256                         private_key_password = whatever
257                 }
258
259                 #
260                 #  These next two methods do not supply keying material.
261                 #
262                 md5 {
263                 }
264
265                 mschapv2 {
266                 }
267
268                 #  LEAP is NOT supported by this module.
269                 #  Use the "eap" module instead.
270
271                 #  For other methods that MIGHT work, see the
272                 #  configuration of hostap.  The methods are statically
273                 #  linked in at compile time, and cannot be controlled
274                 #  here.
275         }
276
277         #  Configuration for experimental EAP types.  The sub-sections
278         #  can be copied into eap.conf.
279         eap {
280                 ikev2 {
281
282                 # Server auth type 
283                 # Allowed values are:
284                 #  cert   - for certificate based server authentication,
285                 #           other required settings for this type are
286                 #           'private_key_file' and 'certificate_file'
287                 #  secret - for shared secret based server authentication, 
288                 #           other required settings for this type is 'id'
289                 # Default value of this option is 'secret'
290         #     server_authtype=cert
291
292                 # Allowed default client auth types
293                 # Allowed values are:
294                 #   secret - for shared secret based client     authentication
295                 #   cert   - for certificate based client authentication
296                 #   both   - shared secret and certificate is allowed
297                 #   none   - authentication will always fail
298                 # Default value for this option is 'both'. This option could
299                 #  be overwritten within 'usersfile' file by EAP-IKEv2-Auth
300                 #  option. 
301         #   default_authtype = both
302
303                 # path to trusted CA certificate file
304                 CA_file="/path/to/CA/cacert.pem"
305
306                 # path to CRL file, if not set, then there will be no
307                 #  checks against CRL
308         #   crl_file="/path/to/crl.pem"
309
310                 # path to file with user settings 
311                 #
312                 #  Note that this file is read ONLY on module initialization!
313                 #
314                 # default ${confdir}/eap_ikev2_users
315         #   usersfile=${confdir}/eap_ikev2_users
316
317 #
318 #  Sample "eap_ikev2_users" file entry:
319 #
320 #username  EAP-IKEv2-IDType := KEY_ID,  EAP-IKEv2-Secret := "tajne"
321
322 ## where:
323 ## username           - client user name from IKE-AUTH (IDr)  or CommonName
324 ##                      from x509 certificate
325 ## EAP-IKEv2-IDType   - ID Type - same as in expected IDType payload
326 ##                      allowable attributes for EAP-IKEv2-IDType:
327 ##                      IPV4_ADDR FQDN RFC822_ADDR IPV6_ADDR DER_ASN1_DN
328 ##                      DER_ASN1_GN KEY_ID
329 ## EAP-IKEv2-Secret   - shared secret
330 ## EAP-IKEv2-AuthType - optional parameter which defines expected client auth
331 ##                      type. Allowed values are: secret,cert,both,none.
332 ##                      For the meaning of this values, please see the
333 ##                      description of 'default_authtype'.
334 ##                      This attribute can overwrite 'default_authtype' value.
335
336
337
338                 # path to  file with server private key
339                 private_key_file="/path/to/srv-private-key.pem"
340
341                 # password to private key file
342                 private_key_password="passwd"
343
344                 # path to file with server certificate
345                 certificate_file="/path/to/srv-cert.pem"
346
347                 # server identity string
348                 id="deMaio"
349
350                 # Server identity type. Allowed values are:
351                 # IPV4_ADDR, FQDN, RFC822_ADDR, IPV6_ADDR, ASN1_DN, ASN1_GN,
352                 #  KEY_ID
353                 # Default value is:     KEY_ID
354         #   id_type = KEY_ID
355
356
357                 # MTU (default: 1398)
358         #   fragment_size = 1398
359     
360                 # maximal allowed number of resends SA_INIT after receiving
361                 # 'invalid KEY' notification (default 3)
362         #   DH_counter_max = 3
363
364                 # option which is used to control whenever send CERT REQ
365                 #  payload or not.
366                 # Allowed values for this option are "yes" or "no".
367                 #Default value is "no".
368         #   certreq = "yes"
369
370                 # option which cotrols fast reconnect capability.
371                 # Allowed valuse for this option are "yes" or "no".
372                 # Default value is "yes".
373         #   enable_fast_reauth = "no"
374     
375                 # option which is used to control performing of DH exchange
376                 #  during fast rekeying protocol run.
377                 # Allowed values for this option are "yes" or "no".
378                 # Default value is "no"
379         #   fast_DH_exchange = "yes"
380
381                 # Option which is used to set up expiration time of inactive
382                 #  IKEv2 session.
383                 # After selected period of time (in seconds), inactive
384                 # session data will be deleted.
385                 # Default value of this option is set to 900 seconds
386         #   fast_timer_expire = 900
387
388                 # list of server proposals of available cryptographic
389                 # suites
390                 proposals {
391                         # proposal number #1 
392                         proposal {
393
394                                 # Supported transforms types: encryption,
395                                 # prf, integrity, dhgroup. For multiple
396                                 # transforms just simple repeat key (i.e.
397                                 # integity).
398
399                                 # encryption algorithm
400                                 # supported algorithms:
401                                 # null,3des,aes_128_cbc,aes_192_cbc,
402                                 # aes_256_cbc,idea
403                                 # blowfish:n, where n range from 8 to 448 bits,
404                                 #  step 8 bits
405                                 # cast:n, where n range from 40 to 128 bits,
406                                 #  step 8 bits 
407                                 encryption = 3des
408
409                                 # pseudo random function. Supported prf's:
410                                 # hmac_md5, hmac_sha1, hmac_tiger
411                                 prf = hmac_sha1
412
413                                 # integrity algorithm. Supported algorithms:
414                                 # hmac_md5_96, hmac_sha1_96,des_mac
415                                 integrity = hmac_sha1_96
416                                 integrity = hmac_md5_96
417
418                                 # Diffie-Hellman groups:
419                                 # modp768, modp1024, modp1536, modp2048, 
420                                 # modp3072, modp4096, modp6144, modp8192
421                                 dhgroup = modp2048 
422                         }
423                 
424                         # proposal number #2 
425                         proposal {
426                                 encryption = 3des
427                                 prf = hmac_md5
428                                 integrity = hmac_md5_96
429                                 dhgroup = modp1024
430                         }       
431
432                         # proposal number #3 
433                         proposal {
434                                 encryption=3des
435                                 prf=hmac_md5
436                                 integrity=hmac_md5_96
437                                 dhgroup=modp2048
438                         } 
439                 }
440                 }
441
442                 fast { 
443                         pac_opaque_encr_key = 000102030405060708090a0b0c0d0e0f 
444                         eap_fast_a_id = xxxxxx 
445                         eap_fast_a_id_info = my_server 
446                 } 
447         }