Forum Discussion
sabinen_128031
Nimbostratus
Jan 07, 2005Socket Connection Errors on iRule
I am trying to write a rule to route requests through an Amberpoint agent before load balancing. When I put the rule into effect, the BigIP appears to stop routing, and I get socket errors.
when CLIENT_ACCEPTED {
if { [[IP::remote_addr] eq 66.251.110.118] } {
pool security
}
else {
pool Amberpoint
}
}
The intended basic flow is:
client -> BigIP -> Amberpoint -> BigIP -> security pool
The 66.251.110.118 IP address in the rule is the Amberpoint agent.
Here is the working v4.5 rule:
if (client_addr == 66.251.110.118) {
use pool security
}
else {
use pool Amberpoint
}
Any suggestions?