Hierarchical Token Bucket (linux packet scheduler)
2
votes
0answers
329 views
VLAN based rate limiting using tc
I have been trying to perform VLAN based rate limiting on an academic project I am working on. The project uses Openflow (with Beacon controller) and the network is emulated using Mininet. The network ...
1
vote
0answers
78 views
htb with an inner gred how to setup filter to reach DPs
I want to create a qos htb class and within this class there is a gred queue.
how do I add a working filter for each red queue in the gred queue?
what i tried was:
DEV=lo
SOMEGREDETTINGS="limit ...
1
vote
1answer
893 views
Linux tc htb + prio = very slow link
I'm trying to shape the traffic going out of my DSL link (verified 1 mbit upload) using Linux (3.2) tc, HTB, and PRIO. My Linux box is connected via a Gigabit Ethernet link to the ADSL modem. I want ...
1
vote
0answers
51 views
Defining an explicit parent in traffic control rules
In traffic control, will an explicit parent declaration in a filtering rule override a flowid definition? E.g.;
tc qdisc add dev eth0 root handle 1: htb default 20
tc class add dev eth0 parent 1: ...
0
votes
1answer
344 views
Difference between HTB Rate and Ceil Values
What is the difference between the HTB rate and Ceil values?
0
votes
1answer
114 views
HTB qdisc child of another HTB qdisc drawbacks
In the HTB documentation can be read:
Note: HTB as child of another HTB is NOT the same as class under
another class within the same HTB. It is because when class in HTB can
send it will send ...
1
vote
1answer
351 views
how to tune tc rate parameter for optimal performance with htb/sfq?
I'm new to using tc/htb and I've just copy/pasted the script at ...
http://lartc.org/howto/lartc.cookbook.ultimate-tc.html
... to run on the office gateway. The reason is to prevent large downloads, ...
1
vote
3answers
1k views
Traffic shaping on Linux with HTB: weird results
I'm trying to have some simple bandwidth throttling set up on a Linux server
and I'm running into what seems to be very weird stuff despite a seemingly trivial
config.
I want to shape traffic coming ...
0
votes
1answer
755 views
HTB.init / tc behind NAT
I have an Ubuntu 10 box that I'm trying to set up as a bandwidth-shaping router.
The machine has one WAN interface, eth0 and two LAN interfaces, eth1 and eth2. NAT is configured using MASQUERADE as ...
2
votes
1answer
1k views
Traffic prioritization with Linux htb doesn't work, why?
I'm a Linux QoS newbie and I'm trying to learn how it works by using the docs at lartc.org as reference.
My first goal is a modest one: I want to assign a higher priority to UDP outgoing traffic, but ...
1
vote
2answers
554 views
How much traffic a linux-based shaper would be able to chew
I have a linux based traffic shaper (iptables + tc htb policy). It works in bridge mode. Shapes traffic based on IPs and ports (there are about 100 rules in the "mangle" chain of iptables). Right now ...
7
votes
1answer
1k views
Sharing Bandwidth and Prioritizing Realtime Traffic via HTB, Which Scenario Works Better?
I would like to add some kind of traffic management to our Internet line. After reading a lot of documentation, I think HFSC is too complicated for me (I don't understand all the curves stuff, I'm ...
22
votes
1answer
1k views
Minimal rate and default class problem for HTB
I have some doubts about a HTB structure I'm using.
My aim is to limit the download and upload speed of users in a local network.
Each user of the network has a personal list of domains with a down ...