mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-10-09 17:07:37 +00:00

With this change the results of tc tests will be recorded under: testsuite/results/tc/ The ip related tests can be added under: testsuite/tests/ip Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
11 lines
588 B
Bash
Executable File
11 lines
588 B
Bash
Executable File
#!/bin/sh
|
|
$TC qdisc del dev $DEV root >/dev/null 2>&1
|
|
$TC qdisc add dev $DEV root handle 10:0 cbq bandwidth 100Mbit avpkt 1400 mpu 64
|
|
$TC class add dev $DEV parent 10:0 classid 10:12 cbq bandwidth 100mbit rate 100mbit allot 1514 prio 3 maxburst 1 avpkt 500 bounded
|
|
$TC qdisc list dev $DEV
|
|
$TC qdisc del dev $DEV root
|
|
$TC qdisc list dev $DEV
|
|
$TC qdisc add dev $DEV root handle 10:0 cbq bandwidth 100Mbit avpkt 1400 mpu 64
|
|
$TC class add dev $DEV parent 10:0 classid 10:12 cbq bandwidth 100mbit rate 100mbit allot 1514 prio 3 maxburst 1 avpkt 500 bounded
|
|
$TC qdisc del dev $DEV root
|