I want to add QOS rules to match TCP ack flag.
I added this vyos configuration:
set policy shaper EGRESS-QOS bandwidth '20gbit' set policy shaper EGRESS-QOS class 2 bandwidth '20%' set policy shaper EGRESS-QOS class 2 ceiling '100%' set policy shaper EGRESS-QOS class 2 description 'qACK' set policy shaper EGRESS-QOS class 2 match-group 'qACK' set policy shaper EGRESS-QOS class 2 priority '0' set policy shaper EGRESS-QOS class 2 queue-type 'fair-queue' set policy shaper EGRESS-QOS default bandwidth '43%' set policy shaper EGRESS-QOS default ceiling '100%' set policy shaper EGRESS-QOS default priority '7' set policy shaper EGRESS-QOS default queue-type 'random-detect' set traffic-match-group qACK match ACK ip tcp ack set traffic-match-group qACK match SYNACK ip tcp syn set interface bond0 egress 'EGRESS-QOS'
but I there is no tc configuration:
vyos@am-rt-001# tc filter show dev bond0 [edit] vyos@am-rt-001#
Same issue if I use traffic-matech-group or not.
But if I add other ‘simple’ rules, like match address or port, I can see them with tc command.
can you help me about this issue please ?
thanks in advance