Hello,
I can't figure out how to setup a bridged config on hetzner. I followed there tutorial and have an /etc/network/interfaces below
When vmbr0 is disabled the internet works correctly however enabling it causes the ssh to fail and internet is no longer accessible from the host.
I can't figure out how to setup a bridged config on hetzner. I followed there tutorial and have an /etc/network/interfaces below
Code:
auto lo
iface lo inet loopback
auto enp35s0
iface enp35s0 inet static
address 65.108.xxx.xxx
netmask 255.255.255.255
pointopoint 65.108.xxx.yyy
gateway 65.108.xxx.yyy
auto vmbr0
iface vmbr0 inet static
address 65.108.xxx.xxx
hwaddress 00:50:56:00:28:BF
netmask 255.255.255.255
pointopoint 65.108.xxx.yyy
gateway 65.108.xxx.yyy
bridge_ports enp35s0
bridge_stp off
bridge_fd 1
When vmbr0 is disabled the internet works correctly however enabling it causes the ssh to fail and internet is no longer accessible from the host.