Security

last person joined: 17 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

Sponsor aproval log in button

This thread has been viewed 5 times
  • 1.  Sponsor aproval log in button

    Posted Apr 26, 2017 07:24 PM

    Hello

    Is there a way to configure in the clearpass that when the sponsor aprove the guest visitor doesnt need to click log in button?

    Like for example

    The sponsor aprove and then the client get redirected automatically without him to click log in button

     

    Cheers

    Carlos



  • 2.  RE: Sponsor aproval log in button

    Posted Apr 27, 2017 01:03 PM

    anyone?

     

    Cheers

    Carlos



  • 3.  RE: Sponsor aproval log in button

    EMPLOYEE
    Posted Apr 27, 2017 01:05 PM

    Why would you want to login someone without their knowledge?

     



  • 4.  RE: Sponsor aproval log in button

    Posted Apr 27, 2017 01:08 PM

    it was a requirement of the client. he was asking me if it was possible

    I told him that its there so that he knows when he gets authorized.   But he said he would like to be that way

    I mean as soon as the sponsor aprove, instead of the login button he just get redirected automatically to a webpage without having to click the log in button.

     

    Cheers

    Carlos



  • 5.  RE: Sponsor aproval log in button

    Posted Apr 27, 2017 01:08 PM

    they think that the user expirience would be better that way.



  • 6.  RE: Sponsor aproval log in button

    EMPLOYEE
    Posted Apr 27, 2017 01:11 PM

    How would they know that the person who requested the credentials would be at the computer?



  • 7.  RE: Sponsor aproval log in button

    Posted Apr 27, 2017 01:15 PM

    what they want is that when they register they get redirected tot eh log in page ok?  in which you see the log in  gray

    When the sponsor aprove THEN they get redirected withouth having to click on the log in button...

    Instead of the user click on it that they dont have to click it that they automatically get redirected without click on it.

    If they are looking at the page  with the log in  in gray i guess they would know that they do not have permission yet.

     

    Cheers

    Carlos



  • 8.  RE: Sponsor aproval log in button

    EMPLOYEE
    Posted Apr 28, 2017 09:08 AM

    Hi Carlos,

     

    We could use autosubmit script to automatically submit receipt.

     

    https://arubapedia.arubanetworks.com/arubapedia/index.php/How-to:_Auto_Submit_Amigopod_Receipt

     

    <script type="text/javascript"><!--{literal}
    addLoadEvent(function() {
    Nwa_SubmitForm(_form_name,"ID_"+_form_name+"_submit");
    });
    //-->
    {/literal}</script>

     

    Copy this scirpt in footers receipt page.

     

    Regards,

    Pavan

    If my post addresses your query, give kudos:)



  • 9.  RE: Sponsor aproval log in button

    Posted May 03, 2017 10:38 AM

    Hello Pavan

    It seems to works fine

    But i would like to put something like a delay or something... i see that he tries like everysecond but i would like that it tried like every 10 seconds to autosubmit

     

    I tried the fixed delay script but that didnt work... neither undesrtand it where do i put the seconds of delay?

     



  • 10.  RE: Sponsor aproval log in button

    EMPLOYEE
    Posted May 03, 2017 12:16 PM

    Hi,

     

    Try with below script

    Fixed Delay

    <script type="text/javascript"><!--{literal}
    window.setTimeout('Nwa_SubmitForm(_form_name,"ID_'+_form_name+'_submit");', DELAY_IN_SECONDS * 1000);
    //-->
    {/literal}</script>

    Regards,

    Pavan



  • 11.  RE: Sponsor aproval log in button

    Posted May 03, 2017 02:03 PM
    Hello
    Of thats the one on arubapedia i already tried that one and ididnt work...
    It does nothing like if the code wasnt there


  • 12.  RE: Sponsor aproval log in button
    Best Answer

    Posted May 04, 2017 12:23 PM

    i made it work the way  i wanted.

    I modify your first script to this

     

    {if $user.enabled}
    <script type="text/javascript"><!--{literal}
    addLoadEvent(function() {
    Nwa_SubmitForm(_form_name,"ID_"+_form_name+"_submit");
    });
    //-->
    {/literal}</script>
    {/if}

    If you see i added an IF the accoutn enable then run that... if not, it will not run

     

    Cheers

    Carlos



  • 13.  RE: Sponsor aproval log in button

    EMPLOYEE
    Posted May 04, 2017 12:34 PM

    Hi Carlos,

     

    Good to know! 

     

    Regards,

    Pavan