Re: TC filter error
Andy Furniss <[email protected]>
| Newsgroups | gmane.linux.network.routing |
|---|---|
| Message-ID | <[email protected]> |
Sean Coleman wrote: > When I enter the following, > > > > tc filter add dev eth0 parent 1:0 protocol ip prio 0 u32 match ip src > 192.168.0.61 flowid 1:10 I can't see anything wrong with that that should throw an error. prio 1 is the top prio for filters, but it shouldn't matter. does it work on something simple like - tc qdisc del dev eth0 root &>/dev/null tc qdisc add dev eth0 handle 1:0 root prio tc filter add dev eth0 parent 1:0 protocol ip prio 0 u32 match ip src 192.168.0.61 flowid 1:3 Andy.