1RADEAPCLIENT(1) FreeRADIUS Daemon RADEAPCLIENT(1)
2
3
4
6 radeapclient - send EAP packets to a RADIUS server, calculate responses
7
9 radeapclient [-4] [-6] [-c count] [-d raddb_directory] [-f file] [-h]
10 [-i source_ip] [-q] [-s] [-r retries] [-S file] [-t timeout] [-v] [-x]
11 server {acct|auth} secret
12
14 radeapclient is a radius client program. It can send arbitrary radius
15 packets to a radius server, then shows the reply. Radeapclient differs
16 from radclient in that if there is an EAP-MD5 challenge, then it will
17 be responded to.
18
19 radeapclient is otherwise identical to radclient.
20
21 The EAP-Identity attribute, if present is used to construct an EAP
22 Identity message.
23
24 The EAP-MD5-Password attribute, if present is used to respond to an MD5
25 challenge.
26
27 No other EAP types are currently supported.
28
29
31 -4 Use IPv4 (default)
32
33 -6 Use IPv6
34
35 -c count
36 Send each packet count times.
37
38 -d raddb
39 Set dictionary directory.
40
41 -f file
42 Read packets from file, not stdin.
43
44 -r retries
45 If timeout, retry sending the packet retries times.
46
47 -t timeout
48 Wait timeout seconds before retrying (may be a floating point
49 number).
50
51 -h Print usage help information.
52
53 -i id Set request id to 'id'. Values may be 0..255
54
55 -S file
56 Read secret from file, not command line.
57
58 -q Quiet, do not print anything out.
59
60 -s Print out summary information of auth results.
61
62 -v Show program version information.
63
64 -x Enable debugging mode.
65
66
68 A sample session that queries the remote server with an EAP-MD5 chal‐
69 lenge.
70
71 ( echo 'User-Name = "bob"';
72 echo 'EAP-MD5-Password = "hello"';
73 echo 'NAS-IP-Address = marajade.sandelman.ottawa.on.c';
74 echo 'EAP-Code = Response';
75 echo 'EAP-Id = 210';
76 echo 'EAP-Type-Identity = "bob";
77 echo 'Message-Authenticator = 0x00';
78 echo 'NAS-Port = 0' ) >req.txt
79
80 radeapclient -x localhost auth testing123 <req.txt
81
82
83
85 radclient(1)
86
88 Michael Richardson, <mcr@sandelman.ottawa.on.ca>
89
90
91
92 08 September 2003 RADEAPCLIENT(1)