search for: allot

Displaying 20 results from an estimated 313 matches for "allot".

Did you mean: allow
2005 Jul 02
0
Bandwidth shaping script appears to incorrectly halve the bandwidth
...V root handle 1: cbq avpkt 1000 bandwidth 100mbit tc qdisc add dev $DL_DEV root handle 2: cbq avpkt 1000 bandwidth 100mbit # shape everything on $UL_DEV at $OUTGOING_BW speed, $DL_DEV at $INCOMING_BW echo Creating Classes tc class add dev $UL_DEV parent 1: classid 1:1 cbq rate ${OUTGOING_BW}kbit allot 1500 prio 5 bounded isolated tc class add dev $DL_DEV parent 2: classid 2:1 cbq rate ${INCOMING_BW}kbit allot 1500 prio 5 bounded isolated tc class add dev $UL_DEV parent 1:1 classid 1:10 cbq rate 128kbit allot 1600 prio 1 avpkt 1000 tc class add dev $DL_DEV parent 2:1 classid 2:10 cbq rate 128k...
2002 Oct 15
1
Réf . : Re: trying to use wondershaper on a dedicated line (not adsl)
here''s the output : # tc -s -d class show dev eth0 class cbq 1: root rate 10Mbit cell 8b (bounded,isolated) prio no-transmit/8 weight 10Mbit allot 1514b level 2 ewma 5 avpkt 1000b maxidle 23us Sent 294 bytes 7 pkts (dropped 0, overlimits 0) borrowed 0 overactions 0 avgidle 605 undertime 0 class cbq 1:10 parent 1:1 leaf 10: rate 100Kbit cell 8b prio 1/1 weight 100Kbit allot 1600b level 0 ewma 5 avpkt 1000b maxidle 23us Sent 12274 byt...
2004 May 25
1
how to borrow bandwith
...ere is my script: /usr/sbin/tc qdisc del dev nas0 root /usr/sbin/tc qdisc del dev br0 root /usr/sbin/tc qdisc add dev nas0 root handle 1:0 cbq bandwidth 1024kbit avpkt 1000 cell 8 /usr/sbin/tc class add dev nas0 parent 1:0 classid 1:1 cbq bandwidth 1024kbit rate 1024kbit weight 1024kbit prio 0 allot 1514 cell 8 maxburst 20 avpkt 1000 isolated bounded /usr/sbin/tc class add dev nas0 parent 1:1 classid 1:2 cbq bandwidth 1024kbit rate 611kbit weight 611kbit prio 1 allot 1514 cell 8 maxburst 20 avpkt 1000 /usr/sbin/tc class add dev nas0 parent 1:1 classid 1:3 cbq bandwidth 1024kbit rate 305kbit...
2003 Jan 13
1
Getting Error when starting Wondershaper 1.1a
Hello, i´ve installed a Suse 8.1 minimal System with iproute 2.4.7 and iptables, Suse default Kernel 2.4.19. When I start the Wondershaper 1.1a Script I get the following Error: CBQ: "allot" is required to set WRR parameters. /home/skripte/./wshaper: line 72: allot: command not found CBQ: "allot" is required to set WRR parameters. /home/skripte/./wshaper: line 78: allot: command not found RTNETLINK answers: Invalid argument RTNETLINK answers: Invalid argument On an Sta...
2019 Dec 15
1
Request to be allotted a project or a feature in pipeline
...and I'd like to work upon a project and/or a feature in pipeline spanning over 3 months in Libvirt organization as a part of the same college project. My mentor cum professor has already agreed for the same, given that I get approval from one of the maintainers. So, if possible, will you please allot me something to work upon? Thank you for your time. Looking forward to hearing from you. Regards, Utsav Parmar
2001 Jun 19
3
RTNETLINK answers: Invalid argument
Hi all, I have installed 2.4.5 kernel, Debian Potato. my tc script: #!/bin/bash tc qdisc add dev eth1 root handle 20: cbq bandwidth 10Mbit avpkt 1000 echo root tc class add dev eth1 parent 20:0 classid 20:1 cbq bandwidth 10Mbit rate \ 10Mbit allot 1514 weight 1Mbit prio 8 maxburst 20 avpkt 1000 echo class tc class add dev eth1 parent 20:1 classid 20:100 cbq bandwidth 10Mbit rate \ 5Mbit allot 1514 weight 500Kbit prio 5 maxburst 20 avpkt 1000 \ bounded echo 100 tc class add dev eth1 parent 20:1 classid 20:200 cbq bandwidth 10Mbit rate \ 5Mbit...
2002 Dec 07
4
Why my script doesn''t work ???
...--set-mark 1 iptables -A FORWARD -t mangle -p tcp -s 192.168.1.1/24 -d ! 192.168.1.1/24 --dport 1864:65535 -j MARK --set-mark 1 and I put some new lines to wondershaper 1.1a (before "#start filters" label) : tc class add dev $DEV parent 1:1 classid 1:40 cbq rate $[$UPLINK/10]kbit \ allot 1600 prio 2 avpkt 1000 tc qdisc add dev $DEV parent 1:40 handle 40: sfq perturb 10 tc filter add dev $DEV parent 1:0 protocol ip handle 1 fw flowid 1:40 #start filters ... I realized there is a 80Kbit/s traffic to a site (port 2334) from inside. My $UPLINK is 80. How can be this? Thanks, Gabor...
2004 Aug 13
1
Shaping weirdness
...c del dev $DEV2 root 2> /dev/null > /dev/null # limit up- and downlink tc qdisc add dev $DEV root handle 1: cbq avpkt 1000 bandwidth 100mbit tc qdisc add dev $DEV2 root handle 2: cbq avpkt 1000 bandwidth 100mbit tc class add dev $DEV parent 1: classid 1:1 cbq rate ${LIMITDOWN}kbit \ allot 1500 prio 5 bounded isolated tc class add dev $DEV2 parent 2: classid 2:1 cbq rate ${LIMITDOWN}kbit \ allot 1500 prio 5 bounded isolated tc class add dev $DEV parent 1: classid 1:2 cbq rate ${LIMITUP}kbit \ allot 1500 prio 5 avpkt 1000 tc class add dev $DEV2 parent 2: classid 2:2 c...
2004 Dec 22
4
how to add burstable rate?
Hi, I managed to fix 128kbit for an IP address of 192.168.200.3 as below: - tc qdisc add dev eth3 root handle 1: cbq avpkt 1000 bandwidth 100mbit tc class add dev eth3 parent 1: classid 1:1 cbq rate 128kbit allot 1500 prio 5 bounded isolated tc filter add dev eth3 parent 1: protocol ip prio 16 u32 match ip dst 192.168.200.3 flowid 1:1 tc qdisc add dev eth3 parent 1:1 sfq perturb 10 How can I make it burstable to 256kbit? What command I need to add in? Regards, ro0ot _________________________________...
2003 Sep 04
3
CBQ Rate
...se is to test CBQ Here is my script ------------------------------------------------------------------- # Root qdisc tc qdisc add dev eth0 root handle 1:0 cbq bandwidth 9Mbit \ avpkt 1000 cell 8 # Classes tc class add dev eth0 parent 1:0 classid 1:1 cbq bandwidth 9Mbit \ rate 5Mbit weight 0.3 allot 1514 avpkt 1000 bounded prio 1 tc class add dev eth0 parent 1:0 classid 1:2 cbq bandwidth 9Mbit \ rate 5Mbit weight 0.3 allot 1514 avpkt 1000 bounded prio 2 tc class add dev eth0 parent 1:0 classid 1:3 cbq bandwidth 9Mbit \ rate 5Mbit weight 0.3 allot 1514 avpkt 1000 bounded prio 3 # Leaf qdis...
2004 Dec 23
1
does the inbound traffic affect the outbound on 2 different interfaces
...--------------------------------------------------------------------------------------------------------- tc qdisc del dev eth0 root tc qdisc add dev eth0 root handle 1: cbq bandwidth 30Mbit cell 8 avpkt 1000 mpu 64 tc class add dev eth0 parent 1:0 classid 1:1 cbq bandwidth 2000kbit rate 2000kbit allot 1514 cell 8 weight 100kbit prio 2 maxburst 20 avpkt 1000 bounded isolated tc class add dev eth0 parent 1:1 classid 1:2 cbq bandwidth 2000kbit rate 300kbit allot 1514 cell 8 weight 30kbit prio 1 maxburst 20 avpkt 1000 split 1:0 tc class add dev eth0 parent 1:1 classid 1:3 cbq bandwidth 2000kbit ra...
2002 May 03
2
(no subject)
hi all, Iam using the following CBQs to limit the FTP bandwidth pease tell what changes are rquired to make it work.... tc qdisc del dev eth0 root tc qdisc add dev eth0 root handle 1:0 cbq allot 1514 avpkt 1000 bandwidth 100Mbit tc class add dev eth0 parent 1:0 classid 1:1 cbq allot 1514 bandwidth 100Mbit rate .4Mbit weight .4 prio 2 maxburst 20 cell 8 avpkt 1000 tc class add dev eth0 parent 1:0 classid 1:2 cbq allot 1514 bandwidth 100Mbit rate .6Mbit weight .4 prio 4 cell 8 ma...
2006 Sep 14
10
tc is giving an error: RTNETLINK answers: File exists
...''ll fill these in later (when this # thing works) HIGHPORT= # low priority destination ports LOWPORT= $TC qdisc add dev $IDEV root handle 1: cbq bandwidth 1600Kbit cell 8\ avpkt 1000 mpu 64 $TC class add dev $IDEV parent 1: classid 1:1 est 1sec 8sec cbq\ bandwidth 1600Kbit rate 1500kbit allot 1514 maxburst 20 avpkt 1000\ prio 0 bounded isolated cat $IPS | sed -e ''s/#.*$//; s/^ *$//;'' | while read IP RATE STATUS; do if [ "x$IP" == "x" ]; then continue fi # I use the last byte of the customer''s IP''s for the handle, which...
2007 Jun 08
5
CBQ + Layer7 x Emule
...cat /etc/sysconfig/cbq/cbq-0002.emule_out DEVICE=eth1,100Mbit,10Mbit RATE=3Kbit WEIGHT=1Kbit PRIO=5 BOUNDED=yes ISOLATED=yes MARK=2 that generate this tc codes . /sbin/tc qdisc add dev eth0 root handle 1 cbq bandwidth 100Mbit avpkt 3000 cell 8 /sbin/tc class change dev eth0 root cbq weight 10Mbit allot 1514 /sbin/tc qdisc del dev eth1 root /sbin/tc qdisc add dev eth1 root handle 1 cbq bandwidth 100Mbit avpkt 3000 cell 8 /sbin/tc class change dev eth1 root cbq weight 10Mbit allot 1514 /sbin/tc class add dev eth0 parent 1: classid 1:2 cbq bandwidth 100Mbit rate 3Kbit weight 1Kbit prio 5 allot 151...
2004 Oct 13
2
Resetting traffic history
...disc replace dev $NIC root tbf rate $RATE_TOTAL latency 50ms burst $BURST The total data rate was pegged within acceptable limits, but the problem is that data stopped flowing after tc was active after a few hours. The busy site had a few peak periods and presumably used up all the traffic allotment. Perhaps tc remembers the traffic between invocations? I then tried a slightly more sophisticated setup: tc qdisc del dev $DEV root tc qdisc add dev $NIC root handle 1: cbq avpkt 1000 bandwidth 1000mbit tc class add dev $NIC parent 1: classid 1:1 cbq rate $RATE_PROBLEM allo...
2006 Aug 13
3
trying to prioritize voip traffick
...tra bandwidth available, the lower number classes get it as ## they need it. # root qdisc / qdisc = queueing discipline # tc qdisc add dev $e root handle 1:0 cbq bandwidth 100Mbit avpkt 1000 cell 8||exit 1 tc class add dev $e parent 1:0 classid 1:1 cbq bandwidth 100Mbit rate $t1 weight $w prio 8 allot 1514 cell 8 maxburst 20 avpkt 1000 bounded||exit 1 # child qdiscs (like child nodes on a tree) # tc class add dev $e parent 1:1 classid 1:3 cbq bandwidth 100Mbit rate $sizeCitrix weight $weightCitrix prio 8 allot 1514 cell 8 maxburst 20 avpkt 300 isolated||exit 1 tc qdisc add dev $e parent 1:3 han...
2003 Jun 15
3
how to emulate large IP routing table
...################## > #Setting up top 2 qdiscs > #for initial packet classification > ####################################### > # Exatt Rules > ####################################### > > tc class add dev eth0 parent 1:0 classid 1:1 cbq bandwidth 1Mbit rate 800kbit weight 80kbit allot 1514 cell 8 maxburst 20 avpkt 1000 isolated > tc filter add dev eth0 parent 1:0 protocol ip u32 match ip src 192.168.10.0/24 classid 1:1 > tc filter add dev eth0 parent 1:0 protocol ip u32 match ip dst 192.168.10.0/24 classid 1:1 > > tc filter add dev eth0 parent 1:0 protocol ip u32 mat...
2007 Dec 05
3
Adding qdiscs crashes kernel??
...ark packets for VLAN 3000. tc filter add dev eth3 parent 1: protocol 0x8100 prio 5 u32 match u16 3000 0x0fff at 0 flowid 1:1 action ipt -j MARK --or-mark 0x01000000 # mark packets for VLAN 3000. tc class add dev eth2 parent 1:0 classid 1:1 cbq bandwidth 100Mbit rate 2000Kbit weight 200Kbit prio 1 allot 1514 cell 8 maxburst 20 avpkt 1000 bounded isolated # 2000 Kbit rate limit on entry point. tc class add dev eth3 parent 1:0 classid 1:1 cbq bandwidth 100Mbit rate 2000Kbit weight 200Kbit prio 1 allot 1514 cell 8 maxburst 20 avpkt 1000 bounded isolated # 2000 Kbit rate limit on entry poi...
2003 Jul 16
1
Problen in cbq , fw
...(100Kbit, bounded) ## add queuing discipline and classes to eth1 ## 1. tc qdisc del dev eth1 root cbq bandwidth 10Mbit avpkt 1000 2. tc qdisc add dev eth1 root handle 1:0 cbq bandwidth 10Mbit avpkt 1000 3. tc class add dev eth1 parent 1:0 classid 1:1 cbq bandwidth 10Mbit rate 10Mbit allot 1514 avpkt 1000 weight 1Mbit 4. tc class add dev eth1 parent 1:1 classid 1:2 cbq bandwidth 10Mbit rate 100Kbit allot 1514 avpkt 1000 weight 10Kbit bounded 5. tc class add dev eth1 parent 1:1 classid 1:3 cbq bandwidth 10Mbit rate 110Kbit allot 1514 avpkt 1000 weight 11Kbit 6. tc filter add dev eth1...
2004 Aug 06
0
CBQ + 802.1Q VLAN
.... The config: # root qdisc tc qdisc add dev eth0 root handle 1:0 cbq bandwidth 100Mbit avpkt 1000 cell 8 tc qdisc add dev eth1 root handle 1:0 cbq bandwidth 100Mbit avpkt 1000 cell 8 # root class tc class add dev eth0 parent 1:0 classid 1:1 cbq bandwidth 100Mbit rate 384Kbit weight 38Kbit prio 8 allot 1514 cell 8 maxburst 20 avpkt 1000 bounded tc class add dev eth1 parent 1:0 classid 1:1 cbq bandwidth 100Mbit rate 384Kbit weight 38Kbit prio 8 allot 1514 cell 8 maxburst 20 avpkt 1000 bounded # leaf class 1 & 2 tc class add dev eth0 parent 1:1 classid 1:10 cbq bandwidth 100Mbit rate 256Kbit w...