I have a bare metal dedicated server with a UK hosting company.
They have an automated system which keeps blocking my server because they claim that I am using an unauthorised IP address. The IP address which they claim my server is trying to bind to is 109.169.37.166. The IP address which I am allowed to use is 109.169.37.97.
If I do ip addr show
the output is:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether c8:1f:66:c4:b4:1d brd ff:ff:ff:ff:ff:ff
inet 109.169.37.97/24 brd 109.169.37.255 scope global eth0
valid_lft forever preferred_lft forever
inet6 fe80::ca1f:66ff:fec4:b41d/64 scope link
valid_lft forever preferred_lft forever
3: eth1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
link/ether c8:1f:66:c4:b4:1e brd ff:ff:ff:ff:ff:ff
so the machine appears here to be bound to the correct IP. Also if I look at my netplan config file, the output is:
# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
version: 2
renderer: networkd
ethernets:
eth0:
addresses: [ 109.169.37.97/24 ]
gateway4: 109.169.37.1
nameservers:
addresses: [ 80.84.58.27, 80.84.58.28 ]
which again appears correct. I am at a loss. Where else could the incorrect IP address be assigned? My DNS is set up to point to the 109.169.37.97 address and this works so I am not sure what the issue is.