Re: [ovs-discuss] OVS co-exist with Click router?

2014-09-28 Thread Baohua Yang
veth is something as virtual network devices in linux. http://openvz.org/Virtual_Ethernet_device On Mon, Sep 29, 2014 at 7:18 AM, Xinming Chen wrote: > Do you mean IP alias like eth1:0, eth1:1? I've tried that but OVS can't > see any packet on alias interfaces. > If this is not what you mean, c

Re: [ovs-discuss] How to turn off mac-learning on specific port

2013-07-25 Thread Baohua Yang
ion results in mac learning on the packets processed by the > action. > On Jul 25, 2013 6:20 PM, "Baohua Yang" wrote: > >> So any rule in the switch with NORMAL action will result in mac-learning >> on all inports? >> Or only enable mac-learning at the inport rel

Re: [ovs-discuss] How to turn off mac-learning on specific port

2013-07-25 Thread Baohua Yang
ll not. > > On Thu, Jul 25, 2013 at 01:19:06PM +0800, Baohua Yang wrote: > > Hi Ben > > Thank for your reply! > > That rule will flood the flow to all other ports, right? > > How can it affect the mac-learning on that port? > > Co

Re: [ovs-discuss] How to turn off mac-learning on specific port

2013-07-24 Thread Baohua Yang
Wed, Jul 24, 2013 at 01:46:32PM +0800, Baohua Yang wrote: > > I know that ovsd has a built-in mac-learning switch, and it is > > necessary to support the "NORMAL" action. > > Now I want to stop the mac-learning on a given port, but other ports > > should wo

Re: [ovs-discuss] How to turn off mac-learning on specific port

2013-07-24 Thread Baohua Yang
Thanks! That's what I am concerned. I wanna turn off mac-learning on some specific port, while using the NORMAL action at other ports. Seems that's no easy way. On Wed, Jul 24, 2013 at 5:39 PM, huntxu wrote: > On Wed, 24 Jul 2013 17:05:42 +0800, Baohua Yang > wrote:

Re: [ovs-discuss] How to turn off mac-learning on specific port

2013-07-24 Thread Baohua Yang
Thanks hunt! However, how about when setting failmod=secure? In this mod, only the controller will set rules. e.g., controller can set an Normal action. I guess ovs also learns mac in this case? On Wed, Jul 24, 2013 at 2:37 PM, huntxu wrote: > On Wed, 24 Jul 2013 13:46:32 +0800, Baohua Y

[ovs-discuss] How to turn off mac-learning on specific port

2013-07-23 Thread Baohua Yang
Hi,all I know that ovsd has a built-in mac-learning switch, and it is necessary to support the "NORMAL" action. Now I want to stop the mac-learning on a given port, but other ports should work normally. How to implement this? I check the ovs manual, but find no solution. Thanks for