Re: [PATCH net-next] net/sched: cls_flower: Support matching on SCTP ports

2016-11-03 Thread David Miller
From: Simon Horman Date: Thu, 3 Nov 2016 13:24:21 +0100 > Support matching on SCTP ports in the same way that matching > on TCP and UDP ports is already supported. > > Example usage: > > tc qdisc add dev eth0 ingress > > tc filter add dev eth0 protocol ip parent : \ > flower indev

Re: [PATCH net-next] net/sched: cls_flower: Support matching on SCTP ports

2016-11-03 Thread Jiri Pirko
Thu, Nov 03, 2016 at 01:24:21PM CET, simon.hor...@netronome.com wrote: >Support matching on SCTP ports in the same way that matching >on TCP and UDP ports is already supported. > >Example usage: > >tc qdisc add dev eth0 ingress > >tc filter add dev eth0 protocol ip parent : \ >flower in

[PATCH net-next] net/sched: cls_flower: Support matching on SCTP ports

2016-11-03 Thread Simon Horman
Support matching on SCTP ports in the same way that matching on TCP and UDP ports is already supported. Example usage: tc qdisc add dev eth0 ingress tc filter add dev eth0 protocol ip parent : \ flower indev eth0 ip_proto sctp dst_port 80 \ action drop Signed-off-by: Simon H