Initial revision
[freeradius.git] / raddb / hints
1 #
2 # hints         The hints file. Matching can take place with the
3 #               the Prefix and Suffix attributes, just like in
4 #               the "users" file, but ONLY on the username.
5 #
6 #               Note that the name-value pairs that are set for each
7 #               entry are _NOT_ passed back to the terminal server.
8 #               Instead they are added to the information that has
9 #               been _SENT_ by the terminal server.
10 #
11 #               This extra information can be used in the users file to
12 #               match on. Usually this is done in the DEFAULT entries,
13 #               of which there can be more than one.
14 #
15 #               In addition a matching entry can transform a username
16 #               for authentication purposes if the "Strip-User-Name"
17 #               variable is set to Yes in an entry (default is Yes).
18 #
19 #               A special non-protocol name-value pair called "Hint"
20 #               can be set to match on in the "users" file.
21 #
22 #               The following is how most ISPs want to setup this stuff.
23 #
24 # Version:      @(#)  hints  1.10  20-Jun-1997  miquels@cistron.nl
25 #
26
27
28 DEFAULT Prefix = "U", Strip-User-Name = No
29         Hint = "UUCP"
30
31 DEFAULT Prefix = "P", Strip-User-Name = Yes
32         Hint = "PPP",
33         Service-Type = Framed-User,
34         Framed-Protocol = PPP
35
36 DEFAULT Prefix = "S", Strip-User-Name = Yes
37         Hint = "SLIP",
38         Service-Type = Framed-User,
39         Framed-Protocol = SLIP
40
41 DEFAULT Prefix = "C", Strip-User-Name = Yes
42         Hint = "CSLIP",
43         Service-Type = Framed-User,
44         Framed-Protocol = SLIP,
45         Framed-Compression = Van-Jacobson-TCP-IP
46
47 DEFAULT Suffix = ".ppp", Strip-User-Name = Yes
48         Hint = "PPP",
49         Service-Type = Framed-User,
50         Framed-Protocol = PPP
51
52 DEFAULT Suffix = ".slip", Strip-User-Name = Yes
53         Hint = "SLIP",
54         Service-Type = Framed-User,
55         Framed-Protocol = SLIP
56
57 DEFAULT Suffix = ".cslip", Strip-User-Name = Yes
58         Hint = "CSLIP",
59         Service-Type = Framed-User,
60         Framed-Protocol = SLIP,
61         Framed-Compression = Van-Jacobson-TCP-IP
62