Last week we published a new application on our web servers (which are balanced by the F5 BIGIP)
Accessing directly to the servers produced no problem, but when the connection was through the virtual balancing IP of the F5, the application did not work correctly.

Error message

Fortunately, monitoring the LTM module logs of the F5 (/var/log/ltm) while the problem was reproduced showed the following error message:

# tail -f /var/log/ltm

...
...
Jan 31 14:20:04 BigIP1 err tmm2[12435]: 011f0011:3: HTTP header count exceeded maximum allowed count of 64 (Server side: vip=/LAN/VS_WEBSERVERS profile=http pool=/LAN/POOL_WEBSERVERS server_ip=10.100.150.181)
...
...

Solution

It seems pretty clear that it is related to how the HTTP protocol manages.
That is, maybe something could be changed in the HTTP profile.

So, let’s browse to the Profiles Services section.
By default, when need to assign an http profile to a virtual assign, i use the default “http” profile.

F5 BIGIP - Accesing to profiles services menu

After opening it to check the configured attributes by default, you can realize there is one called “Maximum Header Count”, with value “64”.

BIGIP F5 - Maximum Header Count attribute of the HTTP profile

A possible solution would be changing that value in the “http” HTTP profile, but this is not a best practice at all because the change would be applied to all Virtual Servers using this profile!

The best way to fix the issue is generating a new http profile using as template this default “http” one, and change the value.

So, after pressing the “New” button, assign a new name (f.e. http_MaxHeaderCount128), parent profile “http” (to create the new profile based on this default one), and increase the value that is causing the issue (f.e. 128).

BIGIP F5 - Changing the Maximum Header Count attribute of the HTTP profile

Once created, open the virtual server with the issue and select the new http profile from the list:

BIGIP F5 - Assign the new HTTP profile to the Virtual Server

Once applied, test the application again to ensure the problem is solved.

Official article

By searching a bit, there is an official F5 article that also shows the way to correct the problem:
K14152: Error Message: 011f0011:3: HTTP header count exceeded maximum allowed count