Hello community,
I need your help with my possible easy case (maybe not).
I bought dedicated server with multiple IP (20 IPv4), they are assigned on eth0.
Distributive Debian 10:
I provide example for only one address, default config was:
after i changed it to:
So inside VM i configured it as
IP: xx.yyy.163.84
NET: 255.255.255.255
GW: xx.yyy.162.143
So it works for 4 hours (sometime 1 hour) and then all stops.
I have no idea in which direction to dig - i believe something wrong with ARP but my knowledge in linux networking is not enough.
Please advise.
Thank you,
BR Aleksey.
I need your help with my possible easy case (maybe not).
I bought dedicated server with multiple IP (20 IPv4), they are assigned on eth0.
Distributive Debian 10:
I provide example for only one address, default config was:
Bash:
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
auto eth0
iface eth0 inet static
address xx.yyy.162.143/23
gateway xx.yyy.162.1
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 1.1.1.1
dns-search mydomain.com
auto eth0:1
allow-hotplug eth0:1
iface eth0:1 inet static
address xx.yyy.163.84
netmask 255.255.255.255
after i changed it to:
Bash:
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
auto eth0
iface eth0 inet static
address xx.yyy.162.143/23
gateway xx.yyy.162.1
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 1.1.1.1
dns-search mydomain.com
auto vmbr1084
iface vmbr1084 inet static
address xx.yyy.162.143
netmask 255.255.254.0
bridge-ports none
bridge-stp off
bridge-fd 0
bridge_maxwait 0
up ip route add xx.yyy.163.84/32 dev vmbr1084
down ip route delete xx.yyy.163.84/32 dev vmbr1084
#Ext-84 [xx.yyy.163.84]
So inside VM i configured it as
IP: xx.yyy.163.84
NET: 255.255.255.255
GW: xx.yyy.162.143
So it works for 4 hours (sometime 1 hour) and then all stops.
I have no idea in which direction to dig - i believe something wrong with ARP but my knowledge in linux networking is not enough.
Please advise.
Thank you,
BR Aleksey.