Displaying 1 result from an estimated 1 matches for "start_outbound".
2006 Aug 15
5
howto reduce the ping?
...css, irc, p2p, default <- same shema as before, give css enough bandwith and
allocate the rest for the other classes.
Are packets in 1:10 (css) are transfered as fast as they arrive?
Same config without line breaks:
http://phpfi.com/140959
#!/bin/bash
OUTBOUND_DEV=ppp0
INBOUND_DEV=imq0
start_outbound()
{
echo "Starting outbound"
tc qdisc add dev ppp0 root handle 1: htb default 90
#max upload
tc class add dev ppp0 parent 1: classid 1:1 htb rate 14kbps
#css
tc class add dev ppp0 parent 1:1 classid 1:10 htb rate 9kbps ceil 14kbps
prio 1
iptables -t mangle -...