Hi there, I have two pools that should explicitely be used depending on the clients source IP-adresses, and this already seems to works with the following aFlex example:
when CLIENT\_ACCEPTED \{
if \{ [IP::addr [IP::client\_addr] equals 10.10.10.0/24] \} \{
pool POOL1
} else {
pool POOL2
\}
\}
The problem is, that we have multiple networks, that should use POOL1 but not POOL2.
I think, I could fix this with multiple else-statements, but the idea is, to refere the if-statement to an ACL.
Does someone know if, and if so, how this is possible?
Or are there any better ideas to fix the service request?
Many thanks in advance
Hakan