Document TLS session cache
authorAlan T. DeKok <aland@freeradius.org>
Sat, 23 Aug 2008 15:10:23 +0000 (17:10 +0200)
committerAlan T. DeKok <aland@freeradius.org>
Sun, 24 Aug 2008 08:07:44 +0000 (10:07 +0200)
raddb/eap.conf

index 662b88b..e0be215 100644 (file)
                        #  initial deployments easier.
                        #
                        make_cert_command = "${certdir}/bootstrap"
+
+                       #
+                       #  Session resumption / fast reauthentication
+                       #  cache.
+                       #
+                       cache {
+                             #
+                             #  Enable it.  The default is "no".
+                             #  Deleting the entire "cache" subsection
+                             #  Also disables caching.
+                             #
+                             enable = yes
+
+                             #
+                             #  Lifetime of the cached entries, in hours.
+                             #  The sessions will be deleted after this
+                             #  time.
+                             #
+                             lifetime = 24 # hours
+
+                             #
+                             #  The maximum number of entries in the
+                             #  cache.  Set to "0" for "infinite".
+                             #
+                             #  This could be set to the number of users
+                             #  who are logged in... which can be a LOT.
+                             #
+                             max_entries = 255
+                       }
                }
 
                #  The TTLS module implements the EAP-TTLS protocol,