blob: 8558bdf888bfa59fab2ee1c279a2627f2c7cbe94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# more complicated case to provoke queue id assignment errors:
# -two same named queues must have same qid on all interfaces
# -two differently named queues must not share a qid, even on different ifs
altq on lo0 tbrsize 1824 bandwidth 10Mb cbq queue { eins zwei drei }
altq on tun1000000 tbrsize 1824 bandwidth 128000b cbq queue { vier zwei fuenf }
queue eins bandwidth 10% cbq(default)
queue zwei bandwidth 60% { sub2 sub3 }
queue sub2 bandwidth 50%
queue sub3 bandwidth 50%
queue drei bandwidth 30% subseven
queue vier bandwidth 25% cbq(default)
queue fuenf bandwidth 15% subseven
queue subseven bandwidth 90%
|