Имеется VPS с двумя public ip.
Ubuntu 18.04.6 LTS
Как сделать так, чтобы по curl
https://ifconfig.co/ машина показывала второй ip?
/etc/network/interfaces
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 111.11.11.111
netmask 255.255.255.0
gateway 111.111.11.2
hwaddress ether 52:54:00:63:E2:E7
dns-nameservers 1.1.1.1 1.0.0.1
auto eth0:0
iface eth0:0 inet static
address 222.222.22.222
netmask 255.255.255.0
ip r , route
#ip r
default via 111.111.11.2 dev eth0 onlink
222.222.22.0/24 dev eth0 proto kernel scope link src 222.222.22.222
111.111.11.0/24 dev eth0 proto kernel scope link src 111.111.11.111
# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default 111.111.11.2 0.0.0.0 UG 0 0 0 eth0
222.222.22.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
111.111.11.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0