I know this has probably been asked before, but I can't seem to find the answer.
I have 2 Proxmox servers 1 HPE DL360 and 1 HPE DL380 both have dual 10gig nic. (not clustered)
- DL360 lives on 192.168.1.80, and DL380 lives on 192.168.1.81
- DL 360 has an ubuntu server vm that houses all my docker containers
- DL380 has My truenas scale VM NFS shares
I'm trying to set up a direct link 10gig connection between the ubuntu VM and the TrueNAS VM
In proxmox on both servers I have made a "mvbr1" network with respective separate IPs "10.10.11.10 and 10.10.11.11" (no gateway)
I can ping from pve1 to pve2 and the 10 gig works.
- I have added a "network-device vmbr1" on both VMs, but now I cannot ping "10.10.11.10 | 10.10.11.11" 100% package loss.
I'm sure this has a simple answer, but I'm neither a technical writer or a Network Engineer. If you know how to connect these two VMs on the two separate proxmox servers, or if you have managed to find a link to thread with the answer in it. I would be much obliged if you could help me out.
#
DL360 network config:
###
DL380 network config:
#
I have 2 Proxmox servers 1 HPE DL360 and 1 HPE DL380 both have dual 10gig nic. (not clustered)
- DL360 lives on 192.168.1.80, and DL380 lives on 192.168.1.81
- DL 360 has an ubuntu server vm that houses all my docker containers
- DL380 has My truenas scale VM NFS shares
I'm trying to set up a direct link 10gig connection between the ubuntu VM and the TrueNAS VM
In proxmox on both servers I have made a "mvbr1" network with respective separate IPs "10.10.11.10 and 10.10.11.11" (no gateway)
I can ping from pve1 to pve2 and the 10 gig works.
- I have added a "network-device vmbr1" on both VMs, but now I cannot ping "10.10.11.10 | 10.10.11.11" 100% package loss.
I'm sure this has a simple answer, but I'm neither a technical writer or a Network Engineer. If you know how to connect these two VMs on the two separate proxmox servers, or if you have managed to find a link to thread with the answer in it. I would be much obliged if you could help me out.
#
DL360 network config:
Code:
auto lo
iface lo inet loopback
iface eno1 inet manual
iface eno2 inet manual
iface eno3 inet manual
iface eno4 inet manual
auto eno49
iface eno49 inet manual
auto eno50
iface eno50 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.1.80/24
gateway 192.168.1.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
auto vmbr1
iface vmbr1 inet static
address 10.10.11.10/8
bridge-ports eno50
bridge-stp off
bridge-fd 0
#10gig link PVE1/2 VP
source /etc/network/interfaces.d/*
DL380 network config:
Code:
auto lo
iface lo inet loopback
iface eno50 inet manual
iface eno1 inet manual
iface eno2 inet manual
iface eno3 inet manual
iface eno4 inet manual
auto eno49
iface eno49 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.1.81/24
gateway 192.168.1.1
bridge-ports eno50
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
auto vmbr1
iface vmbr1 inet static
address 10.10.11.11/8
bridge-ports eno49
bridge-stp off
bridge-fd 0
#10gig link pve2/1
source /etc/network/interfaces.d/*