schmal_111133
Aug 04, 2011Nimbostratus
Change the IP TOS by HTTP header
Hi,
I have a scenario that I need to change the tos in the IP header based on an HTTP header if it exist then I should change the tos, can I do it by an iRule or by any other way?
something that should look like this I guess:
when HTTP_REQUEST {
if { [HTTP::header exists "TOS"] } {
IP::tos 16
}
log local0.alert "[IP::tos]"
forward
}
I trying to understand why this is not working.
Thanks in advance.