Forum Discussion

Lee_Jong_su_488's avatar
Lee_Jong_su_488
Icon for Nimbostratus rankNimbostratus
Oct 28, 2011

WEB F/W redirection irule

i'd like to made like this

 

when the webpool's member is down, VS_in of Virtual Sever is going to apply

 

address translate functions

 

so, do you have a idea about it?

 

 

------------------------------------------------------------------------------------------------

 

when CLIENT_ACCEPTED {

 

if {[active_members webpool] < 1}{

 

VS_in translate address enable

 

translate port enable

 

} else {

 

VS_in translate address disable

 

translate port disable }

 

}
  • when saying translation, is it destination translation or source translation?

     

     

    in f5, translate address and port means destination translation.
  • can you try this?

    by the way, when pool is down, where is bigip going to send traffic to?

    when CLIENT_ACCEPTED { 
       if {[active_members webpool] < 1}{ 
          snat automap   
       } else {
          snat none
     }