Security

 View Only
  • 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

    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