[LARTC] Another question (now about u32)

Jody Shumaker jody.shumaker at gmail.com
Tue Apr 4 20:52:26 CEST 2006


On 4/4/06, Nataniel Klug <nata at cnett.com.br> wrote:
>     Hello all,
>
>     I am trying to match some conections using u32 but I tryed this:
>
> [root at ns1 ~]# tc filter add dev eth1 parent 1:0 protocol ip prio 1 u32
> match ip src 0/0 match ip dst 0/0 match ip sport 80 0xffff flowid 1:10
> RTNETLINK answers: Invalid argument
> We have an error talking to the kernel
> [root at ns1 ~]#
>

Just a quick guess, but why are you bothering with this: match ip src
0/0 match ip dst 0/0
It's very likely that is causing the invalid argument error, and
doesn't seem necassary at all.  Should at least try the more
simplified command:
tc filter add dev eth1 parent 1:0 protocol ip prio 1 u32 match ip
sport 80 0xffff flowid 1:10

- Jody


More information about the LARTC mailing list