10-18-2019 05:50 AM - edited 10-18-2019 08:36 AM
Hello,
I'm not sure is this is correct discussion group but I think yes, because I need some developer answer. Maybe somebody here can help.
Use case in short:
my setup:
above described steps in detail:
step1a: WLC and ISE configuation is clear. with redirection is operational. no problem here.
step1b: ISE configuration is clear. ISE send in RADIUS answer some av-pairs:
step2a: guest is connected and checking internet connectivity. matches (deny definition) ACL (defined in "url-redirect-acl" radius answer from step1b). WLC send back to guest "HTTP Location: <redirecting-location>" (redirecting location is "url-redirect" value from radius answer in steb1b)
step2b: guest sends "GET https://<ext-portal>/?sessionId=sessionIdValue"
step2c: script on ext-portal get's guest data (It is not possible use RestAPI for this reason. this is only one option how to get information from guest).
How to get "session information" values:
GET https://<ise>/admin/API/mnt/Session/Active/SessionID/<sessionId>/0 <activeSessionList noOfActiveSession="1"> <activeSession> <calling_station_id>6C:FA:A7:44:D8:B6</calling_station_id> <orig_calling_station_id>6c-fa-a7-44-d8-b6</orig_calling_station_id> <session_state_bit>0</session_state_bit> <session_source>0</session_source> <acct_session_time>0</acct_session_time> <nas_ip_address>192.168.119.10</nas_ip_address> <framed_ipv6_address/> <auth_method>mab</auth_method> <auth_protocol>Lookup</auth_protocol> <endpoint_policy>Microsoft-Workstation</endpoint_policy> <server>lab-ise</server> <paks_in>0</paks_in> <paks_out>0</paks_out> <bytes_in>0</bytes_in> <bytes_out>0</bytes_out> </activeSession> </activeSessionList>
step3: guest is entering login and pass. webform's action send data back to external guest portal (server side). in other words I have:
step4: QUESTION
Everything till step4 is clear and working. I'd like to solve QUESTION1 (build correct CoA to WLC) because i think it's better solution. If it's not possible, my other QUESITION2 is about authenticating guest against HTTP build-in (ISE) portal as backend HTTP call from ext-portal script if it's possible.
I'm starting from this document: https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/sec_usr_aaa/configuration/15-sy/sec-usr-aaa-15-sy-book/sec-rad-coa.html.
Here is part of PHP script with CoA list of parameters that are sending to WLC (RADIUS_* are constants based on RFC radius atributes):
radius_create_request($res, RADIUS_COA_REQUEST); radius_put_addr($res, RADIUS_NAS_IP_ADDRESS, $nas_ip_address); radius_put_string($res, RADIUS_CALLING_STATION_ID, $calling_station_id); radius_put_string($res, RADIUS_USER_NAME, $user); radius_put_vendor_string($res, RADIUS_VENDOR_CISCO, RADIUS_CISCO_AV_PAIR, "subscriber:command=reauthenticate"); // radius_put_string($res, RADIUS_ACCT_SESSION_ID, $sessionId); << I'm not sure if this is required
Can anybody help with this? Thanks.
At the end: I can't use build-in ISE guest portal because above described scenario is a part of bigger customized solution for customer.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide