summaryrefslogtreecommitdiff
path: root/lib/examples/client.conf
blob: edd090e586c13bc88fda9e3b333d7c253ffb8473 (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
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/c2key.pem"
    psk = "sikrit psk"
    pskid = "allan"
    pskex = "PSK"
    server {
        hostname = "localhost"
	service = "2083"
	secret = "sikrit"
    }
}