Forum Discussion
Bob_10976
Nimbostratus
Jun 15, 2011Select Pool on URI causing Infinite loop..
Hello all..With the help of this group i've got an irule that will use a specific pool based on the URI path, which I've listed below. However it appears that is causing an infinite loop. I wasn't ...
it seems to be different story. so, is this applicable?
virtual bar80 {
destination 172.28.17.88:80
ip protocol 6
rules myrule
profiles {
http {}
tcp {}
}
}
rule myrule {
when HTTP_REQUEST {
virtual bar1234
}
}
virtual bar1234 {
snat automap
pool foo
destination 172.28.17.88:1234
}
pool foo {
members 10.10.70.110:80 {}
}
curl -i http://172.28.17.88/
HTTP/1.1 200 OK
Date: Sun, 12 Jun 2011 04:53:09 GMT
Server: Apache/2.0.59 (rPath)
Last-Modified: Sat, 11 Jun 2011 00:31:47 GMT
ETag: "667a-67-cfb682c0"
Accept-Ranges: bytes
Content-Length: 103
Vary: Accept-Encoding
Content-Type: text/html; charset=UTF-8
...