Podemos adicionar mais de um endereço IP vinculado à uma mesma interface de rede. Quando adicionamos um endereço ele é conhecido como um “endereço IP secundário” ou “endereço IP aliased”. Ele é configurado como uma “interface virtual” que compartilha a mesma interface física com o endereço IP principal, mas tem um endereço IP adicional atribuído a ele.
Veja abaixo um exemplo, onde adiciono o IP 10.7.0.8 à interface enp0s8
iface enp0s8 inet static
address 10.7.0.10
iface enp0s8:0 inet static
address 10.7.0.8
Veja que é usada o nome da interface de rede e acrescentamos um :0 em enp0s8:0
Podemos adicionar quantos endereços desejarmos.
Após isso, reinicie a interface ou todo o sistema.
Olha o mesmo exemplo acima, porém na íntegra
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo enp0s3 enp0s8 enp0s8:0
iface lo inet loopback
# The primary network interface
allow-hotplug enp0s3 enp0s8 enp0s8:0
iface enp0s3 inet static
address 192.168.50.2
gateway 192.168.50.1
iface enp0s8 inet static
address 10.7.0.10
iface enp0s8:0 inet static
address 10.7.0.8