1rlm_always(5) FreeRADIUS Module rlm_always(5)
2
3
4
6 rlm_always - FreeRADIUS Module
7
9 The rlm_always module provides a simple way to "always" return a value
10 during the processing of a configuration section. The module does
11 nothing other than return a configured value.
12
13 The main configuration item to be aware of is:
14
15 rcode This module will always return with the rcode specified. The
16 default, if none specified is: fail (RLM_MODULE_FAIL).
17
18 The valid options are:
19
20 reject RLM_MODULE_REJECT
21
22 fail RLM_MODULE_FAIL
23
24 ok RLM_MODULE_OK
25
26 handled
27 RLM_MODULE_HANDLED
28
29 invalid
30 RLM_MODULE_INVALID
31
32 userlock
33 RLM_MODULE_USERLOCK
34
35 notfound
36 RLM_MODULE_NOTFOUND
37
38 noop RLM_MODULE_NOOP
39
40 updated
41 RLM_MODULE_UPDATED
42
44 modules {
45 ...
46 always ok {
47 rcode = ok
48 }
49 ...
50 }
51 ...
52 authorize {
53 ...
54 redundant {
55 sql1 # try to find the user in sql1
56 sql2 # try to find the user in sql2
57 ok # if still not found, it's OK.
58 }
59 ...
60 }
61
63 authorization, authentication, postauthentication, preaccounting,
64 accounting, preproxy, postproxy
65
67 /etc/raddb/radiusd.conf
68
70 radiusd(8), radiusd.conf(5)
71
73 Chris Parker, cparker@segv.org
74
75
76
77 3 February 2004 rlm_always(5)