search for: dnlink

Displaying 2 results from an estimated 2 matches for "dnlink".

Did you mean: dlink
2007 Sep 23
0
Giants on IMQ0
...uses the default pfifo_fast, we need to give it txqueuelen # packets because pfifo_fast drops incoming packets when the queue fills up: ip link set $IMQ up txqueuelen 1024 # Install root HTB, point default traffic to 1:30: tc qdisc add dev $IMQ root handle 1: htb default 30 # Shape everything at DNLINK speed: # Root class tc class add dev $IMQ parent 1: classid 1:1 htb rate ${CEIL}kbit burst 16k cburst 16k # High priority (interactive) class 1:10 tc class add dev $IMQ parent 1:1 classid 1:10 htb rate $[Ii*$DNLINK/100]kbit \ ceil ${CEIL}kbit burst 6k cburst 6k quantum 1500 prio 1 # Accelerate...
2006 Feb 11
1
about the traffic control
Hi, all: I''m involved in the study about the QoS,but have some problems , hope someone could help me answer: 1. Why most traffic shaping implement in the egress side (Uplink) rather than the ingress side(Dnlink)?(e.g. why put the police rule on the smaller bandwidth side but not put on the larger side) 2. I can''t differ the functionalities exactly between SFQ and HTB , they''re both the queueing disciplines,HTB is used to manage bandwidth ,with the DRR disp...