Security

last person joined: 11 hours ago 

Forum to discuss Enterprise security using HPE Aruba Networking NAC solutions (ClearPass), Introspect, VIA, 360 Security Exchange, Extensions, and Policy Enforcement Firewall (PEF).
Expand all | Collapse all

To be alerted when guest logs into open captive portal guest access

This thread has been viewed 0 times
  • 1.  To be alerted when guest logs into open captive portal guest access

    Posted Jul 17, 2014 11:39 AM

    Hi Guys,

     

    Not sure if anyone has ran into this kind of request. I am running an Aruba Mobility Controller. As we occasionally product launch events, we have to offer free wifi during those product launch.

     

    I have created an SSID where guests will see a captive portal. They will need to key in their email address only before they can access the Internet. Can the administrators (me) be alerted via email whenever someone logs in via this SSID?



  • 2.  RE: To be alerted when guest logs into open captive portal guest access

    Posted Jul 17, 2014 02:04 PM
    I haven't encountered that specific request but if you have access to Airwave you could perhaps configure a trigger based on your desired requirements to alert you.


  • 3.  RE: To be alerted when guest logs into open captive portal guest access

    Posted Jul 17, 2014 09:13 PM
    Hi Jamie,

    No. I don't have Airwave unfortunately.

    Correct me if I am wrong, when guest access into my captive portal. Since I don't provide any form if authentication, just an email address to identify them, the Mobility Controller should at least store this as an event log. I am not sure what severity level this is. Maybe it is classified as 'informational' or 'notification'. Is there a way that this event log be sent via email?

    Digging through the syslog server is a last resort.


  • 4.  RE: To be alerted when guest logs into open captive portal guest access

    EMPLOYEE
    Posted Jul 17, 2014 10:49 PM
    An other option would be to use a HTML page that also sends an email when the guest clicks accept.


  • 5.  RE: To be alerted when guest logs into open captive portal guest access

    Posted Jul 18, 2014 09:32 AM
    Using PHP? Like this?

    //variables

    //form contents
    $txtMessage=$_POST['message'];
    $txtMail=$_POST['email'];
    $txtMessage = str_replace(array("
    ","\r"),'',$txtMessage);
    $txtEmail = str_replace(array("
    ","\r"),'',$txtMail);
    $Myemail="your email address here";


    $message ="Message :\t$txtMessage


    "
    $subject = "Message from - ".$txtEmail;
    $mailheaders = "From: $txtEmail <>
    ";
    $mailheaders .= "Reply-To: $txtEmail

    ";

    //send mail
    mail($Myemail, $subject, $message , $mailheaders);
    ?>


  • 6.  RE: To be alerted when guest logs into open captive portal guest access

    EMPLOYEE
    Posted Jul 18, 2014 10:40 AM
    I can do basic coding and that's about it :) so hopefully someone will chime in that knows what they are doing. I'll dig around today on arubapedia and see if I can find you some samples.