Added comment on "listen" section to test inner tunnel
[freeradius.git] / raddb / sites-available / inner-tunnel
1 # -*- text -*-
2 ######################################################################
3 #
4 #       This is a virtual server that handles *only* inner tunnel
5 #       requests for EAP-TTLS and PEAP types.
6 #
7 #       $Id$
8 #
9 ######################################################################
10
11 server inner-tunnel {
12
13 #
14 #  Un-comment the next section to perform test on the inner tunnel
15 #  without needing an outer tunnel session.  The tests will not be
16 #  exactly the same as when TTLS or PEAP are used, but they will
17 #  be close enough for many tests.
18 #
19 #listen {
20 #       ipaddr = 127.0.0.1
21 #       port = 18120
22 #       type = auth
23 #}
24
25
26 #  Authorization. First preprocess (hints and huntgroups files),
27 #  then realms, and finally look in the "users" file.
28 #
29 #  The order of the realm modules will determine the order that
30 #  we try to find a matching realm.
31 #
32 #  Make *sure* that 'preprocess' comes before any realm if you 
33 #  need to setup hints for the remote radius server
34 authorize {
35         #
36         #  The chap module will set 'Auth-Type := CHAP' if we are
37         #  handling a CHAP request and Auth-Type has not already been set
38         chap
39
40         #
41         #  If the users are logging in with an MS-CHAP-Challenge
42         #  attribute for authentication, the mschap module will find
43         #  the MS-CHAP-Challenge attribute, and add 'Auth-Type := MS-CHAP'
44         #  to the request, which will cause the server to then use
45         #  the mschap module for authentication.
46         mschap
47
48         #
49         #  Pull crypt'd passwords from /etc/passwd or /etc/shadow,
50         #  using the system API's to get the password.  If you want
51         #  to read /etc/passwd or /etc/shadow directly, see the
52         #  passwd module, above.
53         #
54         unix
55
56         #
57         #  Look for IPASS style 'realm/', and if not found, look for
58         #  '@realm', and decide whether or not to proxy, based on
59         #  that.
60 #       IPASS
61
62         #
63         #  If you are using multiple kinds of realms, you probably
64         #  want to set "ignore_null = yes" for all of them.
65         #  Otherwise, when the first style of realm doesn't match,
66         #  the other styles won't be checked.
67         #
68         #  Note that proxying the inner tunnel authentication means
69         #  that the user MAY use one identity in the outer session
70         #  (e.g. "anonymous", and a different one here
71         #  (e.g. "user@example.com").  The inner session will then be
72         #  proxied elsewhere for authentication.  If you are not
73         #  careful, this means that the user can cause you to forward
74         #  the authentication to another RADIUS server, and have the
75         #  accounting logs *not* sent to the other server.  This makes
76         #  it difficult to bill people for their network activity.
77         #
78         suffix
79 #       ntdomain
80
81         #
82         #  The "suffix" module takes care of stripping the domain
83         #  (e.g. "@example.com") from the User-Name attribute, and the
84         #  next few lines ensure that the request is not proxied.
85         #
86         #  If you want the inner tunnel request to be proxied, delete
87         #  the next few lines.
88         #
89         update control {
90                Proxy-To-Realm := LOCAL
91         }
92
93         #
94         #  This module takes care of EAP-MSCHAPv2 authentication.
95         #
96         #  It also sets the EAP-Type attribute in the request
97         #  attribute list to the EAP type from the packet.
98         #
99         #  The example below uses module failover to avoid querying all
100         #  of the following modules if the EAP module returns "ok".
101         #  Therefore, your LDAP and/or SQL servers will not be queried
102         #  for the many packets that go back and forth to set up TTLS
103         #  or PEAP.  The load on those servers will therefore be reduced.
104         #
105         eap {
106                 ok = return
107         }
108
109         #
110         #  Read the 'users' file
111         files
112
113         #
114         #  Look in an SQL database.  The schema of the database
115         #  is meant to mirror the "users" file.
116         #
117         #  See "Authorization Queries" in sql.conf
118 #       sql
119
120         #
121         #  If you are using /etc/smbpasswd, and are also doing
122         #  mschap authentication, the un-comment this line, and
123         #  configure the 'etc_smbpasswd' module, above.
124 #       etc_smbpasswd
125
126         #
127         #  The ldap module will set Auth-Type to LDAP if it has not
128         #  already been set
129 #       ldap
130
131         #
132         #  Enforce daily limits on time spent logged in.
133 #       daily
134
135         #
136         # Use the checkval module
137 #       checkval
138
139         expiration
140         logintime
141
142         #
143         #  If no other module has claimed responsibility for
144         #  authentication, then try to use PAP.  This allows the
145         #  other modules listed above to add a "known good" password
146         #  to the request, and to do nothing else.  The PAP module
147         #  will then see that password, and use it to do PAP
148         #  authentication.
149         #
150         #  This module should be listed last, so that the other modules
151         #  get a chance to set Auth-Type for themselves.
152         #
153         pap
154 }
155
156
157 #  Authentication.
158 #
159 #
160 #  This section lists which modules are available for authentication.
161 #  Note that it does NOT mean 'try each module in order'.  It means
162 #  that a module from the 'authorize' section adds a configuration
163 #  attribute 'Auth-Type := FOO'.  That authentication type is then
164 #  used to pick the apropriate module from the list below.
165 #
166
167 #  In general, you SHOULD NOT set the Auth-Type attribute.  The server
168 #  will figure it out on its own, and will do the right thing.  The
169 #  most common side effect of erroneously setting the Auth-Type
170 #  attribute is that one authentication method will work, but the
171 #  others will not.
172 #
173 #  The common reasons to set the Auth-Type attribute by hand
174 #  is to either forcibly reject the user, or forcibly accept him.
175 #
176 authenticate {
177         #
178         #  PAP authentication, when a back-end database listed
179         #  in the 'authorize' section supplies a password.  The
180         #  password can be clear-text, or encrypted.
181         Auth-Type PAP {
182                 pap
183         }
184
185         #
186         #  Most people want CHAP authentication
187         #  A back-end database listed in the 'authorize' section
188         #  MUST supply a CLEAR TEXT password.  Encrypted passwords
189         #  won't work.
190         Auth-Type CHAP {
191                 chap
192         }
193
194         #
195         #  MSCHAP authentication.
196         Auth-Type MS-CHAP {
197                 mschap
198         }
199
200         #
201         #  Pluggable Authentication Modules.
202 #       pam
203
204         #
205         #  See 'man getpwent' for information on how the 'unix'
206         #  module checks the users password.  Note that packets
207         #  containing CHAP-Password attributes CANNOT be authenticated
208         #  against /etc/passwd!  See the FAQ for details.
209         #  
210         unix
211
212         # Uncomment it if you want to use ldap for authentication
213         #
214         # Note that this means "check plain-text password against
215         # the ldap database", which means that EAP won't work,
216         # as it does not supply a plain-text password.
217 #       Auth-Type LDAP {
218 #               ldap
219 #       }
220
221         #
222         #  Allow EAP authentication.
223         eap
224 }
225
226 ######################################################################
227 #
228 #       There are no accounting requests inside of EAP-TTLS or PEAP
229 #       tunnels.
230 #
231 ######################################################################
232
233
234 #  Session database, used for checking Simultaneous-Use. Either the radutmp 
235 #  or rlm_sql module can handle this.
236 #  The rlm_sql module is *much* faster
237 session {
238         radutmp
239
240         #
241         #  See "Simultaneous Use Checking Queries" in sql.conf
242 #       sql
243 }
244
245
246 #  Post-Authentication
247 #  Once we KNOW that the user has been authenticated, there are
248 #  additional steps we can take.
249 post-auth {
250         # Note that we do NOT assign IP addresses here.
251         # If you try to assign IP addresses for EAP authentication types,
252         # it WILL NOT WORK.  You MUST use DHCP.
253
254         #
255         #  If you want to have a log of authentication replies,
256         #  un-comment the following line, and the 'detail reply_log'
257         #  section, above.
258 #       reply_log
259
260         #
261         #  After authenticating the user, do another SQL query.
262         #
263         #  See "Authentication Logging Queries" in sql.conf
264 #       sql
265
266         #
267         #  Instead of sending the query to the SQL server,
268         #  write it into a log file.
269         #
270 #       sql_log
271
272         #
273         #  Un-comment the following if you have set
274         #  'edir_account_policy_check = yes' in the ldap module sub-section of
275         #  the 'modules' section.
276         #
277 #       ldap
278
279         #
280         #  Access-Reject packets are sent through the REJECT sub-section of the
281         #  post-auth section.
282         #
283         #  Add the ldap module name (or instance) if you have set 
284         #  'edir_account_policy_check = yes' in the ldap module configuration
285         #
286         Post-Auth-Type REJECT {
287                 attr_filter.access_reject
288         }
289
290         #
291         #  The example policy below updates the outer tunnel reply
292         #  (usually Access-Accept) with the User-Name from the inner
293         #  tunnel User-Name.  Since this section is processed in the
294         #  context of the inner tunnel, "request" here means "inner
295         #  tunnel request", and "outer.reply" means "outer tunnel
296         #  reply attributes".
297         #
298         #  This example is most useful when the outer session contains
299         #  a User-Name of "anonymous@....", or a MAC address.  If it
300         #  is enabled, the NAS SHOULD use the inner tunnel User-Name
301         #  in subsequent accounting packets.  This makes it easier to
302         #  track user sessions, as they will all be based on the real
303         #  name, and not on "anonymous".
304         #
305         #  The problem with doing this is that it ALSO exposes the
306         #  real user name to any intermediate proxies.  People use
307         #  "anonymous" identifiers outside of the tunnel for a very
308         #  good reason: it gives them more privacy.  Setting the reply
309         #  to contain the real user name removes ALL privacy from
310         #  their session.
311         #
312         #  If you want privacy to remain, see the
313         #  Chargeable-User-Identity attribute from RFC 4372.  In order
314         #  to use that attribute, you will have to allocate a
315         #  per-session identifier for the user, and store it in a
316         #  long-term database (e.g. SQL).  You should also use that
317         #  attribute INSTEAD of the configuration below.
318         #
319         #update outer.reply {
320         #       User-Name = "%{request:User-Name}"
321         #}
322
323 }
324
325 #
326 #  When the server decides to proxy a request to a home server,
327 #  the proxied request is first passed through the pre-proxy
328 #  stage.  This stage can re-write the request, or decide to
329 #  cancel the proxy.
330 #
331 #  Only a few modules currently have this method.
332 #
333 pre-proxy {
334 #       attr_rewrite
335
336         #  Uncomment the following line if you want to change attributes
337         #  as defined in the preproxy_users file.
338 #       files
339
340         #  Uncomment the following line if you want to filter requests
341         #  sent to remote servers based on the rules defined in the
342         #  'attrs.pre-proxy' file.
343 #       attr_filter.pre-proxy
344
345         #  If you want to have a log of packets proxied to a home
346         #  server, un-comment the following line, and the
347         #  'detail pre_proxy_log' section, above.
348 #       pre_proxy_log
349 }
350
351 #
352 #  When the server receives a reply to a request it proxied
353 #  to a home server, the request may be massaged here, in the
354 #  post-proxy stage.
355 #
356 post-proxy {
357
358         #  If you want to have a log of replies from a home server,
359         #  un-comment the following line, and the 'detail post_proxy_log'
360         #  section, above.
361 #       post_proxy_log
362
363 #       attr_rewrite
364
365         #  Uncomment the following line if you want to filter replies from
366         #  remote proxies based on the rules defined in the 'attrs' file.
367 #       attr_filter.post-proxy
368
369         #
370         #  If you are proxying LEAP, you MUST configure the EAP
371         #  module, and you MUST list it here, in the post-proxy
372         #  stage.
373         #
374         #  You MUST also use the 'nostrip' option in the 'realm'
375         #  configuration.  Otherwise, the User-Name attribute
376         #  in the proxied request will not match the user name
377         #  hidden inside of the EAP packet, and the end server will
378         #  reject the EAP request.
379         #
380         eap
381
382         #
383         #  If the server tries to proxy a request and fails, then the
384         #  request is processed through the modules in this section.
385         #
386         #  The main use of this section is to permit robust proxying
387         #  of accounting packets.  The server can be configured to
388         #  proxy accounting packets as part of normal processing.
389         #  Then, if the home server goes down, accounting packets can
390         #  be logged to a local "detail" file, for processing with
391         #  radrelay.  When the home server comes back up, radrelay
392         #  will read the detail file, and send the packets to the
393         #  home server.
394         #
395         #  With this configuration, the server always responds to
396         #  Accounting-Requests from the NAS, but only writes
397         #  accounting packets to disk if the home server is down.
398         #
399 #       Post-Proxy-Type Fail {
400 #                       detail
401 #       }
402
403 }
404
405 } # inner-tunnel server block