blob: e02d7079652d473b33e1d7397aa98c1f9fbb4249 (
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
27
28
29
30
|
config blocking-udp {
type = "UDP"
server {
hostname = "localhost"
service = "1820"
secret = "sikrit"
timeout = 1 /* optional */
tries = 10 /* optional */
}
}
config blocking-tls {
type = "TLS"
cacertfile = "/home/linus/nordberg-ca.crt"
#cacertpath =
certfile = "/home/linus/p/radsecproxy/src/maatuska.nordberg.se.crt"
certkeyfile = "/home/linus/p/radsecproxy/src/maatuska.nordberg.se.key"
#certkeypwd = "passphrase"
#cacheexpiry = <seconds>
#crlcheck = "on" | "off"
#policyoids = ?
server {
hostname = "localhost"
service = "2083"
secret = "sikrit"
timeout = 1 /* optional */
tries = 10 /* optional */
}
}
|