Displaying 2 results from an estimated 2 matches for "856kbit".
Did you mean:
256kbit
2005 Feb 15
0
Help with bandwith control in a firewall/bridge machine
...t
# in lower latency but will also cause slightly lower throughput due
# to IP and TCP protocol overhead.
#ip link set dev $DEV1 mtu 1000
# add HTB root qdisc
$TC qdisc add dev $DEV1 root handle 1: htb default 37
# add main rate limit classes
$TC class add dev $DEV1 parent 1: classid 1:1 htb rate 856kbit
# add leaf classes - We grant each class at LEAST it''s "fair share" of
bandwidth.
# this way no class will ever be starved by another
class. Each
# class is also permitted to consume all of the available
bandwidth
# if...
2005 Feb 15
1
Bandwith Control with a firewall/bridge machine
...t
# in lower latency but will also cause slightly lower throughput due
# to IP and TCP protocol overhead.
#ip link set dev $DEV1 mtu 1000
# add HTB root qdisc
$TC qdisc add dev $DEV1 root handle 1: htb default 37
# add main rate limit classes
$TC class add dev $DEV1 parent 1: classid 1:1 htb rate 856kbit
# add leaf classes - We grant each class at LEAST it''s "fair share" of
bandwidth.
# this way no class will ever be starved by another
class. Each
# class is also permitted to consume all of the available
bandwidth
# if no...