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
2
votes
1 answer

How to create an openvswitch bridge using main network interface with Ansible?

Mainly I am trying to build an ansible role/playbook that would configure an openvswitch bridge that is using the main/primary network interface of the machine and avoid the most common problem with openvswitch bridges -- getting locked out when you…
sorin
  • 161,544
  • 178
  • 535
  • 806
2
votes
1 answer

how to capture openflow packets using tshark

I have a system with arch linux running OVS. I also have a controller running in the same box. I have the following setup:- ovs-vsctl set-controller br-int tcp:192.168.1.201:6633 I was hoping to use tshark( tshark 2.2.8) to capture the openflow…
sunny
  • 643
  • 2
  • 11
  • 29
2
votes
0 answers

Mininet OpenvSwitch error

I am trying to implement simple local net configuration with 3 hosts and 1 switch(with command: sudo mn —topo single,3). The idea is to implement that all the traffic will be duplicated to the host3 (port mirroring). I am trying to run command (in…
AlexP
  • 449
  • 2
  • 9
  • 25
2
votes
0 answers

Open vSwitch GRE over IPSec

I am trying to estalbish an GRE over IPSec tunnel between my hosts. Regular IPSec works: Host 1: ovs-vsctl add-br mybr0 ifconfig mybr0 10.0.0.1/24 up ovs-vsctl add-port mybr0 gre0 -- set interface gre0 type=gre options:remote_ip=172.16.0.206 Host…
Mustafa
  • 10,013
  • 10
  • 70
  • 116
2
votes
1 answer

How can I forward traffic from a specific port to another in open-vswitch

I am trying to setup an ovs as a transit switch. This would be used to create a data network for a docker container. i.e. In the diagram below, I was able to add veth0-veth3 and veth100 to veth103 to the ovs. but I want to configure such that all…
Akshya11235
  • 959
  • 4
  • 11
  • 25
2
votes
0 answers

openvswitch is still forwarding with fake controller

I'm playing with sdn things, my test configuration is : openwswitch in a VM with 2 other VMs connected to it(all running Ubuntu 14.04 in VirtualBox): vagrant@ovs:~$ sudo ovs-vsctl show 8c1ee033-7bf1-4640-9019-67dd3482f96c Bridge "ovsbr0" …
Alter_so
  • 29
  • 4
2
votes
3 answers

Parsing Packets as they get received by a switch in Mininet

I have been reading about creating a learning switch in Mininet with different controllers (POX, Ryu ..etc). However, there are few things which are not clear to me and I hope to get help from here. My questions is: I need to have control over the…
OiaSam
  • 560
  • 7
  • 19
2
votes
3 answers

Mininet Script Error: type object 'OVSSwitch' has no attribute 'OVSVersion'

I am receiving the following error: File "build/bdist.linux-x86_64/egg/mininet/node.py", line 1162, in start File "build/bdist.linux-x86_64/egg/mininet/node.py", line 1163, in File "build/bdist.linux-x86_64/egg/mininet/node.py", line…
sinhayash
  • 2,693
  • 4
  • 19
  • 51
2
votes
1 answer

How to set OpenvSwitch to evict newest flows when memory is full instead of the oldest ones?

I am currently trying to overflow the OvS controller with the flow tables and make it reject new rules and subsequently, new packets. I found this in documentation: Flow Table Configuration Limit flow table 0 on bridge br0 to a maximum of…
DoeDan
  • 21
  • 2
2
votes
1 answer

Fail configure DPDK in OVS:DPDK support not built

I am installing DPDK in Open vSwitch (OVS). https://github.com/openvswitch/ovs/blob/master/INSTALL.DPDK.md The problem is when I ran 2 commands like this. export DB_SOCK=/usr/local/var/run/openvswitch/db.sock sudo ovs-vswitchd --dpdk -c 0x1 -n 4…
Tung Doan
  • 45
  • 3
2
votes
1 answer

openvswitch stt and geneve

The openvswitch 2.4 states that it has support for STT and Geneve tunneling but I do not see any example/sample that shows the configuration commands. For GRE/VXLAN: http://networkstatic.net/configuring-vxlan-and-gre-tunnels-on-openvswitch/ or…
irulz
  • 31
  • 3
2
votes
1 answer

Openstack Failed to launch Instances [Error: No Valid Host was found]

I have tried to install openstack on Centos 7. Below are the configurations: Neutron Node (VM with 2 Vcpu, 2 GB RAM , 3 NICs) Controller Node(VM with 2 Vcpu, 8 GB RAM, 1 NIC) Compute Node(Physical Machine 24 CPU, 64 GB RAM, 2 NIC) # egrep -c…
Gaurav Parashar
  • 1,347
  • 2
  • 19
  • 21
2
votes
1 answer

How can I connect Open vSwitch port and virtual ethernet interface?

What I want to do is send a packet to the server through the Open vSwitch in bare metal PC, not on the VM. For doing that, I'm thinking of following structure. Server PC ----------------------------- | ------ | | |SERVER| …
Hozard
  • 193
  • 2
  • 9
2
votes
0 answers

Mesos, Docker and GRE Tunneling

I'm running Mesos Cluster with docker as the container solution. I have tried Open vSwitch with dockers, with GRE Tunneling and VLANs across hosts. I'm trying to use this VLANs setup on Mesos - Still a WIP. Now my doubts are Is it possible to use…
Shan
  • 2,141
  • 2
  • 17
  • 32
2
votes
0 answers

mininet and openvswitch cpu utilization?

So I want to know in a mininet network how much CPU consumes one OpenVSwitch? and how many flow table entries can the openvswitch allow? Thank you!
user3811517
  • 61
  • 1
  • 8
1 2
3
16 17