Forum Discussion

Bill_S_'s avatar
Bill_S_
Icon for Nimbostratus rankNimbostratus
Dec 24, 2019

allowing a list of IP addresses access to a pool

I'm trying to find a way to pass the request through an address-list or ACL before sending to the pool. I want to allow only certain IP addresses to connect to this pool. Any ideas?

 

when HTTP_REQUEST {

   switch [string tolower [HTTP::host]] {

       "host.xyz.com" {

               pool pool-xyz

           }

       }

}