Forum Discussion

Vitor_Hugo_Domi's avatar
Vitor_Hugo_Domi
Icon for Nimbostratus rankNimbostratus
Sep 19, 2013

Redirect F5

Hi all,

 

I need forced an ip address source and an ip address destination out to pool especific. Can you help me the include ip address source in the iRule below. For exemple below:

 

} elseif { [IP::addr [IP::local_addr] equals ] } { pool pool_XXX

 

Thanks

 

2 Replies

  • Something like this maybe?

     when CLIENT_ACCEPTED {
         if { [IP::addr [IP::client_addr] equals x.x.x.x] and [IP::addr [IP::local_addr] equals y.y.y.y] } {
             pool xxx_pool
         }
     }