Displaying 3 results from an estimated 3 matches for "960kbit".
Did you mean:
160kbit
2004 Jul 28
3
Re: Re: HTB 3.13 please help
...-----------------
> > > > > > ------------
> > > > > > #!/bin/bash
> > > > > > #x=$[100/20]
> > > > > > #echo "$1" > /skrytpy/status
> > > > > > rxmax=900 #WAN max transfer -down (physically it is
960kbit/960kbit)
> > > > > > kbit=kbit
> > > > > > rxmaxluser=250
> > > > > > txmax=800 #WAN max transfer - up
> > > > > > txmaxluser=100
> > > > > > #counting users
> > > > > > # ip1 file is like th...
2005 Mar 15
1
Traffic Shaping multiple incoming broadband sources?
...ip prio 1 handle 0x03 fw flowid 1:2
tc class add dev eth0 parent 1:2 classid 1:210 htb rate 168kbit ceil 224kbit prio 1 quantum 1500
tc class add dev eth0 parent 1:2 classid 1:220 htb rate 362kbit ceil 640kbit prio 2 quantum 1500
tc class add dev eth0 parent 1:2 classid 1:230 htb rate 640kbit ceil 960kbit prio 3 quantum 1500
tc class add dev eth0 parent 1:2 classid 1:240 htb rate 180kbit ceil 240kbit prio 4 quantum 1500
tc qdisc add dev eth0 parent 1:210 handle 210: sfq perturb 10
tc qdisc add dev eth0 parent 1:220 handle 220: sfq perturb 10
tc qdisc add dev eth0 parent 1:230 handle 230: sfq perturb...
2004 Jul 20
3
Fw: HTB - Really Big problem
....
I''m including my script.
---------------------------------------------------cut here -----------------------------------------------------------------------------------
#!/bin/bash
#x=$[100/20]
#echo "$1" > /skrytpy/status
rxmax=900 #WAN max transfer -down (physically it is 960kbit/960kbit)
kbit=kbit
rxmaxluser=250
txmax=800 #WAN max transfer - up
txmaxluser=100
#counting users
# ip1 file is like this:
# 11 #Somebody
# 23 #Somebody II
#EOF
licznik=0
for x in $(awk ''{ print $1 }'' /skrytpy/ip1); do
licznik=$[$licznik+1]
done
for x in $(awk ''{ pri...