Forum Discussion
Add http header of Server IP address?
Is it new Setup or working earlier and now facing issue?
Sometimes issue arise due to TCP profile timeout setting. Did you get chance to increase timeout value to 1800Sec(Default 300Sec)?
Yes. Can you please capture tcpdump on F5 & unix system also and check if any TCP session is taking longer time to transfer packet.
you should use HTTP::uri to rewrite client's http request uri,
iRules:
when HTTP_REQUEST {
switch -glob [string tolower [HTTP::uri]] {
"/map1/admin*" -
"/map2/admin*" {
drop
log "Drop direct connection via admin URI"
}
"/map1/*" {
HTTP::uri [string map {"map1" "land"} [HTTP::uri]]
pool http_pool member 10.1.20.11 80
}
"/map2/*" {
HTTP::uri [string map {"map2" "land"} [HTTP::uri]]
pool http_pool member 10.1.20.12 80
}
"/land/*" {
pool http_pool
}
default {
drop
}
}
}