Security

last person joined: yesterday 

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

Change Guest Receipt/Sponsor FQDN

This thread has been viewed 10 times
  • 1.  Change Guest Receipt/Sponsor FQDN

    Posted Mar 19, 2018 03:22 PM

    Hi all,

     

    I would like to change the URL that is written in the guest sponsorship emails to reflect the proper FQDN. Currently it points directly to one of the servers (not the cluster IP) with an incorrect domain for the installed certificate.

     

    When I checked on it, it's a big string of variables and whatnot.

     

    <a href="{'guest_register_confirm.php'|NwaGetAppUrl:false:$u.require_auth}?{if $u.source}gsr_id={$u.source|rawurlencode}&{/if}token={$u.register_token|rawurlencode}" target="_blank">

    Is there somewhere where I can tell Guest to use the correct FQDN?

     

    Thanks,

    --Ben



  • 2.  RE: Change Guest Receipt/Sponsor FQDN
    Best Answer

    EMPLOYEE
    Posted Mar 20, 2018 07:51 AM

    Hi,

     

    You can hard code the correct FQDN, just replace "{'guest_register_confirm.php'|NwaGetAppUrl:false:$u.require_auth}" to "https://<clearpass-fqdn>/guest/guest_register_confirm.php".

     

    Ex:

    <a href="https://<clearpass-fqdn>/guest/guest_register_confirm.php?{if $u.source}gsr_id={$u.source|rawurlencode}&{/if}token={$u.register_token|rawurlencode}" target="_blank"> 

     



  • 3.  RE: Change Guest Receipt/Sponsor FQDN

    Posted Mar 20, 2018 10:45 AM

    Thank you, that did work fine. I thought there might be a variable stored somewhere that I could populate with the correct information.

     

    This works fine though!

     

    Thanks again,

    --Ben