12

This is my first time using traffic shaping and I am wondering how I can list the rules I applied like you can with iptables?

Walter

vtest
  • 5,358
Walter
  • 1,039

1 Answers1

22

Perhaps your problem is that you said "list the rules", while tools from iproute2 use "show" as keyword instead.

Examples:

tc qdisc show
tc class show dev eth0
tc filter show dev eth0

For more details, consult the manpage for tc and the well known resource LARTC.

vtest
  • 5,358