chiark / gitweb /
xfoo => mfoo, rename
[innduct.git] / samples / radius.conf
1 # $Id: radius.conf 7556 2006-08-28 02:00:28Z eagle $
2 #
3 # Sample RADIUS configuration file for the RADIUS readers.conf
4 # authenticator.  If you're not using that authenticator, this file is not
5 # used.
6
7 server radius {
8
9 # Hostname of the RADIUS server.
10
11 #radhost:       radius-server.example.com
12
13 # Port to query on the RADIUS server.
14
15 radport:        1645
16
17 # Local hostname or IP address.
18 #
19 # The RADIUS server expects an IP address; a hostname will be translated
20 # into an IP address with gethostbyname().  If not given, not included in
21 # the request (not all RADIUS setups need this information).
22
23 #lochost:       news.example.com
24
25 # Local port of connection.
26 #
27 # The port the client we're authenticating is connecting to.  If not
28 # given, defaults to 119.  You'll only need to set this if you're readers
29 # are connecting on a non-standard port.
30
31 #locport:       119
32
33 # Shared secret with RADIUS server.
34 #
35 # Be careful not to use the '#' symbol in your secret, since in this
36 # file that indicates the beginning of a comment.
37
38 #secret:        SECRET-WORD
39
40 # Prefix for username.
41 #
42 # Before given to the RADIUS server, usernames will be rewritten by
43 # prepending the prefix, if given, and then appending the suffix, if
44 # given.
45
46 #prefix:        news-
47
48 # Suffix for username.
49
50 #suffix:        @example.com
51
52 # Whether to ignore bad reply IP.
53 #
54 # If set to false, the RADIUS authenticator will check to ensure that the
55 # response it receives is from the same IP address as it sent the request
56 # to (for some added security).  If set to true, it will skip this
57 # verification check (if your RADIUS server has multiple IP addresses or
58 # if other odd things are going on, it may be perfectly normal for the
59 # response to come from a different IP address).
60
61 ignore-source:  false
62
63 }