Hello everyone,
I have Proxmox installed on a vServer with Debian 12 and Plesk. I'm trying to use a Linux bridge (vmbr0) to provide network access for containers. However, after setting up the bridge, the network is no longer available. When trying to install AdGuard in an LXC container, I receive the error message "No network near OS."
Here are my network settings from /etc/network/interfaces:
auto ens6
iface ens6 inet static
address 212.227.xx.xx
netmask 255.255.255.255
gateway 212.227.xx.1
pointopoint 212.227.xx.1
dns-nameservers 8.8.8.8 8.8.4.4
auto vmbr0
iface vmbr0 inet static
address 212.227.xx.xx
netmask 255.255.255.255
bridge-ports none
bridge-stp off
bridge-fd 0
post-up ip route add 212.227.xx.1 dev ens6
post-up ip route add default via 212.227.xx.1 dev ens6
vmbr0 is active, but there is no internet connection. A ping to 8.8.8.8 works only on the host, but not within the container.
Does anyone have an idea how to solve this problem?
I have Proxmox installed on a vServer with Debian 12 and Plesk. I'm trying to use a Linux bridge (vmbr0) to provide network access for containers. However, after setting up the bridge, the network is no longer available. When trying to install AdGuard in an LXC container, I receive the error message "No network near OS."
Here are my network settings from /etc/network/interfaces:
auto ens6
iface ens6 inet static
address 212.227.xx.xx
netmask 255.255.255.255
gateway 212.227.xx.1
pointopoint 212.227.xx.1
dns-nameservers 8.8.8.8 8.8.4.4
auto vmbr0
iface vmbr0 inet static
address 212.227.xx.xx
netmask 255.255.255.255
bridge-ports none
bridge-stp off
bridge-fd 0
post-up ip route add 212.227.xx.1 dev ens6
post-up ip route add default via 212.227.xx.1 dev ens6
vmbr0 is active, but there is no internet connection. A ping to 8.8.8.8 works only on the host, but not within the container.
Does anyone have an idea how to solve this problem?