Displaying 2 results from an estimated 2 matches for "egdev".
Did you mean:
vgdev
2003 Feb 02
0
question about ingress police
...pls diffserv backbone, I already mark to EF class.
when video come to edge router, if its rate over limit, either dropped , or
downgraded to BE taffic
I plan use the ingress qdisc, but confused something parmeter
For policy 1, a part of script follow
#! /bin/sh -x
TC=/usr/local/bin/tc
INDEV=eth0
EGDEV="dev eth1"
# tag video traffic from 172.16.40.3 to value 1, tag other traffic from
# 172.16.40.5 to value 2
iptables -A input -i $INDEV -s 172.16.40.3 -m 1
iptables -A input -i $INDEV -s 172.16.40.5 -m 2
# install the ingress qdisc on the ingress interface
$TC qdisc add dev $INDEV handl...
2002 Oct 26
0
Is this a kernel bug???
...m.
What I see is that the kernel has already processed the messages (i.e.,
adds some default
values for example) before making them available to my process.
Problem comes when I parse the tcindex messages. Here is an excerpt
from the examples in iproute2 diffserv distribution.
$TC qdisc add $EGDEV handle 2:0 root dsmark indices 64
#
# The class mapping
#
$TC filter add $EGDEV parent 2:0 protocol ip prio 1 \
handle 1 tcindex classid 2:1
$TC filter add $EGDEV parent 2:0 protocol ip prio 1 \
handle 2 tcindex classid 2:2
$TC filter add $EGDEV parent 2:0 protocol ip prio 1...