18-Mar-2019 07:48
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
18-Mar-2019
08:35
- last edited on
01-Jun-2023
15:16
by
JimmyPackets
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
}
}