Forum Discussion
Evan_25555
Oct 19, 2011Historic F5 Account
Problem with iRule that logs excessive HTTP header lengths
Background:
We had been seeing occasional errors in /var/log/ltm that look like this:
HTTP head (33182) exceeded maximum allowed size of 32768
Before increasing MAX HTTP ...
Patrick_Chang_7
Oct 20, 2011Historic F5 Account
In F5 land, the HTTP headers also include the initial request line (method and URI). You could do the following
when HTTP_REQUEST {
set hlength [string length [HTTP::query]]
if { $hlength > 32768 } {
log local0.info "Header length = $hlength, [HTTP::query]"
}
}
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects