blob: 32c5affc43a6c4716782d2b85ea0b8495df6fc22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
( echo 'User-Name = "eapsim"';
echo 'Cleartext-Password = "md5md5"';
echo 'NAS-IP-Address = marajade.sandelman.ottawa.on.ca';
echo 'EAP-Code = Response';
echo 'EAP-Id = 210';
echo 'EAP-Type-Identify = "eapsim';
echo 'Message-Authenticator = 0';
echo 'NAS-Port = 0' ) >req.txt
../../main/radeapclient -x localhost auth testing123 <req.txt
|