outbound nat based on IP

I’m trying to configure LLB for ISP links and having some trouble with the outbound NAT.

Basically when it goes out ISP1 it should default to NAT pool ISP\_C for most users, but when it comes from one range (using individual IP in my testing) it needs to use NAT pool ISP\_CTHSE

Under my 0.0.0.0 VIP  this aflex works:

when LB\_SELECTED \{
switch -glob [LB::server name] \{
    ISP\_CTHSE \{ snatpool ISP\_C \}
    ISP\_ADMIN \{ snatpool ISP\_A \}
    default \{\}

\}
\}

my attempt at doing what I need is below, and breaks the NAT for everyone, not just the one IP. ISP_CTHSE is the only one up, so ISP_ADMIN can’t be chosen.

when LB\_SELECTED \{
switch -glob [LB::server name] \{
ISP\_CTHSE \{
if \{ [IP::addr [IP::client\_addr] equals 10.18.0.105] \} \{

snatpool ISP_CTHSE

\} else \{ snatpool ISP\_C \}
\}
ISP\_ADMIN \{ snatpool ISP\_A \}
default \{  \}

\}
\}