kona2-9_51980
Sep 22, 2011Nimbostratus
Pool port redirection
Currently we have an iRule that is receiving traffic on port 80 when http is hit we are to redirect to pool .
The Log file shows the traffic making it into the LTM << Sep 22 08:34:57 local/tmm3 info tmm3[6060]: Rule MMS_iRule : 10.201.61.129 sent request for xml file to pool_8080>>
But tcpdump nevers shows the traffic going out on to my members on this port.
does anyone have any suggestions?
irule snippet:
when HTTP_REQUEST {
if { [string tolower [HTTP::path]] ends_with ".xml"}{
log local0. "[IP::remote_addr] sent request for xml file to Pool_8080"
pool Pool_8080
}
if { [string tolower [HTTP::path]] ends_with ".rdf"}{
pool Pool_8080
}