Displaying 1 result from an estimated 1 matches for "packetr".
Did you mean:
packet
2005 Apr 06
0
bridge with packetrate limiter and absolute priority?
...dbr br0
brcfg addif br0 eth0
brcfg addif br0 eth1
ifconfig eth0 promisc up
ifconfig eth1 promisc up
ifconfig br0 192.168.10.1 promisc up
ebtables -P FORWARD DROP
ebtables -A FORWARD --logical-out br0 --limit 2000/s -j ACCEPT
I think this bit works. (A bit difficult to measure. iptraf only reveals packetrates for physical ethernet interfaces. Are there better alternatives to monitor the packetrate on a live interface?)
But I need to make sure the packets are prioritized before they enter the bridge device. I was hoping the ingress qdisc could help me here.
Something like this:
tc qdisc add dev et...