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

Browser redirect onguard agent download page for ubuntu

This thread has been viewed 0 times
  • 1.  Browser redirect onguard agent download page for ubuntu

    Posted Feb 08, 2016 10:20 AM

    Hi all,

     

    I was going thru the below page to create the agent download page for clearpass.

    http://community.arubanetworks.com/t5/AAA-NAC-Guest-Access-BYOD/ClearPass-Tips-and-Tricks-Custom-Attributes-Insight-Repository/td-p/228779

     

    The below html will determine if the OS is windows or MAC OS X. How do we do a check for Ubuntu.

    {if $_wpl.browser.is_windows_nt}
    <b><a href="" class="downloadbtn">Download ClearPass
    Secure Software for Windows</a></b><br>
    {if}
    {if $_wpl.browser.is_macosx}
    <b><a href="" class="downloadbtn">Download ClearPass
    Secure Software for Mac OSX</a></b>
    {/if}

     

    Thanks.

     

    Regards,

    Victor



  • 2.  RE: Browser redirect onguard agent download page for ubuntu
    Best Answer

    EMPLOYEE
    Posted Feb 08, 2016 10:32 AM

     You can use "is_ubuntu"

     

    {if $_wpl.browser.is_ubuntu}
    <b><a href="" class="downloadbtn">Download ClearPass
    Secure Software for Ubuntu</a></b>
    {/if}



  • 3.  RE: Browser redirect onguard agent download page for ubuntu

    Posted Feb 08, 2016 10:50 AM

    Thanks Tim :)