Considering this filter:
tc filter add dev eth0 protocol ip parent 1:0 prio 1 u32 \
match ip src 1.2.3.4 \
match ip dport 80 0xffff \
flowid 1:10
Now I dont know...
Does this u32 filter mean
"match packets with src 1.2.3.4 AND dport 80"
or
"match packets with src 1.2.3.4 OR dport 80"
?
Also something else that I dont understad... what is the "0xffff" for?
Thanks :)
tc filter add dev eth0 protocol ip parent 1:0 prio 1 u32 \
match ip src 1.2.3.4 \
match ip dport 80 0xffff \
flowid 1:10
Now I dont know...
Does this u32 filter mean
"match packets with src 1.2.3.4 AND dport 80"
or
"match packets with src 1.2.3.4 OR dport 80"
?
Also something else that I dont understad... what is the "0xffff" for?
Thanks :)