>> James,
>>
>> We have gotten LEAP to work with Cisco access points. My last posting
>> on the subject might help if you haven't gotten there yet...
>>
>
>>
>> However, we have not been able to get LEAP for Cisco's WDS worked out.
>> All of the access points in the group authenticate successfully, but
>> the WLSE does not.
>>
>Yes, WLSE is not running exatly like an access point :-((
>Comparing the answer of Cisco server radius ACS who authenticate
>WLSE and access points, with freeradius, we can see that ACS don't
>increment the EAP ID as said in doc/rfc/leap.txt :
>---------------------------------------------------------
> 4. RS->AP: Access-Challenge/EAP Success (with EAP id++)
> + State (may be different than the satate send in <2>)
>---------------------------------------------------------
>So with this first patch in
>freeradius-1.0.0/src/modules/rlm_eap/types/rlm_eap_
>leap :
>-------------------------------------------------------------------------------
>----------
>--- rlm_eap_leap.c.FCS 2004-08-16 18:29:23.000000000 +0200
>+++ rlm_eap_leap.c 2004-08-16 18:34:25.000000000 +0200
>@@ -147,7 +147,10 @@
> /*
> * Do this only for Success.
> */
>- handler->eap_ds->request->id =
handler->eap_ds->response->id
>+ 1;
>+ /* RT Oops WLSE don't like CISCO LEAP
standard....
>+ handler->eap_ds->request->id =
handler->eap_ds->response->id
>++ 1; */
>+
>+ handler->eap_ds->request->id =
handler->eap_ds->response->id ;
> handler->eap_ds->set_request_id = 1;
>
> /*
>-------------------------------------------------------------------------------
>------------
>
>The WLSE accept the response of freeradius and send an Access-Request/EAP
>Request/LEAP
>
>But in stage 6 the WLSE does not accept the SUCCESS response of RS if the
>normal id++
>so i made a second patch of eap.c in freeradius-1.0.0/src/modules/rlm_eap
:
>-------------------------------------------------------------------------------
>------------
>--- eap.c.FCS 2004-08-16 18:25:05.000000000 +0200
>+++ eap.c 2004-08-16 18:28:47.000000000 +0200
>@@ -393,6 +393,16 @@
>
> hdr->code = (reply->code & 0xFF);
> hdr->id = (reply->id & 0xFF);
>+
>+ /* RT Oops WLSE don't like CISCO LEAP Standard ... so we make as
ACS
>+do
>.... */
>+ if((reply->code == PW_EAP_RESPONSE) &&
>+ (reply->type.type == PW_EAP_LEAP) &&
>+ (reply->type.length == 30)) { hdr->id -= 1 ;}
>+
>+DEBUG2(" rlm_eap: RT Modif EAP-Type = %d EAP-LENGTH = %d",
>+ reply->type.type,reply->type.length);
>+ /* END MODIF RT */
>+
> total_length = htons(total_length);
> memcpy(hdr->length, &total_length, sizeof(uint16_t));
>
>-------------------------------------------------------------------------------
>----------------
>
>Since i have freeradius working with thousands of users with many
protocols,
>i made a rogue_radius with this 2 bad patchs listening on port 1645 only
for
>Cisco WDS !!!
>
Richard,
I have been trying to get my WLSE working with FreeRadius for a very long
time, untill I finally stumbled onto your post.
I have applied the patches you provided to freeradius 1.0.1 and I am
definetly getting further along then I used to with WLSE authenticating to
the WDS enabled AP, however it's not getting to the final "SECURITY KEYS
SETUP" state. I can only get it to go as far as "AUTHENTICATED" state when
I execute "sh wlccp wnm status" on the AP. I am able to get this working
using "built in" radius server on the Access point, but no luck with
Freeradius (I wish Cisco would follow a standard protocol)
Do you have any suggestions?
Here is the output from the freeradius when WLSE attemps to authenticate.
(I appologize for the long email)
====================
Starting - reading configuration files ...
reread_config: reading radiusd.conf
Config: including file: /etc/raddb/proxy.conf
Config: including file: /etc/raddb/clients.conf
Config: including file: /etc/raddb/snmp.conf
Config: including file: /etc/raddb/eap.conf
Config: including file: /etc/raddb/sql.conf
main: prefix = "/usr"
main: localstatedir = "/var"
main: logdir = "/var/log/radius"
main: libdir = "/usr/lib"
main: radacctdir = "/var/log/radius/radacct"
main: hostname_lookups = no
main: max_request_time = 30
main: cleanup_delay = 5
main: max_requests = 1024
main: delete_blocked_requests = 0
main: port = 0
main: allow_core_dumps = no
main: log_stripped_names = no
main: log_file = "/var/log/radius/radius.log"
main: log_auth = no
main: log_auth_badpass = no
main: log_auth_goodpass = no
main: pidfile = "/var/run/radiusd/radiusd.pid"
main: user = "radiusd"
main: group = "radiusd"
main: usercollide = no
main: lower_user = "no"
main: lower_pass = "no"
main: nospace_user = "no"
main: nospace_pass = "no"
main: checkrad = "/usr/sbin/checkrad"
main: proxy_requests = yes
proxy: retry_delay = 5
proxy: retry_count = 3
proxy: synchronous = no
proxy: default_fallback = yes
proxy: dead_time = 120
proxy: post_proxy_authorize = yes
proxy: wake_all_if_all_dead = no
security: max_attributes = 200
security: reject_delay = 1
security: status_server = no
main: debug_level = 0
read_config_files: reading dictionary
read_config_files: reading naslist
Using deprecated naslist file. Support for this will go away soon.
read_config_files: reading clients
read_config_files: reading realms
radiusd: entering modules setup
Module: Library search path is /usr/lib
Module: Loaded exec
exec: wait = yes
exec: program = "(null)"
exec: input_pairs = "request"
exec: output_pairs = "(null)"
exec: packet_type = "(null)"
rlm_exec: Wait=yes but no output defined. Did you mean output=none?
Module: Instantiated exec (exec)
Module: Loaded expr
Module: Instantiated expr (expr)
Module: Loaded PAP
pap: encryption_scheme = "crypt"
Module: Instantiated pap (pap)
Module: Loaded CHAP
Module: Instantiated chap (chap)
Module: Loaded MS-CHAP
mschap: use_mppe = yes
mschap: require_encryption = no
mschap: require_strong = no
mschap: with_ntdomain_hack = no
mschap: passwd = "(null)"
mschap: authtype = "MS-CHAP"
mschap: ntlm_auth = "(null)"
Module: Instantiated mschap (mschap)
Module: Loaded System
unix: cache = no
unix: passwd = "(null)"
unix: shadow = "/etc/shadow"
unix: group = "(null)"
unix: radwtmp = "/var/log/radius/radwtmp"
unix: usegroup = no
unix: cache_reload = 600
Module: Instantiated unix (unix)
Module: Loaded eap
eap: default_eap_type = "leap"
eap: timer_expire = 60
eap: ignore_unknown_eap_types = no
eap: cisco_accounting_username_bug = no
rlm_eap: Loaded and initialized type md5
rlm_eap: Loaded and initialized type leap
gtc: challenge = "Password: "
gtc: auth_type = "PAP"
rlm_eap: Loaded and initialized type gtc
mschapv2: with_ntdomain_hack = no
rlm_eap: Loaded and initialized type mschapv2
Module: Instantiated eap (eap)
Module: Loaded preprocess
preprocess: huntgroups = "/etc/raddb/huntgroups"
preprocess: hints = "/etc/raddb/hints"
preprocess: with_ascend_hack = no
preprocess: ascend_channels_per_line = 23
preprocess: with_ntdomain_hack = no
preprocess: with_specialix_jetstream_hack = no
preprocess: with_cisco_vsa_hack = no
Module: Instantiated preprocess (preprocess)
Module: Loaded realm
realm: format = "suffix"
realm: delimiter = "@"
realm: ignore_default = no
realm: ignore_null = no
Module: Instantiated realm (suffix)
Module: Loaded files
files: usersfile = "/etc/raddb/users"
files: acctusersfile = "/etc/raddb/acct_users"
files: preproxy_usersfile = "/etc/raddb/preproxy_users"
files: compat = "no"
Module: Instantiated files (files)
Module: Loaded Acct-Unique-Session-Id
acct_unique: key = "User-Name, Acct-Session-Id, NAS-IP-Address,
Client-IP-Address, NAS-Port"
Module: Instantiated acct_unique (acct_unique)
Module: Loaded detail
detail: detailfile =
"/var/log/radius/radacct/%{Client-IP-Address}/detail-%Y%m%d"
detail: detailperm = 384
detail: dirperm = 493
detail: locking = no
Module: Instantiated detail (detail)
Module: Loaded radutmp
radutmp: filename = "/var/log/radius/radutmp"
radutmp: username = "%{User-Name}"
radutmp: case_sensitive = yes
radutmp: check_with_nas = yes
radutmp: perm = 384
radutmp: callerid = yes
Module: Instantiated radutmp (radutmp)
Listening on authentication *:1812
Listening on accounting *:1813
Listening on proxy *:1814
Ready to process requests.
rad_recv: Access-Request packet from host 10.0.40.175:21651, id=126,
length=129
User-Name = "wlse"
Framed-MTU = 1400
Called-Station-Id = "000d.bc04.7395"
Calling-Station-Id = "00c0.9f3a.6fac"
Message-Authenticator = 0x0ca63d70c58bb77302e09a42edd44ec5
EAP-Message = 0x0202000901776c7365
NAS-Port-Type = Wireless-802.11
NAS-Port = 1426
Service-Type = Framed-User
NAS-IP-Address = 10.0.40.175
NAS-Identifier = "pvldcwap01"
Processing the authorize section of radiusd.conf
modcall: entering group authorize for request 0
modcall[authorize]: module "preprocess" returns ok for request 0
modcall[authorize]: module "chap" returns noop for request 0
modcall[authorize]: module "mschap" returns noop for request 0
rlm_realm: No '@' in User-Name = "wlse", looking up realm NULL
rlm_realm: No such realm "NULL"
modcall[authorize]: module "suffix" returns noop for request 0
rlm_eap: EAP packet type response id 2 length 9
rlm_eap: No EAP Start, assuming it's an on-going EAP conversation
modcall[authorize]: module "eap" returns updated for request 0
users: Matched DEFAULT at 152
users: Matched wlse at 155
modcall[authorize]: module "files" returns ok for request 0
modcall: group authorize returns updated for request 0
rad_check_password: Found Auth-Type EAP
auth: type "EAP"
Processing the authenticate section of radiusd.conf
modcall: entering group authenticate for request 0
rlm_eap: EAP Identity
rlm_eap: processing type leap
rlm_eap_leap: Stage 2
rlm_eap_leap: Issuing AP Challenge
rlm_eap_leap: Successfully initiated
rlm_eap: RT Modif EAP-Type = 17 EAP-LENGTH = 15
modcall[authenticate]: module "eap" returns handled for request 0
modcall: group authenticate returns handled for request 0
Sending Access-Challenge of id 126 to 10.0.40.175:21651
EAP-Message = 0x01030014110100085d5116f90d2af3b6776c7365
Message-Authenticator = 0x00000000000000000000000000000000
State = 0x83ed381cb2b4c25a091c57bceb29b594
Finished request 0
Going to the next request
--- Walking the entire request list ---
Waking up in 6 seconds...
rad_recv: Access-Request packet from host 10.0.40.175:21651, id=127,
length=174
User-Name = "wlse"
Framed-MTU = 1400
Called-Station-Id = "000d.bc04.7395"
Calling-Station-Id = "00c0.9f3a.6fac"
Message-Authenticator = 0xbc396f77660ec5001b3bca8c128079eb
EAP-Message =
0x0203002411010018fe5c17cd27cc6f5decc9568c154793e23b22fa1292a631ff776c7365
NAS-Port-Type = Wireless-802.11
NAS-Port = 1426
State = 0x83ed381cb2b4c25a091c57bceb29b594
Service-Type = Framed-User
NAS-IP-Address = 10.0.40.175
NAS-Identifier = "pvldcwap01"
Processing the authorize section of radiusd.conf
modcall: entering group authorize for request 1
modcall[authorize]: module "preprocess" returns ok for request 1
modcall[authorize]: module "chap" returns noop for request 1
modcall[authorize]: module "mschap" returns noop for request 1
rlm_realm: No '@' in User-Name = "wlse", looking up realm NULL
rlm_realm: No such realm "NULL"
modcall[authorize]: module "suffix" returns noop for request 1
rlm_eap: EAP packet type response id 3 length 36
rlm_eap: No EAP Start, assuming it's an on-going EAP conversation
modcall[authorize]: module "eap" returns updated for request 1
users: Matched DEFAULT at 152
users: Matched wlse at 155
modcall[authorize]: module "files" returns ok for request 1
modcall: group authorize returns updated for request 1
rad_check_password: Found Auth-Type EAP
auth: type "EAP"
Processing the authenticate section of radiusd.conf
modcall: entering group authenticate for request 1
rlm_eap: Request found, released from the list
rlm_eap: EAP/leap
rlm_eap: processing type leap
rlm_eap_leap: Stage 4
rlm_eap_leap: NtChallengeResponse from AP is valid
rlm_eap: Underlying EAP-Type set EAP ID to 3
rlm_eap: RT Modif EAP-Type = 0 EAP-LENGTH = 0
modcall[authenticate]: module "eap" returns ok for request 1
modcall: group authenticate returns ok for request 1
Sending Access-Challenge of id 127 to 10.0.40.175:21651
EAP-Message = 0x03030004
Message-Authenticator = 0x00000000000000000000000000000000
State = 0xbd8e972e3bb4ff4402f1a8f51c0a172a
Finished request 1
Going to the next request
Waking up in 6 seconds...
rad_recv: Access-Request packet from host 10.0.40.175:21651, id=128,
length=158
User-Name = "wlse"
Framed-MTU = 1400
Called-Station-Id = "000d.bc04.7395"
Calling-Station-Id = "00c0.9f3a.6fac"
Message-Authenticator = 0x3aff35f877c3aa9f22359eaa9e2da23d
EAP-Message = 0x01030014110100086f3c9e5152681e6f776c7365
NAS-Port-Type = Wireless-802.11
NAS-Port = 1426
State = 0xbd8e972e3bb4ff4402f1a8f51c0a172a
Service-Type = Framed-User
NAS-IP-Address = 10.0.40.175
NAS-Identifier = "pvldcwap01"
Processing the authorize section of radiusd.conf
modcall: entering group authorize for request 2
modcall[authorize]: module "preprocess" returns ok for request 2
modcall[authorize]: module "chap" returns noop for request 2
modcall[authorize]: module "mschap" returns noop for request 2
rlm_realm: No '@' in User-Name = "wlse", looking up realm NULL
rlm_realm: No such realm "NULL"
modcall[authorize]: module "suffix" returns noop for request 2
rlm_eap: EAP packet type request id 3 length 20
rlm_eap: No EAP Start, assuming it's an on-going EAP conversation
modcall[authorize]: module "eap" returns updated for request 2
users: Matched DEFAULT at 152
users: Matched wlse at 155
modcall[authorize]: module "files" returns ok for request 2
modcall: group authorize returns updated for request 2
rad_check_password: Found Auth-Type EAP
auth: type "EAP"
Processing the authenticate section of radiusd.conf
modcall: entering group authenticate for request 2
rlm_eap: Request found, released from the list
rlm_eap: EAP/leap
rlm_eap: processing type leap
rlm_eap_leap: Stage 6
rlm_eap: RT Modif EAP-Type = 17 EAP-LENGTH = 31
rlm_eap: Freeing handler
modcall[authenticate]: module "eap" returns handled for request 2
modcall: group authenticate returns handled for request 2
Sending Access-Accept of id 128 to 10.0.40.175:21651
Cisco-AVPair +=
"leap:session-key=\203\313\302\325\356\033\270\352\021\266\254fd\261\r\020\347B._\347\tB\316\347\247\327\034%\2626\237\007\306"
EAP-Message =
0x0204002411010018db8f4a834550cf01e0f8c5200e69e4f44bfa6e7da776579b776c7365
Message-Authenticator = 0x00000000000000000000000000000000
User-Name = "wlse"
Finished request 2
Going to the next request
Waking up in 6 seconds...
--- Walking the entire request list ---
Cleaning up request 0 ID 126 with timestamp 4167290a
Cleaning up request 1 ID 127 with timestamp 4167290a
Cleaning up request 2 ID 128 with timestamp 4167290a
Nothing to do. Sleeping until we see a request.
rad_recv: Access-Request packet from host 10.0.40.175:21651, id=129,
length=129
User-Name = "wlse"
Framed-MTU = 1400
Called-Station-Id = "000d.bc04.7395"
Calling-Station-Id = "000d.bc04.7395"
Message-Authenticator = 0xd9eb22dacfcef1a67453ce5f6ce91473
EAP-Message = 0x0202000901776c7365
NAS-Port-Type = Wireless-802.11
NAS-Port = 1427
Service-Type = Framed-User
NAS-IP-Address = 10.0.40.175
NAS-Identifier = "pvldcwap01"
Processing the authorize section of radiusd.conf
modcall: entering group authorize for request 3
modcall[authorize]: module "preprocess" returns ok for request 3
modcall[authorize]: module "chap" returns noop for request 3
modcall[authorize]: module "mschap" returns noop for request 3
rlm_realm: No '@' in User-Name = "wlse", looking up realm NULL
rlm_realm: No such realm "NULL"
modcall[authorize]: module "suffix" returns noop for request 3
rlm_eap: EAP packet type response id 2 length 9
rlm_eap: No EAP Start, assuming it's an on-going EAP conversation
modcall[authorize]: module "eap" returns updated for request 3
users: Matched DEFAULT at 152
users: Matched wlse at 155
modcall[authorize]: module "files" returns ok for request 3
modcall: group authorize returns updated for request 3
rad_check_password: Found Auth-Type EAP
auth: type "EAP"
Processing the authenticate section of radiusd.conf
modcall: entering group authenticate for request 3
rlm_eap: EAP Identity
rlm_eap: processing type leap
rlm_eap_leap: Stage 2
rlm_eap_leap: Issuing AP Challenge
rlm_eap_leap: Successfully initiated
rlm_eap: RT Modif EAP-Type = 17 EAP-LENGTH = 15
modcall[authenticate]: module "eap" returns handled for request 3
modcall: group authenticate returns handled for request 3
Sending Access-Challenge of id 129 to 10.0.40.175:21651
EAP-Message = 0x01030014110100085d0117693d7b9fbb776c7365
Message-Authenticator = 0x00000000000000000000000000000000
State = 0x320c5d35996f62d6afdfeae3c826da1c
Finished request 3
Going to the next request
--- Walking the entire request list ---
Waking up in 6 seconds...
rad_recv: Access-Request packet from host 10.0.40.175:21651, id=130,
length=129
User-Name = "wlse"
Framed-MTU = 1400
Called-Station-Id = "000d.bc04.7395"
Calling-Station-Id = "0011.20fd.9c31"
Message-Authenticator = 0x1465fc6448287b06937f3484da3d0f88
EAP-Message = 0x0202000901776c7365
NAS-Port-Type = Wireless-802.11
NAS-Port = 1428
Service-Type = Framed-User
NAS-IP-Address = 10.0.40.175
NAS-Identifier = "pvldcwap01"
Processing the authorize section of radiusd.conf
modcall: entering group authorize for request 4
modcall[authorize]: module "preprocess" returns ok for request 4
modcall[authorize]: module "chap" returns noop for request 4
modcall[authorize]: module "mschap" returns noop for request 4
rlm_realm: No '@' in User-Name = "wlse", looking up realm NULL
rlm_realm: No such realm "NULL"
modcall[authorize]: module "suffix" returns noop for request 4
rlm_eap: EAP packet type response id 2 length 9
rlm_eap: No EAP Start, assuming it's an on-going EAP conversation
modcall[authorize]: module "eap" returns updated for request 4
users: Matched DEFAULT at 152
users: Matched wlse at 155
modcall[authorize]: module "files" returns ok for request 4
modcall: group authorize returns updated for request 4
rad_check_password: Found Auth-Type EAP
auth: type "EAP"
Processing the authenticate section of radiusd.conf
modcall: entering group authenticate for request 4
rlm_eap: EAP Identity
rlm_eap: processing type leap
rlm_eap_leap: Stage 2
rlm_eap_leap: Issuing AP Challenge
rlm_eap_leap: Successfully initiated
rlm_eap: RT Modif EAP-Type = 17 EAP-LENGTH = 15
modcall[authenticate]: module "eap" returns handled for request 4
modcall: group authenticate returns handled for request 4
Sending Access-Challenge of id 130 to 10.0.40.175:21651
EAP-Message = 0x0103001411010008059cb9f57a3d80d1776c7365
Message-Authenticator = 0x00000000000000000000000000000000
State = 0x47eca79adc0816ae891c2b8279dcba07
Finished request 4
Going to the next request
Waking up in 6 seconds...
rad_recv: Access-Request packet from host 10.0.40.175:21651, id=131,
length=174
User-Name = "wlse"
Framed-MTU = 1400
Called-Station-Id = "000d.bc04.7395"
Calling-Station-Id = "000d.bc04.7395"
Message-Authenticator = 0x5a3c15c945ef87ab049bf54571c18293
EAP-Message =
0x0203002411010018ec8250f098d1e55c90df458bda89bad1a0bb0006d769ca9a776c7365
NAS-Port-Type = Wireless-802.11
NAS-Port = 1427
State = 0x320c5d35996f62d6afdfeae3c826da1c
Service-Type = Framed-User
NAS-IP-Address = 10.0.40.175
NAS-Identifier = "pvldcwap01"
Processing the authorize section of radiusd.conf
modcall: entering group authorize for request 5
modcall[authorize]: module "preprocess" returns ok for request 5
modcall[authorize]: module "chap" returns noop for request 5
modcall[authorize]: module "mschap" returns noop for request 5
rlm_realm: No '@' in User-Name = "wlse", looking up realm NULL
rlm_realm: No such realm "NULL"
modcall[authorize]: module "suffix" returns noop for request 5
rlm_eap: EAP packet type response id 3 length 36
rlm_eap: No EAP Start, assuming it's an on-going EAP conversation
modcall[authorize]: module "eap" returns updated for request 5
users: Matched DEFAULT at 152
users: Matched wlse at 155
modcall[authorize]: module "files" returns ok for request 5
modcall: group authorize returns updated for request 5
rad_check_password: Found Auth-Type EAP
auth: type "EAP"
Processing the authenticate section of radiusd.conf
modcall: entering group authenticate for request 5
rlm_eap: Request found, released from the list
rlm_eap: EAP/leap
rlm_eap: processing type leap
rlm_eap_leap: Stage 4
rlm_eap_leap: NtChallengeResponse from AP is valid
rlm_eap: Underlying EAP-Type set EAP ID to 3
rlm_eap: RT Modif EAP-Type = 0 EAP-LENGTH = 0
modcall[authenticate]: module "eap" returns ok for request 5
modcall: group authenticate returns ok for request 5
Sending Access-Challenge of id 131 to 10.0.40.175:21651
EAP-Message = 0x03030004
Message-Authenticator = 0x00000000000000000000000000000000
State = 0x793a398bbc8f87691709ddfa825d7f45
Finished request 5
Going to the next request
Waking up in 6 seconds...
rad_recv: Access-Request packet from host 10.0.40.175:21651, id=132,
length=174
User-Name = "wlse"
Framed-MTU = 1400
Called-Station-Id = "000d.bc04.7395"
Calling-Station-Id = "0011.20fd.9c31"
Message-Authenticator = 0x2abfe81cecbaebe3bf0726afac9fb511
EAP-Message =
0x0203002411010018cf6036a5d9daa10be30aa8644ae060fd2a306f6b411930f0776c7365
NAS-Port-Type = Wireless-802.11
NAS-Port = 1428
State = 0x47eca79adc0816ae891c2b8279dcba07
Service-Type = Framed-User
NAS-IP-Address = 10.0.40.175
NAS-Identifier = "pvldcwap01"
Processing the authorize section of radiusd.conf
modcall: entering group authorize for request 6
modcall[authorize]: module "preprocess" returns ok for request 6
modcall[authorize]: module "chap" returns noop for request 6
modcall[authorize]: module "mschap" returns noop for request 6
rlm_realm: No '@' in User-Name = "wlse", looking up realm NULL
rlm_realm: No such realm "NULL"
modcall[authorize]: module "suffix" returns noop for request 6
rlm_eap: EAP packet type response id 3 length 36
rlm_eap: No EAP Start, assuming it's an on-going EAP conversation
modcall[authorize]: module "eap" returns updated for request 6
users: Matched DEFAULT at 152
users: Matched wlse at 155
modcall[authorize]: module "files" returns ok for request 6
modcall: group authorize returns updated for request 6
rad_check_password: Found Auth-Type EAP
auth: type "EAP"
Processing the authenticate section of radiusd.conf
modcall: entering group authenticate for request 6
rlm_eap: Request found, released from the list
rlm_eap: EAP/leap
rlm_eap: processing type leap
rlm_eap_leap: Stage 4
rlm_eap_leap: NtChallengeResponse from AP is valid
rlm_eap: Underlying EAP-Type set EAP ID to 3
rlm_eap: RT Modif EAP-Type = 0 EAP-LENGTH = 0
modcall[authenticate]: module "eap" returns ok for request 6
modcall: group authenticate returns ok for request 6
Sending Access-Challenge of id 132 to 10.0.40.175:21651
EAP-Message = 0x03030004
Message-Authenticator = 0x00000000000000000000000000000000
State = 0x1f76e184ca96b6c508d446e7592d6aee
Finished request 6
Going to the next request
Waking up in 6 seconds...
rad_recv: Access-Request packet from host 10.0.40.175:21651, id=133,
length=154
User-Name = "wlse"
Framed-MTU = 1400
Called-Station-Id = "000d.bc04.7395"
Calling-Station-Id = "000d.bc04.7395"
Message-Authenticator = 0xbfd297e17485a7e0b5ca2b3d6f4c080b
EAP-Message = 0x0103001011010008aeca60cbf657eb1f
NAS-Port-Type = Wireless-802.11
NAS-Port = 1427
State = 0x793a398bbc8f87691709ddfa825d7f45
Service-Type = Framed-User
NAS-IP-Address = 10.0.40.175
NAS-Identifier = "pvldcwap01"
Processing the authorize section of radiusd.conf
modcall: entering group authorize for request 7
modcall[authorize]: module "preprocess" returns ok for request 7
modcall[authorize]: module "chap" returns noop for request 7
modcall[authorize]: module "mschap" returns noop for request 7
rlm_realm: No '@' in User-Name = "wlse", looking up realm NULL
rlm_realm: No such realm "NULL"
modcall[authorize]: module "suffix" returns noop for request 7
rlm_eap: EAP packet type request id 3 length 16
rlm_eap: No EAP Start, assuming it's an on-going EAP conversation
modcall[authorize]: module "eap" returns updated for request 7
users: Matched DEFAULT at 152
users: Matched wlse at 155
modcall[authorize]: module "files" returns ok for request 7
modcall: group authorize returns updated for request 7
rad_check_password: Found Auth-Type EAP
auth: type "EAP"
Processing the authenticate section of radiusd.conf
modcall: entering group authenticate for request 7
rlm_eap: Request found, released from the list
rlm_eap: EAP/leap
rlm_eap: processing type leap
rlm_eap_leap: Stage 6
rlm_eap: RT Modif EAP-Type = 17 EAP-LENGTH = 31
rlm_eap: Freeing handler
modcall[authenticate]: module "eap" returns handled for request 7
modcall: group authenticate returns handled for request 7
Sending Access-Accept of id 133 to 10.0.40.175:21651
Cisco-AVPair +=
"leap:session-key=\210\210G\304$#\246c\014\304\361"RBu\252\205MN\304\261\252\333\371\317\347\331\037`\201\r\341\034\237"
EAP-Message =
0x0204002411010018707e6059ace2218dcf83ccb9d6d8ba5944e58003c5af6682776c7365
Message-Authenticator = 0x00000000000000000000000000000000
User-Name = "wlse"
Finished request 7
Going to the next request
Waking up in 6 seconds...
rad_recv: Access-Request packet from host 10.0.40.175:21651, id=134,
length=154
User-Name = "wlse"
Framed-MTU = 1400
Called-Station-Id = "000d.bc04.7395"
Calling-Station-Id = "0011.20fd.9c31"
Message-Authenticator = 0xf81a7d5adc2e20df3f0a273fd26c3374
EAP-Message = 0x010300101101000888f29515b0c19082
NAS-Port-Type = Wireless-802.11
NAS-Port = 1428
State = 0x1f76e184ca96b6c508d446e7592d6aee
Service-Type = Framed-User
NAS-IP-Address = 10.0.40.175
NAS-Identifier = "pvldcwap01"
Processing the authorize section of radiusd.conf
modcall: entering group authorize for request 8
modcall[authorize]: module "preprocess" returns ok for request 8
modcall[authorize]: module "chap" returns noop for request 8
modcall[authorize]: module "mschap" returns noop for request 8
rlm_realm: No '@' in User-Name = "wlse", looking up realm NULL
rlm_realm: No such realm "NULL"
modcall[authorize]: module "suffix" returns noop for request 8
rlm_eap: EAP packet type request id 3 length 16
rlm_eap: No EAP Start, assuming it's an on-going EAP conversation
modcall[authorize]: module "eap" returns updated for request 8
users: Matched DEFAULT at 152
users: Matched wlse at 155
modcall[authorize]: module "files" returns ok for request 8
modcall: group authorize returns updated for request 8
rad_check_password: Found Auth-Type EAP
auth: type "EAP"
Processing the authenticate section of radiusd.conf
modcall: entering group authenticate for request 8
rlm_eap: Request found, released from the list
rlm_eap: EAP/leap
rlm_eap: processing type leap
rlm_eap_leap: Stage 6
rlm_eap: RT Modif EAP-Type = 17 EAP-LENGTH = 31
rlm_eap: Freeing handler
modcall[authenticate]: module "eap" returns handled for request 8
modcall: group authenticate returns handled for request 8
Sending Access-Accept of id 134 to 10.0.40.175:21651
Cisco-AVPair +=
"leap:session-key=\222\273~\026\315\326\213>k\334%D="\313\370\036\216\026\006\031\256.\262i\023.\322\007\220\314\006\374s"
EAP-Message =
0x02040024110100188b254dc9e4e60d953827e0c2d1b99b344fdd33a4294ed244776c7365
Message-Authenticator = 0x00000000000000000000000000000000
User-Name = "wlse"
Finished request 8
Going to the next request
Waking up in 6 seconds...
--- Walking the entire request list ---
Cleaning up request 3 ID 129 with timestamp 41672914
Cleaning up request 4 ID 130 with timestamp 41672914
Cleaning up request 5 ID 131 with timestamp 41672914
Cleaning up request 6 ID 132 with timestamp 41672914
Cleaning up request 7 ID 133 with timestamp 41672914
Cleaning up request 8 ID 134 with timestamp 41672914
Nothing to do. Sleeping until we see a request.
rad_recv: Access-Request packet from host 10.0.40.175:21651, id=135,
length=129
User-Name = "wlse"
Framed-MTU = 1400
Called-Station-Id = "000d.bc04.7395"
Calling-Station-Id = "00c0.9f3a.6fac"
Message-Authenticator = 0xf4fb668cc4858fe0c213209d7db6892c
EAP-Message = 0x0202000901776c7365
NAS-Port-Type = Wireless-802.11
NAS-Port = 1429
Service-Type = Framed-User
NAS-IP-Address = 10.0.40.175
NAS-Identifier = "pvldcwap01"
Processing the authorize section of radiusd.conf
modcall: entering group authorize for request 9
modcall[authorize]: module "preprocess" returns ok for request 9
modcall[authorize]: module "chap" returns noop for request 9
modcall[authorize]: module "mschap" returns noop for request 9
rlm_realm: No '@' in User-Name = "wlse", looking up realm NULL
rlm_realm: No such realm "NULL"
modcall[authorize]: module "suffix" returns noop for request 9
rlm_eap: EAP packet type response id 2 length 9
rlm_eap: No EAP Start, assuming it's an on-going EAP conversation
modcall[authorize]: module "eap" returns updated for request 9
users: Matched DEFAULT at 152
users: Matched wlse at 155
modcall[authorize]: module "files" returns ok for request 9
modcall: group authorize returns updated for request 9
rad_check_password: Found Auth-Type EAP
auth: type "EAP"
Processing the authenticate section of radiusd.conf
modcall: entering group authenticate for request 9
rlm_eap: EAP Identity
rlm_eap: processing type leap
rlm_eap_leap: Stage 2
rlm_eap_leap: Issuing AP Challenge
rlm_eap_leap: Successfully initiated
rlm_eap: RT Modif EAP-Type = 17 EAP-LENGTH = 15
modcall[authenticate]: module "eap" returns handled for request 9
modcall: group authenticate returns handled for request 9
Sending Access-Challenge of id 135 to 10.0.40.175:21651
EAP-Message = 0x0103001411010008c2f8f6d868f07d54776c7365
Message-Authenticator = 0x00000000000000000000000000000000
State = 0x26e1135e1e57896eb2b6ad4f21a5c064
Finished request 9
Going to the next request
--- Walking the entire request list ---
Waking up in 6 seconds...
rad_recv: Access-Request packet from host 10.0.40.175:21651, id=136,
length=174
User-Name = "wlse"
Framed-MTU = 1400
Called-Station-Id = "000d.bc04.7395"
Calling-Station-Id = "00c0.9f3a.6fac"
Message-Authenticator = 0xccefffdfa0ec22a1a8da2b2cdfa7f335
EAP-Message =
0x020300241101001826c9fefc0ae8ad925c3d0686eb55f4642b2acb0b75e95d82776c7365
NAS-Port-Type = Wireless-802.11
NAS-Port = 1429
State = 0x26e1135e1e57896eb2b6ad4f21a5c064
Service-Type = Framed-User
NAS-IP-Address = 10.0.40.175
NAS-Identifier = "pvldcwap01"
Processing the authorize section of radiusd.conf
modcall: entering group authorize for request 10
modcall[authorize]: module "preprocess" returns ok for request 10
modcall[authorize]: module "chap" returns noop for request 10
modcall[authorize]: module "mschap" returns noop for request 10
rlm_realm: No '@' in User-Name = "wlse", looking up realm NULL
rlm_realm: No such realm "NULL"
modcall[authorize]: module "suffix" returns noop for request 10
rlm_eap: EAP packet type response id 3 length 36
rlm_eap: No EAP Start, assuming it's an on-going EAP conversation
modcall[authorize]: module "eap" returns updated for request 10
users: Matched DEFAULT at 152
users: Matched wlse at 155
modcall[authorize]: module "files" returns ok for request 10
modcall: group authorize returns updated for request 10
rad_check_password: Found Auth-Type EAP
auth: type "EAP"
Processing the authenticate section of radiusd.conf
modcall: entering group authenticate for request 10
rlm_eap: Request found, released from the list
rlm_eap: EAP/leap
rlm_eap: processing type leap
rlm_eap_leap: Stage 4
rlm_eap_leap: NtChallengeResponse from AP is valid
rlm_eap: Underlying EAP-Type set EAP ID to 3
rlm_eap: RT Modif EAP-Type = 0 EAP-LENGTH = 0
modcall[authenticate]: module "eap" returns ok for request 10
modcall: group authenticate returns ok for request 10
Sending Access-Challenge of id 136 to 10.0.40.175:21651
EAP-Message = 0x03030004
Message-Authenticator = 0x00000000000000000000000000000000
State = 0xb2851e3088616edf1a166b22ee6bfc4a
Finished request 10
Going to the next request
Waking up in 6 seconds...
rad_recv: Access-Request packet from host 10.0.40.175:21651, id=137,
length=158
User-Name = "wlse"
Framed-MTU = 1400
Called-Station-Id = "000d.bc04.7395"
Calling-Station-Id = "00c0.9f3a.6fac"
Message-Authenticator = 0x60c154c65b7bd0319c3ef275b9372837
EAP-Message = 0x01030014110100087882ac566c98c33a776c7365
NAS-Port-Type = Wireless-802.11
NAS-Port = 1429
State = 0xb2851e3088616edf1a166b22ee6bfc4a
Service-Type = Framed-User
NAS-IP-Address = 10.0.40.175
NAS-Identifier = "pvldcwap01"
Processing the authorize section of radiusd.conf
modcall: entering group authorize for request 11
modcall[authorize]: module "preprocess" returns ok for request 11
modcall[authorize]: module "chap" returns noop for request 11
modcall[authorize]: module "mschap" returns noop for request 11
rlm_realm: No '@' in User-Name = "wlse", looking up realm NULL
rlm_realm: No such realm "NULL"
modcall[authorize]: module "suffix" returns noop for request 11
rlm_eap: EAP packet type request id 3 length 20
rlm_eap: No EAP Start, assuming it's an on-going EAP conversation
modcall[authorize]: module "eap" returns updated for request 11
users: Matched DEFAULT at 152
users: Matched wlse at 155
modcall[authorize]: module "files" returns ok for request 11
modcall: group authorize returns updated for request 11
rad_check_password: Found Auth-Type EAP
auth: type "EAP"
Processing the authenticate section of radiusd.conf
modcall: entering group authenticate for request 11
rlm_eap: Request found, released from the list
rlm_eap: EAP/leap
rlm_eap: processing type leap
rlm_eap_leap: Stage 6
rlm_eap: RT Modif EAP-Type = 17 EAP-LENGTH = 31
rlm_eap: Freeing handler
modcall[authenticate]: module "eap" returns handled for request 11
modcall: group authenticate returns handled for request 11
Sending Access-Accept of id 137 to 10.0.40.175:21651
Cisco-AVPair +=
"leap:session-key=\234\313\255a\337\306\331_\357\300\2043\214\214\270'\373`(|I\343t\2572=,E"\335\250\252\0170"
EAP-Message =
0x02040024110100186e8f7e68f6ac9a7a08560de9804c5104fa271066c03cacec776c7365
Message-Authenticator = 0x00000000000000000000000000000000
User-Name = "wlse"
Finished request 11
Going to the next request
Waking up in 6 seconds...
--- Walking the entire request list ---
Cleaning up request 9 ID 135 with timestamp 41672928
Cleaning up request 10 ID 136 with timestamp 41672928
Cleaning up request 11 ID 137 with timestamp 41672928
Nothing to do. Sleeping until we see a request.
=================
-
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html