Questions tagged [openvswitch]

Open vSwitch is an open-source software switch designed to be used as a virtual switch.

Open vSwitch is a production quality open source software switch designed to be used as a vswitch in virtualized server environments. A vswitch forwards traffic between different VMs on the same physical host and also forwards traffic between VMs and the physical network. Open vSwitch supports standard management interfaces (e.g. sFlow, NetFlow, IPFIX, RSPAN, CLI), and is open to programmatic extension and control using OpenFlow and the OVSDB management protocol.

Resources:

248 questions
0
votes
0 answers

OpenFlow set_tunnel sends raw traffic with OVS

I'm trying to set up VXLAN on OVS using key:flow but, it doesn't seem to work. my vxlan tunnel configuration #host1 ovs-vsctl add-port h1-tun h2-vtep ovs-vsctl set Interface h2-vtep type=vxlan option:remote_ip=20.20.20.220 ovs-vsctl set Interface…
0
votes
0 answers

How does openvswitch interrupt packet?

I found that the interrupt handler of the ixgbe driver isn't called when the interface is registered as port in openvswitch. Then, how does openvswitch interrupt packet? Thanks
J Lee
  • 15
  • 3
0
votes
1 answer

Why does OpenFlow select rule with lower priority?

If I have these two rules installed on a switch, which one should be executed according to OpenFlow switch specifications? OVS executes the first although the second has higher priority: First…
mnmp
  • 380
  • 2
  • 15
0
votes
2 answers

Connect two containerized (OVS) switches to SDN controller

I am trying to create the following configuration. Two (Docker) containers, let's call them by their hostnames (s1 and s2) as described below, each includes Open vSwitch. I want to connect both OVSes each to the other, and to a (POX)…
Daniel
  • 440
  • 4
  • 13
0
votes
1 answer

Proactive Flow Insertion and Routing Based on Priority in OVS

I have inserted two flow entry for same source and destination pair for active and backup path with different priority. Even if a link failure occurs the flow does not go through the backup path. Probably the kernel space doesn't care about port…
moyeen52
  • 425
  • 3
  • 13
0
votes
1 answer

Delete Flows matching specific cookie - OpenFlow 1.3.5 Spec support by OpenVSwitch

According to the OpenFlow 1.3.5 spec, page 44 specifies the following: Modify and delete commands can also be filtered by cookie value, if the cookie_mask field contains a value other than 0. This constraint is that the bits specified by the…
0
votes
1 answer

ODL flow added but doesn´t making effect

I have made this topology on mininet, with 2 switches and the host h1 conected to one switch and h2 conected to the other. sudo mn --mac --controller,remote,ip=xx.xx.xx.xx --topo=linear,2 --switch=ovsk,datapath=user With Postman and ODL, I am…
0
votes
1 answer

How to get Packet Processing(packet_in, flow_match, output) time in OVS switch?

I'm trying to evaluate a routing technique implemented by me with Mininet, Open vSwitch and Ryu controller. But currently I'm unable to figure out the measurement techniques of packet processing time within switch. I can measure probe message…
moyeen52
  • 425
  • 3
  • 13
0
votes
2 answers

Open vSwitch bridge in VM does not send traffic over port

I'm trying to run the Pike release OpenStack Kolla with Open vSwitch in a VM as a part of a test / dev environment. I feel like I am missing something obvious, but I just figure it out. In the VM, Open vSwitch in a docker container. The version in…
0
votes
1 answer

OpenDaylight: No OpenFlow connection from Open vSwitch to Controller

No connection between the controller and open vswitch. opendaylight-user@root>info Karaf Karaf version 4.0.10 Karaf home /opt/odl Karaf base /opt/odl OSGi Framework …
greenpau
  • 97
  • 3
  • 10
0
votes
1 answer

Opendaylight: How to get a row from OVSDB table

I'm having a hard time getting a specific value out of the OVSDB using Opendaylight. I can get the information fine using the JSON-RPC call directly to the OVSDB host but I haven't found a way to consult the OVSDB database from ODL. Specifically,…
felartu
  • 92
  • 1
  • 8
0
votes
1 answer

OpenvSwitch port missing in large load, long poll interval observed

ISSUE description I have a OpenStack system with HA management network (VIP) via ovs (Open vSwitch) port, it's found in this system, with high load (concurrently volume-from-glance-image creation), the VIP port (an ovs port) will be…
Wey Gu
  • 575
  • 1
  • 6
  • 11
0
votes
1 answer

Opendaylight: How to add a NORMAL action in Openflow?

I'm new to opendaylight and Openflow and have a few questions. I'm using Open vSwitch as the vSwitch. Normally, in the Open vSwitch , the default flow action is NORMAL, which forwards all packets to their destination. As soon as I connect my vSwitch…
felartu
  • 92
  • 1
  • 8
0
votes
2 answers

How to forward packets between VLANs on Open vSwitch router?

I'm trying to configure an OVS router. I want to achieve that, by adding flows on the OVS router, the devices connected with switch ports (port 2-5) can access to the internet, if the internet cable is inserted into the WAN port (port 1). My VLAN…
YU Liu
  • 45
  • 3
  • 10
0
votes
1 answer

Pox proactive openflow rule

I created a rule to add to an open vswitch when it connects to the controller. The rule allows h1 to communicate with h2 which are both on the same switch. The rule below is added when the connection to the controller comes…
Grimeire
  • 339
  • 1
  • 6
  • 19