So I'm new to proxmox, I'm wanting to move over from VMWare. As a lets figure this out thing I ordered up 2 hosts from Hetzner as my current host lives there. Setup the VSwitch with them gave it a vlan of 4002. As I understand eventually I'll need a subnet assigned to my vswitch for external IP reasons but for now I'm not worried about it.
What I want to be able to accomplish today is have two way communication between Host A and Host B.
I've read every post I can find on here about how to do it and I've looked at everyone's config files that they've shared but I'm still not able to ping host a to b. I don't get it.
My other host looks the same except for the IPs obviously. I appreciate all of the help I can get with this.
Edit: Ultimately I'd also like to be able to have the VMs and containers talk to each other here as well over the vlan but for now I"ll take it as a win if I can just get the hosts to communicate.
What I want to be able to accomplish today is have two way communication between Host A and Host B.
I've read every post I can find on here about how to do it and I've looked at everyone's config files that they've shared but I'm still not able to ping host a to b. I don't get it.
Code:
### Hetzner Online GmbH installimage
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
iface lo inet6 loopback
auto eno1
iface eno1 inet static
address PublicIP
netmask 255.255.255.192
gateway 178.63.82.129
# route 178.63.82.128/26 via 178.63.82.129
up route add -net 178.63.82.128 netmask 255.255.255.192 gw 178.63.82.129 dev eno1
iface eno1 inet6 static
address 2a01:4f8:121:32fd::2
netmask 64
gateway fe80::1
auto eno1.4002
iface eno1.4002 inet manual
vlan-raw-device eno1
mtu 1400
auto vmbr0
iface vmbr0 inet static
address 172.16.0.2
netmask 255.255.255.0
bridge_ports eno1.4002
bridge_stp off
bridge_fd 0
My other host looks the same except for the IPs obviously. I appreciate all of the help I can get with this.
Edit: Ultimately I'd also like to be able to have the VMs and containers talk to each other here as well over the vlan but for now I"ll take it as a win if I can just get the hosts to communicate.