blob: 64a70b6f84325c8d0c42ffb4c0e710bbd08ac29a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
dictionary = "/usr/share/freeradius/dictionary"
realm blocking-udp {
type = "UDP"
timeout = 2
retries = 2
server {
hostname = "127.0.0.1"
service = "1820"
secret = "sikrit"
}
}
realm blocking-tls {
type = "TLS"
timeout = 1
retries = 3
cacertfile = "tests/demoCA/newcerts/01.pem"
certfile = "tests/demoCA/newcerts/02.pem"
certkeyfile = "tests/demoCA/private/c1key.pem"
server {
hostname = "localhost"
service = "2083"
secret = "sikrit"
}
}
|