The last line is supposed to send all unmatched traffic the band 2.
However when trying to issue this command I get the following error (for
me the parent is 1: and the class I want to send it to is 1:3):
> tc filter add dev wlan0 protocol ip parent 1: prio 2 flowid 1:3
> Unknown filter "flowid", hence option "1:3" is unparsable
To answer myself, I found two ways:
1/ Correct the tc filter command above to add a match that always
matches (obviously), such as:
tc filter add dev wlan0 protocol ip parent 1: protocol ip prio 1 u32
match u32 0 0 flowid 1:3
2/ If using the prio qdisc, then set the priomap to the specific band
you want previously unmatched traffic to go to.
--
To unsubscribe from this list: send the line "unsubscribe linux-net" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html