Deleted Added
full compact
radius.conf.5 (79531) radius.conf.5 (131504)
1.\" Copyright 1998 Juniper Networks, Inc.
2.\" All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.

--- 8 unchanged lines hidden (view full) ---

17.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23.\" SUCH DAMAGE.
24.\"
1.\" Copyright 1998 Juniper Networks, Inc.
2.\" All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.

--- 8 unchanged lines hidden (view full) ---

17.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23.\" SUCH DAMAGE.
24.\"
25.\" $FreeBSD: head/lib/libradius/radius.conf.5 79531 2001-07-10 13:41:46Z ru $
25.\" $FreeBSD: head/lib/libradius/radius.conf.5 131504 2004-07-02 23:52:20Z ru $
26.\"
27.Dd October 30, 1999
28.Dt RADIUS.CONF 5
29.Os
30.Sh NAME
31.Nm radius.conf
32.Nd RADIUS client configuration file
33.Sh SYNOPSIS
34.Pa /etc/radius.conf
35.Sh DESCRIPTION
36.Nm
37contains the information necessary to configure the RADIUS client
26.\"
27.Dd October 30, 1999
28.Dt RADIUS.CONF 5
29.Os
30.Sh NAME
31.Nm radius.conf
32.Nd RADIUS client configuration file
33.Sh SYNOPSIS
34.Pa /etc/radius.conf
35.Sh DESCRIPTION
36.Nm
37contains the information necessary to configure the RADIUS client
38library. It is parsed by
38library.
39It is parsed by
39.Xr rad_config 3 .
40The file contains one or more lines of text, each describing a
40.Xr rad_config 3 .
41The file contains one or more lines of text, each describing a
41single RADIUS server which will be used by the library. Leading
42single RADIUS server which will be used by the library.
43Leading
42white space is ignored, as are empty lines and lines containing
43only comments.
44.Pp
45A RADIUS server is described by three to five fields on a line:
46.Pp
47.Bl -item -offset indent -compact
48.It
49Service type
50.It
51Server host
52.It
53Shared secret
54.It
55Timeout
56.It
57Retries
58.El
59.Pp
44white space is ignored, as are empty lines and lines containing
45only comments.
46.Pp
47A RADIUS server is described by three to five fields on a line:
48.Pp
49.Bl -item -offset indent -compact
50.It
51Service type
52.It
53Server host
54.It
55Shared secret
56.It
57Timeout
58.It
59Retries
60.El
61.Pp
60The fields are separated by white space. The
62The fields are separated by white space.
63The
61.Ql #
62character at the beginning of a field begins a comment, which extends
64.Ql #
65character at the beginning of a field begins a comment, which extends
63to the end of the line. A field may be enclosed in double quotes,
66to the end of the line.
67A field may be enclosed in double quotes,
64in which case it may contain white space and/or begin with the
65.Ql #
68in which case it may contain white space and/or begin with the
69.Ql #
66character. Within a quoted string, the double quote character can
70character.
71Within a quoted string, the double quote character can
67be represented by
68.Ql \e\&" ,
69and the backslash can be represented by
70.Ql \e\e .
71No other escape sequences are supported.
72.Pp
73.Pp
74The first field gives the service type, either
75.Ql auth
76for RADIUS authentication or
77.Ql acct
72be represented by
73.Ql \e\&" ,
74and the backslash can be represented by
75.Ql \e\e .
76No other escape sequences are supported.
77.Pp
78.Pp
79The first field gives the service type, either
80.Ql auth
81for RADIUS authentication or
82.Ql acct
78for RADIUS accounting. If a single server provides both services, two
79lines are required in the file. Earlier versions of this file did
80not include a service type. For backward compatibility, if the first
83for RADIUS accounting.
84If a single server provides both services, two
85lines are required in the file.
86Earlier versions of this file did
87not include a service type.
88For backward compatibility, if the first
81field is not
82.Ql auth
83or
84.Ql acct
85the library behaves as if
86.Ql auth
87were specified, and interprets the fields in the line as if they
88were fields two through five.
89.Pp
90The second field specifies
91the server host, either as a fully qualified domain name or as a
89field is not
90.Ql auth
91or
92.Ql acct
93the library behaves as if
94.Ql auth
95were specified, and interprets the fields in the line as if they
96were fields two through five.
97.Pp
98The second field specifies
99the server host, either as a fully qualified domain name or as a
92dotted-quad IP address. The host may optionally be followed by a
100dotted-quad IP address.
101The host may optionally be followed by a
93.Ql \&:
102.Ql \&:
94and a numeric port number, without intervening white space. If the
103and a numeric port number, without intervening white space.
104If the
95port specification is omitted, it defaults to the
96.Ql radius
97or
98.Ql radacct
99service in the
100.Pa /etc/services
101file for service types
102.Ql auth
103and
104.Ql acct ,
105respectively.
106If no such entry is present, the standard ports 1812 and 1813 are
107used.
108.Pp
109The third field contains the shared secret, which should be known
105port specification is omitted, it defaults to the
106.Ql radius
107or
108.Ql radacct
109service in the
110.Pa /etc/services
111file for service types
112.Ql auth
113and
114.Ql acct ,
115respectively.
116If no such entry is present, the standard ports 1812 and 1813 are
117used.
118.Pp
119The third field contains the shared secret, which should be known
110only to the client and server hosts. It is an arbitrary string of
120only to the client and server hosts.
121It is an arbitrary string of
111characters, though it must be enclosed in double quotes if it
122characters, though it must be enclosed in double quotes if it
112contains white space. The shared secret may be
123contains white space.
124The shared secret may be
113any length, but the RADIUS protocol uses only the first 128
125any length, but the RADIUS protocol uses only the first 128
114characters. N.B., some popular RADIUS servers have bugs which
126characters.
127N.B., some popular RADIUS servers have bugs which
115prevent them from working properly with secrets longer than 16
116characters.
117.Pp
118The fourth field contains a decimal integer specifying the timeout in
128prevent them from working properly with secrets longer than 16
129characters.
130.Pp
131The fourth field contains a decimal integer specifying the timeout in
119seconds for receiving a valid reply from the server. If this field
132seconds for receiving a valid reply from the server.
133If this field
120is omitted, it defaults to 3 seconds.
121.Pp
122The fifth field contains a decimal integer specifying the maximum
123number of attempts that will be made to authenticate with the server
134is omitted, it defaults to 3 seconds.
135.Pp
136The fifth field contains a decimal integer specifying the maximum
137number of attempts that will be made to authenticate with the server
124before giving up. If omitted, it defaults to 3 attempts. Note,
138before giving up.
139If omitted, it defaults to 3 attempts.
140Note,
125this is the total number of attempts and not the number of retries.
126.Pp
127Up to 10 RADIUS servers may be specified for each service type.
128The servers are tried in
129round-robin fashion, until a valid response is received or the
130maximum number of tries has been reached for all servers.
131.Pp
132The standard location for this file is

--- 37 unchanged lines hidden ---
141this is the total number of attempts and not the number of retries.
142.Pp
143Up to 10 RADIUS servers may be specified for each service type.
144The servers are tried in
145round-robin fashion, until a valid response is received or the
146maximum number of tries has been reached for all servers.
147.Pp
148The standard location for this file is

--- 37 unchanged lines hidden ---