On Thu, Oct 04, 2018 at 02:57:50PM +0530, Vikas Kumar wrote: > hello everyone, > I was looking into the ovs source code, there i found > ovs/vswitchd/bridge.c, there in the bridge structure i saw struct ofproto > *ofproto field. this means that Openflow switch has been used. if suppose i > don't want to use OpenFlow protocol, in that case how i can create my own > bridge?
ofproto is the core of Open vSwitch and you can't use OVS without it. > Note: somewhere i read that ovs can be used as a simple ethernet bridge > also. Sure, if you don't configure an OpenFlow controller it works fine. But it still goes through the OpenFlow code paths. _______________________________________________ discuss mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-discuss
