Hello!
I believe the function would be very useful, allowing to read out iptables FWMARK from the intercepted packet and to replace with it value of field TOS in the sent statistics. It will essentially expand possibilities of classification of the traffic at processing of the received statistics and use of the values received from this field as a condition for classification. It is possible to add such function?
Andrey
Hi, edit ipt_NETFLOW.c on about 1136 line:
change from
tuple.tos = iph->tos;
to this:
tuple.tos = skb->mark;
Thanks linuxgiedrius.