F5 is upgrading its customer support chat feature on My.F5.com. Chat support will be unavailable from 6am-10am PST on 1/20/26. Refer to K000159584 for details.

Forum Discussion

F5beginner_3849's avatar
F5beginner_3849
Icon for Nimbostratus rankNimbostratus
Mar 18, 2019

Select websites which will be authenticated

Hello All,

 

I have one virtual server and there I have assigned multiple IPs with port 80. I have created policy which assign website with pool.

 

I have already creatred Access policy and everything working properly, but I have to setup which websites will be authenticated and which one will be not authenticated.

 

So I need to select for example site will be not authenticated but will be authenticated.

 

Do you have any idea, how to solve it ?

 

Thank you

 

1 Reply

  • You could always use an iRule to disable authentication on the hostnames you want no authentication on. I believe it should look something like:

    when HTTP_REQUEST
    {
        if {[HTTP::host] eq "www.public.com"}
        {    
            ACCESS::disable
        }
    }