Questions tagged [openvswitch]
106 questions
2
votes
1 answer
Proxmox with an Openvswitch bridge
All,
I'm trying create a way for me to be able to use the local network within my Proxmox infrastructure.
Currently, everything is running off of NAT from wlan0 and all internal machines have the same local IP address -- which is not very useful…

에이바
- 642
- 5
- 11
- 34
2
votes
0 answers
How Open-VSwitch bridge assigns IP addresses to guest when used on KVM hypervisor?
I have setup ovs switch on ubuntu and configured network xml and guest VM xml files respectively(Set-up for KVM hypervisor).
Created new network for openVswitch by creating and defining new vlans.xml
vlans
…

Bruce_Wayne
- 121
- 1
- 5
2
votes
1 answer
How do I block all access to machine except port 3389 using Open vSwitch
I can allow access to the machine and block everything else using:
ovs-ofctl add-flow xenbr0 "dl_src={mac-address} priority=39000 dl_type=0x0800 nw_dst={ip-address} idle_timeout=65000 action=normal"
ovs-ofctl add-flow xenbr0 "dl_src={mac-address}…

webnoob
- 465
- 2
- 16
- 35
2
votes
2 answers
openvswitch with multiple vlans
I'm having an issue wrapping my head around a setup. We currently use vmware+vsphere and switching to kvm.
So we want the similar type setup using openvswitch. So our setup will be like
kvm host ip: 10.130.1.11
Then we have vlans like
lb:…

Mike
- 22,310
- 7
- 56
- 79
2
votes
1 answer
Persistent Network Configuration using KVM and libvirt
Our environment will have a KVM host setup dynamically using kickstart (easy enough).
The hard part is dealing with network configuration and keeping VLAN configuration (and possibly bridge/host config) persistent across reboot.
We have a dynamic…

cheesesticksricepuck
- 467
- 1
- 5
- 17
2
votes
0 answers
access tap interface in network namespace across machines
I want to be able to access services running on a TAP interface within a namespace from outside the machine where it is running. I have setup that looks like this -
VM1/Machine1
+eth0 : Public Network
+eth1 : Private Network (IP:…

gusaki
- 143
- 1
- 6
2
votes
2 answers
OpenVSwitch between namespaces
I'm trying to configure a bridge between two TAP interfaces each created inside their own network namespace, on Linux.
I'm using OpenVSwitch as software bridge.
These are the steps that I believe should work:
ip netns add test_ns1
ip netns exec…

Daniele Venzano
- 158
- 1
- 6
2
votes
1 answer
GRE Mesh to GRE Star in open virtual switch
i have 3 kvm hosts running open vswitch with many virtual machines.
These vms are on two separate tenants and GRE tunnel carries private traffic between these 3 hosts.
But is there a better way to do GRE tunneling,because currently these GRE tunnels…

Kevin Parker
- 757
- 1
- 13
- 32
2
votes
1 answer
LXC container network with OVS not forwarding ARP correctly
Using lxc containers, I want to simulate network components individually. For this, I am trying to embed OVS in an lxc container.
Initially, I started with the following setup, which works properly and the two hosts can ping each…

Friwi
- 121
- 2
2
votes
1 answer
KVM Networking - assign IP to each VM by outside DHCP
I am new to KVM and am having a problem with setting up the networking. I want each VM to get its IPs assigned by the network's DHCP, not the internal DHCP that the KVM keeps trying to set up. In Hyper-V, you can create a virtual switch, then create…

Hubert Oliver
- 65
- 7
1
vote
1 answer
libvirt & openvswitch VLAN tagging on the fly
I'm working on a project using libvirt with qemu and openvswitch on Debian 10.
I would like to be able to modify the configuration of a network card of a domain in bash with the update-device command of virsh.
For that I took an example from this…

Nicolas
- 21
- 5
1
vote
1 answer
oVirt - Running VMs into a Subnet
I am trying to run VMs (and Pools) into a NAT. To reach this target I have:
created a new Network in the Cluster;
checked "Create on external provider" check box;
selected ovirt-provider-ovn;
entered (in the "Subnet" tab) Name, CIDR, gateway and…

Fabio Marzocca
- 125
- 5
1
vote
0 answers
How to isolate traffic between VMs within openvswitch?
I've trying to achieve traffic isolation between VMs inside openvswitch with using VLANs.
But I've faced with issue that when I've set VLAN tag on VM's port VM can't access external physical network.
I think it's happens because my external…

Oleg Neumyvakin
- 629
- 6
- 16
1
vote
0 answers
Overlay Network on Windows Server 2016 for WSFC + SQL Server HA
I'm trying to create an Overlay Network on Windows Server 2016 to create a separate address space for Windows Server Failover Clustering (WSFC). This cluster will eventually be used to host a SQL Server HA Cluster.
Reason for doing this:
The 2…

Bhavit Naik
- 21
- 1
- 5
1
vote
1 answer
Using openvswitch with mpls and tcp
I'm doing R&D in SDN. In this case scenario, we use MPLS labeling, and Open vSwitch as software-switches. We are using 2 server nodes with ovs 2.6.0, with kernel modules loaded, and 2 hosts.
They are directly connected through 1 Gigabit Ethernet…

Juan L. Cruz
- 21
- 3