diff options
author | Linus Nordberg <linus@nordberg.se> | 2013-01-24 11:23:43 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2013-01-24 11:23:43 +0100 |
commit | 52acaa7cea2bb152c47208d93331fdc39f4a5566 (patch) | |
tree | 1067d142a9228f4d06dd8177c9cb15b5a81d0579 /lib/examples/client.conf | |
parent | fc22159b81c6f9c0649e03ac5be4ccbb7f6520cc (diff) |
user dispatch WIP 0
Diffstat (limited to 'lib/examples/client.conf')
-rw-r--r-- | lib/examples/client.conf | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/lib/examples/client.conf b/lib/examples/client.conf index bf57434..32af3c0 100644 --- a/lib/examples/client.conf +++ b/lib/examples/client.conf @@ -13,15 +13,27 @@ 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" + cacertfile = "/home/linus/p/radsecproxy/demoCA/newcerts/01.pem" + certfile = "/home/linus/p/radsecproxy/demoCA/newcerts/03.pem" + certkeyfile = "/home/linus/p/radsecproxy/demoCA/private/cli1.key" #pskstr = "sikrit psk" - pskhexstr = "deadbeef4711" - pskid = "Client_identity" - pskex = "PSK" + #pskhexstr = "deadbeef4711" + #pskid = "Client_identity" + #pskex = "PSK" server { - hostname = "localhost" + hostname = "srv1" + service = "2083" + secret = "sikrit" + } +} + +realm dispatching-tls { + type = "TLS" + cacertfile = "/home/linus/p/radsecproxy/demoCA/newcerts/01.pem" + certfile = "/home/linus/p/radsecproxy/demoCA/newcerts/03.pem" + certkeyfile = "/home/linus/p/radsecproxy/demoCA/private/cli1.key" + server { + hostname = "srv1" service = "2083" secret = "sikrit" } |