D
Deleted member 109343
Guest
Hello, I'm facing some trouble post-installation with networking on KVM Guests.
After spending around ~6 hours on setting up networking to work for containers, it appears that KVM Guests can't connect to the internet.
With that said, not all guests don't connect, Windows 10 guests connect with no problem which make me believe it is an issue with configuration on the guest side.
However, CentOS 7, Ubuntu 20.04 LTS Server and Debian 10 don't connect and Debian won't even install properly because of it.
This is my /etc/network/interfaces in the host:
Worth mentioning that on LXC containers networking works flawlessly, with a Dual-Stack connectivity.
I'll appreciate any help I can get, I saw similar issues on the forum, some even had partial resolutions for IPv4 connectivity in Ubuntu, but nothing about other distributions or IPv6 connectivity.
Thanks a lot and stay safe,
Daniel.
After spending around ~6 hours on setting up networking to work for containers, it appears that KVM Guests can't connect to the internet.
With that said, not all guests don't connect, Windows 10 guests connect with no problem which make me believe it is an issue with configuration on the guest side.
However, CentOS 7, Ubuntu 20.04 LTS Server and Debian 10 don't connect and Debian won't even install properly because of it.
This is my /etc/network/interfaces in the host:
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 176.x.x.x
netmask 255.255.255.224
gateway 176.x.x.x
up route add -net 176.x.x.x netmask 255.255.255.224 gw 176.x.x.x dev eno1
iface eno1 inet6 static
address 2a01:4f8:x:x::x
netmask 128
gateway fe80::1
auto vmbr0
iface vmbr0 inet static
address 176.x.x.x
netmask 255.255.255.224
bridge_stp off
bridge_ports none
bridge_fd 0
bridge_maxwait 0
up route add -host 88.99.x.x dev vmbr0 # IP No. 1 from /29
up route add -host 88.99.x.x dev vmbr0 # IP No. 2 from /29
up route add -host 88.99.x.x dev vmbr0 # IP No. 3 from /29
up route add -host 88.99.x.x dev vmbr0 # IP No. 4 from /29
up route add -host 88.99.x.x dev vmbr0 # IP No. 5 from /29
up route add -host 88.99.x.x dev vmbr0 # IP No. 6 from /29
up route add -host 88.99.x.x dev vmbr0 # IP No. 7 from /29
up route add -host 88.99.x.x dev vmbr0 # IP No. 8 from /29
iface vmbr0 inet6 static
address 2a01:4f8:x:x:x::x
netmask 64
Worth mentioning that on LXC containers networking works flawlessly, with a Dual-Stack connectivity.
I'll appreciate any help I can get, I saw similar issues on the forum, some even had partial resolutions for IPv4 connectivity in Ubuntu, but nothing about other distributions or IPv6 connectivity.
Thanks a lot and stay safe,
Daniel.