Displaying 1 result from an estimated 1 matches for "wwwport".
Did you mean:
newport
2006 Feb 22
0
mysterious rebounce in htb
...#39;'t think it was some external interference, but
who knows.6
htb config is created by this script. Note I created two root classes so
that my regular work on this desktop doesn''t interfere with the
measurements and tests I''m performing (or so I hope):
#!/bin/bash
DEV=eth0
WWWPORT=8000
SMTPPORT=2500
MAPI=10.0.16.10
tc qdisc del dev $DEV root > /dev/null 2>&1
# root qdisc
tc qdisc add dev $DEV handle 1: root htb default 2
# root classes
tc class add dev $DEV classid 1:1 parent 1: htb rate 100kbps
tc class add dev $DEV classid 1:2 parent 1: htb rate 90mbit
tc qdisc...