New build path variable
[freeradius.git] / raddb / clients.conf
1 # -*- text -*-
2 ##
3 ## clients.conf -- client configuration directives
4 ##
5 ##      $Id$
6
7 #######################################################################
8 #
9 #  Define RADIUS clients (usually a NAS, Access Point, etc.).
10
11 #
12 #  Defines a RADIUS client.
13 #
14 #  '127.0.0.1' is another name for 'localhost'.  It is enabled by default,
15 #  to allow testing of the server after an initial installation.  If you
16 #  are not going to be permitting RADIUS queries from localhost, we suggest
17 #  that you delete, or comment out, this entry.
18 #
19 #
20
21 #
22 #  Each client has a "short name" that is used to distinguish it from
23 #  other clients.
24 #
25 #  In version 1.x, the string after the word "client" was the IP
26 #  address of the client.  In 2.0, the IP address is configured via
27 #  the "ipaddr" or "ipv6addr" fields.  For compatibility, the 1.x
28 #  format is still accepted.
29 #
30 client localhost {
31         #  Allowed values are:
32         #       dotted quad (1.2.3.4)
33         #       hostname    (radius.example.com)
34         ipaddr = 127.0.0.1
35
36         #  OR, you can use an IPv6 address, but not both
37         #  at the same time.
38 #       ipv6addr = ::   # any.  ::1 == localhost
39
40         #
41         #  The transport protocol.
42         #
43         #  If unspecified, defaults to "udp", which is the traditional
44         #  RADIUS transport.  It may also be "tcp", in which case the
45         #  server will accept connections from this client ONLY over TCP.
46         #
47         proto = *
48
49         #
50         #  A note on DNS:  We STRONGLY recommend using IP addresses
51         #  rather than host names.  Using host names means that the
52         #  server will do DNS lookups when it starts, making it
53         #  dependent on DNS.  i.e. If anything goes wrong with DNS,
54         #  the server won't start!
55         #
56         #  The server also looks up the IP address from DNS once, and
57         #  only once, when it starts.  If the DNS record is later
58         #  updated, the server WILL NOT see that update.
59         #
60
61         #  One client definition can be applied to an entire network.
62         #  e.g. 127/8 should be defined with "ipaddr = 127.0.0.0" and
63         #  "netmask = 8"
64         #
65         #  If not specified, the default netmask is 32 (i.e. /32)
66         #
67         #  We do NOT recommend using anything other than 32.  There
68         #  are usually other, better ways to achieve the same goal.
69         #  Using netmasks of other than 32 can cause security issues.
70         #
71         #  You can specify overlapping networks (127/8 and 127.0/16)
72         #  In that case, the smallest possible network will be used
73         #  as the "best match" for the client.
74         #
75         #  Clients can also be defined dynamically at run time, based
76         #  on any criteria.  e.g. SQL lookups, keying off of NAS-Identifier,
77         #  etc.
78         #  See raddb/sites-available/dynamic-clients for details.
79         #
80
81 #       netmask = 32
82
83         #
84         #  The shared secret use to "encrypt" and "sign" packets between
85         #  the NAS and FreeRADIUS.  You MUST change this secret from the
86         #  default, otherwise it's not a secret any more!
87         #
88         #  The secret can be any string, up to 8k characters in length.
89         #
90         #  Control codes can be entered vi octal encoding,
91         #       e.g. "\101\102" == "AB"
92         #  Quotation marks can be entered by escaping them,
93         #       e.g. "foo\"bar"
94         #
95         #  A note on security:  The security of the RADIUS protocol
96         #  depends COMPLETELY on this secret!  We recommend using a
97         #  shared secret that is composed of:
98         #
99         #       upper case letters
100         #       lower case letters
101         #       numbers
102         #
103         #  And is at LEAST 8 characters long, preferably 16 characters in
104         #  length.  The secret MUST be random, and should not be words,
105         #  phrase, or anything else that is recognizable.
106         #
107         #  The default secret below is only for testing, and should
108         #  not be used in any real environment.
109         #
110         secret          = testing123
111
112         #
113         #  Old-style clients do not send a Message-Authenticator
114         #  in an Access-Request.  RFC 5080 suggests that all clients
115         #  SHOULD include it in an Access-Request.  The configuration
116         #  item below allows the server to require it.  If a client
117         #  is required to include a Message-Authenticator and it does
118         #  not, then the packet will be silently discarded.
119         #
120         #  allowed values: yes, no
121         require_message_authenticator = no
122
123         #
124         #  Limit the number of TCP connections that this client is
125         #  allowed to have open to us.  This configuration entry
126         #  is ignored for UDP sockets.
127         #
128         #  This entry is the mirror of the "max_connections" entry
129         #  in the home server configuration.
130         max_connections = 16
131
132         #
133         #  The short name is used as an alias for the fully qualified
134         #  domain name, or the IP address.
135         #
136         #  It is accepted for compatibility with 1.x, but it is no
137         #  longer necessary in 2.0
138         #
139 #       shortname       = localhost
140
141         #
142         # the following three fields are optional, but may be used by
143         # checkrad.pl for simultaneous use checks
144         #
145
146         #
147         # The nastype tells 'checkrad.pl' which NAS-specific method to
148         #  use to query the NAS for simultaneous use.
149         #
150         #  Permitted NAS types are:
151         #
152         #       cisco
153         #       computone
154         #       livingston
155         #       max40xx
156         #       multitech
157         #       netserver
158         #       pathras
159         #       patton
160         #       portslave
161         #       tc
162         #       usrhiper
163         #       other           # for all other types
164
165         #
166         nastype     = other     # localhost isn't usually a NAS...
167
168         #
169         #  The following two configurations are for future use.
170         #  The 'naspasswd' file is currently used to store the NAS
171         #  login name and password, which is used by checkrad.pl
172         #  when querying the NAS for simultaneous use.
173         #
174 #       login       = !root
175 #       password    = someadminpas
176
177         #
178         #  As of 2.0, clients can also be tied to a virtual server.
179         #  This is done by setting the "virtual_server" configuration
180         #  item, as in the example below.
181         #
182 #       virtual_server = home1
183
184         #
185         #  A pointer to the "home_server_pool" OR a "home_server"
186         #  section that contains the CoA configuration for this
187         #  client.  For an example of a coa home server or pool,
188         #  see raddb/sites-available/originate-coa
189 #       coa_server = coa
190 }
191
192 # IPv6 Client
193 #client ::1 {
194 #       secret          = testing123
195 #       shortname       = localhost
196 #}
197 #
198 # All IPv6 Site-local clients
199 #client fe80::/16 {
200 #       secret          = testing123
201 #       shortname       = localhost
202 #}
203
204 #client some.host.org {
205 #       secret          = testing123
206 #       shortname       = localhost
207 #}
208
209 #
210 #  You can now specify one secret for a network of clients.
211 #  When a client request comes in, the BEST match is chosen.
212 #  i.e. The entry from the smallest possible network.
213 #
214 #client 192.168.0.0/24 {
215 #       secret          = testing123-1
216 #       shortname       = private-network-1
217 #}
218 #
219 #client 192.168.0.0/16 {
220 #       secret          = testing123-2
221 #       shortname       = private-network-2
222 #}
223
224
225 #client 10.10.10.10 {
226 #       # secret and password are mapped through the "secrets" file.
227 #       secret      = testing123
228 #       shortname   = liv1
229 #       # the following three fields are optional, but may be used by
230 #       # checkrad.pl for simultaneous usage checks
231 #       nastype     = livingston
232 #       login       = !root
233 #       password    = someadminpas
234 #}
235
236 #######################################################################
237 #
238 #  Per-socket client lists.  The configuration entries are exactly
239 #  the same as above, but they are nested inside of a section.
240 #
241 #  You can have as many per-socket client lists as you have "listen"
242 #  sections, or you can re-use a list among multiple "listen" sections.
243 #
244 #  Un-comment this section, and edit a "listen" section to add:
245 #  "clients = per_socket_clients".  That IP address/port combination
246 #  will then accept ONLY the clients listed in this section.
247 #
248 #clients per_socket_clients {
249 #       client 192.168.3.4 {
250 #               secret = testing123
251 #        }
252 #}