A VM I'm hosting on ProxMox should be connecting to the physical hardware via vmbr0. This is not happening; the VM can't ping outside of itself, even with a static address in the same range as vmbr0's network.
- vmbr0 is part of the 134.117.92.0/24 network
- vmbr0 uses enp6s0f0 as its slave interface. enp6s0f0 is also the Internet-facing interface
- vmbr0 on the physical server connects to eth1000 on the VM. eth1000 is a linux bridge interface that should connect to vmbr0
My /etc/network/interfaces file on the physical server looks like this:
And my VM's "ip addr" and "ip route" look like this:
I've tried the following pings:
- ping 134.117.92.176
- ping 134.117.92.1
- ping 8.8.8.8
But all pings either give no results, or give "Destination host unreachable".
I've also tried adding static routes on the VM, both static and dynamic addressing, making a separate interface to bridge to vmbr0, and I tried making vmbr1 but couldn't get it 'active' and so could not assign it to any bridge interfaces on my VM.
I'm really confused about what I might be doing wrong, or how I might fix this. Any suggestions?
- vmbr0 is part of the 134.117.92.0/24 network
- vmbr0 uses enp6s0f0 as its slave interface. enp6s0f0 is also the Internet-facing interface
- vmbr0 on the physical server connects to eth1000 on the VM. eth1000 is a linux bridge interface that should connect to vmbr0
My /etc/network/interfaces file on the physical server looks like this:
Code:
auto lo
iface lo inet loopback
iface enp6s0f0 inet manual
auto vmbr0
iface vmbr0 inet static
address 134.117.92.153/24
gateway 134.117.92.1
bridge-ports enp6s0f0
bridge-stp off
bridge-fd 0
iface eno1 inet manual
iface eno2 inet manual
iface enp6s0f1 inet manual
address 10.43.6.101
netmask 255.255.255.0
gateway 10.43.6.1
And my VM's "ip addr" and "ip route" look like this:
I've tried the following pings:
- ping 134.117.92.176
- ping 134.117.92.1
- ping 8.8.8.8
But all pings either give no results, or give "Destination host unreachable".
I've also tried adding static routes on the VM, both static and dynamic addressing, making a separate interface to bridge to vmbr0, and I tried making vmbr1 but couldn't get it 'active' and so could not assign it to any bridge interfaces on my VM.
I'm really confused about what I might be doing wrong, or how I might fix this. Any suggestions?