[LARTC] Multiple tc filter rules
Arno
arno@disconnect.de
Tue, 16 Mar 2004 15:00:39 +0100
Hi Jonathan,
On Tue, 16 Mar 2004 11:09:31 +0000 Jonathan Naylor <jonathan.naylor@w3z.co.uk> wrote:
> I am in the position of needing to filter on two parameters, I need to filter
> on IP address and I also need to filter on the value of a connection mark. I
> understand the syntax of the tc filter command for each, but how can I
> combine them ? Is it possible to put the two tc filter commands in series or
> is there some syntax to do it in one tc filter command ?
Well, I think it's easiest include the IP-Filtering into iptables like
this:
iptables -t mangle -A <CHAIN> -[d|s] <IP-Address> -j MARK --set-mark 1
and then set up a filter with tc that directs the traffic to the right
class.
Regards,
Arno.