blob: e0cb6867ed85bd2edee708f386f32d4fc3962b21 (
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
31
32
33
34
35
36
37
38
39
40
|
# Tests for TLS
You will need at least 3 terminal windows:
1. Home Server
```
./radiusd-home.sh
```
This server receives Access-Request packets over TLS, and sends Access-Accept.
2. Proxy server
```
./radiusd-proxy.sh
```
This server receives Access-Request packets over UDP, and proxies them to the home server.
3. Client(s)
Send one packet:
```
./radclient.sh
```
Send 500,000 packets:
```
./radclient.sh -c 500000
```
You can also send accounting packets:
```
./radacct.sh
```
|