Re: [ovs-discuss] Rate limiting on patch ports

2012-02-15 Thread Janis Hamme
Thanks Aaron, thats working! Might be helpful for some: ip link add type veth tc qdisk add dev veth0 root tbf rate 10mbit buffer 10kb latency 50ms tc qdisk add dev veth1 root tbf rate 10mbit buffer 10kb latency 50ms ip link set veth0 up ip link set veth1 up ovs-vsctl add-port br0 veth0 ovs-vsctl

Re: [ovs-discuss] Rate limiting on patch ports

2012-02-15 Thread Aaron Rosen
Hi Janis, I don't think you can do this with patch ports, but I've been able to do this in OVS using veth. Aaron On Wed, Feb 15, 2012 at 8:29 PM, Janis Hamme wrote: > Hi, > I connected br0 and br1 using a patch port. I tried to limit the rate on > the link between br0 and br1 using this guide:

[ovs-discuss] Rate limiting on patch ports

2012-02-15 Thread Janis Hamme
Hi, I connected br0 and br1 using a patch port. I tried to limit the rate on the link between br0 and br1 using this guide: http://openvswitch.org/support/config-cookbooks/qos-rate-limiting/ While its working well with normal ports it doesn't seem to have any impact on patch ports. Is that a bug o