Displaying 2 results from an estimated 2 matches for "005004d2".
Did you mean:
000004dc
2005 Dec 16
2
tc filter match u8 problem??
Hi All
Can someone tell me what am I doing wrong?
These was suposed to catch icmp type 8. Why ''match u8'' does not work?
# tc filter add dev eth0 protocol ip parent 1: prio 2 \
u32 \
match u16 0x0800 0xffff at -2 \
match u8 8 0xff at 20 \
flowid 1:5
Illegal "match"
#
# tc filter add dev eth0 protocol ip parent 1: prio 2 \
u32 \
match
2005 Dec 17
0
Fw: tc filter match u8 problem??
...c 200.231.49.240/29 \
>> match ip dst 200.231.48.94/32 \ match mark 0xa5a5 0xffff \
>> match u16 0x0800 0xffff at -2 \
>
> This is redundant as you already say "protocol ip"
Thanks. I''ll take it out from the generator.
>> What is this "005004d2/ffffffff at 20"? (I asked "match u16 0 0xff00 at
>> 20")
>
> 0050 sport 80 - 04d2 dport 1234 - you got 0 at 20 mask 0xff it''s the MSB of
> sport ...
Holly Cow!!! You''re 1000% right.
>> Where is the "match mark" clause?
But this on...