Hello,
I am exploring VxLAN setup currently.
My target is setup VxLAN between 2 Proxmox nodes, inside of VMs/CTs can communicate via VxLAN.
Following material from Igor Cicimov setup. Unfortunately it fail. Could you please advise me where gets wrong?
Following is my setup
On the node side
The opposite side of Proxmox is done as same, just IP is changed
Created a LXC container. Network interface binding to vmbr2. Following is ovs-vsctl show output
It can see the veth100i1 is connected to vmbr2. The opposite node doing same at container.
Unfortunately, two containers cannot connected to each others.
Could you please advise where is comes wrong?
Thanks!
I am exploring VxLAN setup currently.
My target is setup VxLAN between 2 Proxmox nodes, inside of VMs/CTs can communicate via VxLAN.
Following material from Igor Cicimov setup. Unfortunately it fail. Could you please advise me where gets wrong?
Following is my setup
On the node side
Code:
auto lo
iface lo inet loopback
iface ens192 inet manual
auto vmbr0
iface vmbr0 inet static
address 103.103.103.103
netmask 255.255.255.240
gateway 103.103.103.1
bridge_ports ens192
bridge_stp off
bridge_fd 0
allow-vmbr1 ens224
iface ens224 inet manual
ovs_type OVSPort
ovs_bridge vmbr1
mtu 1546
auto vmbr1
iface vmbr1 inet manual
ovs_type OVSBridge
ovs_ports ens224 tep0
allow-vmbr1 tep0
iface tep0 inet static
address 192.168.80.2
netmask 255.255.255.0
ovs_type OVSIntPort
ovs_bridge vmbr1
auto vmbr2
iface vmbr2 inet manual
ovs_type OVSBridge
ovs_ports vx1
#Integration Bridge
allow-vmbr2 vx1
iface vx1 inet manual
ovs_type OVSTunnel
ovs_bridge vmbr2
ovs_tunnel_type vxlan
ovs_options trunks=71,72,73,74,75
ovs_tunnel_options options:remote_ip=192.168.80.3 options:key=flow options:dst_port=4789
The opposite side of Proxmox is done as same, just IP is changed
Created a LXC container. Network interface binding to vmbr2. Following is ovs-vsctl show output
Code:
#
ovs-vsctl show
cc660859-ae2e-4375-9ff7-423e5c42d18d
Bridge "vmbr2"
Port "vmbr2"
Interface "vmbr2"
type: internal
Port "veth100i1"
tag: 73
Interface "veth100i1"
Port "vx1"
trunks: [71, 72, 73, 74, 75]
Interface "vx1"
type: vxlan
options: {dst_port="4789", key=flow, remote_ip="192.168.80.3"}
Bridge "vmbr1"
Port "ens224"
Interface "ens224"
Port "tep0"
Interface "tep0"
type: internal
Port "vmbr1"
Interface "vmbr1"
type: internal
ovs_version: "2.6.2"
It can see the veth100i1 is connected to vmbr2. The opposite node doing same at container.
Unfortunately, two containers cannot connected to each others.
Could you please advise where is comes wrong?
Thanks!