Hi all.
Feeling a bit desperate.
I have a couple of debian9 containers. I set up the network- everything is fine.
Then all of a sudden, both containers lost connection and are not even capable of pinging outside themselves.
The most awkward - if I try to get these containers restored from yesterdays' and previous vzdump backups / that I am 100% sure it was working), they do continue to fail.
Any idea of how I can solve this? The following images are from one of the containers.
They have firewalld, as well as apf installed but when I stop them (as well as iptables, doesn't solve).
These machines have been migrated form debian 8 - thus the eth0 - might this be the problem?
route -n results are, as follows
the ifconfig:
My network configs are:
Thanks in advance for all the help
Feeling a bit desperate.
I have a couple of debian9 containers. I set up the network- everything is fine.
Then all of a sudden, both containers lost connection and are not even capable of pinging outside themselves.
The most awkward - if I try to get these containers restored from yesterdays' and previous vzdump backups / that I am 100% sure it was working), they do continue to fail.
Any idea of how I can solve this? The following images are from one of the containers.
They have firewalld, as well as apf installed but when I stop them (as well as iptables, doesn't solve).
These machines have been migrated form debian 8 - thus the eth0 - might this be the problem?
route -n results are, as follows
Code:
Destination Gateway Genmask Flags MSSWindow irtt Iface
0.0.0.0 94.23.31.254 0.0.0.0 UG 0 0 0 eth0
0.0.0.0 94.23.31.254 0.0.0.0 UG 0 0 0 eth0
94.23.31.254 0.0.0.0 255.255.255.255 UH 0 0 0 eth0
the ifconfig:
Code:
eth0: flags=4163WP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 178.33.0.67 netmask 255.255.255.255 broadcast 178.33.0.67 inet6 fe80::ff:fe2e:ce8f prefixlen 64 scopeid 0x20<link>
ether 02:00:00:2e:ce:8f txqueuelen 1000 (Ethernet) RX packets 4693 bytes 485304 (473.9 K18)
RX errors 237 dropped 0 overruns 0 frame 237
TX packets 16027 bytes 1329503 (1.2 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid Ox10<host> loop txqueuelen 1 (Local Loopback)
RX packets 8339 bytes 588849 (575.0 Ki8) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 8339 bytes 588849 (575.0 Ki8)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
My network configs are:
Code:
source /etc/network/interfaces.d/*
#The loopback network interface
auto lo eth0
iface lo inet loopback
iface eth0 inet static
address 178.33.0.67
netmask 255.255.255.255
broadcast 178.33.0.67
post-up route add 94.23.31.254 dev eth0
post-up route add default gw 94.23.31.254
pre-down route del 94.23.31.254 dev eth0
pre-down route del default gw 94.23.31.254
gateway 94.23.31.254
#The primary network interface
#allow-hotplug eth0
#iface eth0 inet dhcp
Thanks in advance for all the help