Base SoH code for Microsoft NAP.
[freeradius.git] / src / tests / proxy.conf
1 #
2 #  This is a LOCAL realm
3 #
4 realm example.com {
5         nostrip
6 }
7
8 #
9 #  And another one, where we strip the realm
10 #
11 realm stripped.example.com {
12
13 }
14
15 #
16 #  Some home servers, server pools, and realms.  This tests that
17 #  the server can load them.  Functionality is in another test.
18 #
19 home_server auth_one {
20         type = auth
21         ipaddr = 127.0.0.1
22         port = 12360
23         secret = testing123
24 }
25
26 home_server auth_two {
27         type = auth
28         ipaddr = 127.0.0.1
29         port = 12370
30         secret = testing123
31 }
32
33 server_pool fail-over {
34         type = fail-over
35         home_server = auth_one
36         home_server = auth_two
37 }
38
39 server_pool load-balance {
40         type = load-balance
41         home_server = auth_one
42         home_server = auth_two
43 }
44
45 server_pool client-balance {
46         type = client-balance
47         home_server = auth_one
48         home_server = auth_two
49 }
50
51 realm fail-over {
52         auth_pool = fail-over
53 }
54
55 realm load-balance {
56         auth_pool = load-balance
57 }
58
59 realm client-balance {
60         auth_pool = client-balance
61 }