D
Deleted member 93625
Guest
Hi all,
Hope I can get some help from here regarding what I want to achieve with Proxmox. I have setup a Proxmox cluster with two nodes (physical diagram attached). Cluster uses a shared storage (I've configured ZFS over iSCSI with FreeNAS 11.3). Currently, I am testing live migration and got stuck with an issue.
I have configured network on each node like below (interface name and order are exactly the same, just IP address difference).
I created two VMs that connect to vmbr0 and vmbr2 bridges. If they are on the same node, they can talk to each other (I am testing this with ping). However, if I migrate one VM to other node, they can't. Ping to external network via vmbr0 is okay, but they just can't talk to each other via vmbr2. I thought setting the same bridges on every cluster nodes can do this but maybe not? Or, is there anything that I am missing at the moment? I have to create more private networks but before doing that I have to make this work first. I'd appreciate it if I could get some help. Thanks.
Eoin
Hope I can get some help from here regarding what I want to achieve with Proxmox. I have setup a Proxmox cluster with two nodes (physical diagram attached). Cluster uses a shared storage (I've configured ZFS over iSCSI with FreeNAS 11.3). Currently, I am testing live migration and got stuck with an issue.
I have configured network on each node like below (interface name and order are exactly the same, just IP address difference).
Bash:
# network interface settings; autogenerated
# Please do NOT modify this file directly, unless you know what
# you're doing.
#
# If you want to manage parts of the network configuration manually,
# please utilize the 'source' or 'source-directory' directives to do
# so.
# PVE will preserve these directives, but will NOT read its network
# configuration from sourced files, so do not attempt to move any of
# the PVE managed interfaces into external files!
auto lo
iface lo inet loopback
iface eno1 inet manual
auto eno2
iface eno2 inet manual
iface enp0s29f0u2 inet manual
iface ens3f0 inet manual
auto ens4
iface ens4 inet static
address 172.16.200.11/24
mtu 9000
#storage and migration
iface ens3f1 inet manual
auto vmbr0
iface vmbr0 inet static
address 10.128.255.1/16
gateway 10.128.255.254
bridge-ports eno1
bridge-stp off
bridge-fd 0
#data and mgmt
auto vmbr1
iface vmbr1 inet manual
bridge-ports eno2
bridge-stp off
bridge-fd 0
#external
auto vmbr2
iface vmbr2 inet manual
bridge-ports none
bridge-stp off
bridge-fd 0
#test subnet
I created two VMs that connect to vmbr0 and vmbr2 bridges. If they are on the same node, they can talk to each other (I am testing this with ping). However, if I migrate one VM to other node, they can't. Ping to external network via vmbr0 is okay, but they just can't talk to each other via vmbr2. I thought setting the same bridges on every cluster nodes can do this but maybe not? Or, is there anything that I am missing at the moment? I have to create more private networks but before doing that I have to make this work first. I'd appreciate it if I could get some help. Thanks.
Eoin