summaryrefslogtreecommitdiff
path: root/lib/examples/client.conf
blob: cedd2598d3d5b9f983e4cb415f1da852accbb8d6 (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
dictionary = "/home/linus/usr/moonshot/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"
    #pskstr = "sikrit psk"
    pskhexstr = "deadbeef4711"
    pskid = "Client_identity"
    pskex = "PSK"
    server {
        hostname = "localhost"
	service = "2083"
	secret = "sikrit"
    }
}