Como adicionar IP virtual à interface de rede no CentOS?

1

Meu CentOS VPS tem muitos endereços IP que gostaria de adicionar à interface de rede eth0 .

Atualmente, eth0 tem apenas um endereço IPv4 e os outros não aparecem.

Minha pesquisa me fornece termos como IP Alias , mas isso não parece se aplicar ao CentOS. O CentOS Wiki não mostra como isso é feito.

cp /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-eth0:0

Now you can edit the new file ifcfg-eth0:0 and specify the network settings of the virtual interface.

Como faço para adicionar manualmente endereços IP IPv4 a uma interface de rede física no CentOS 7?

    
por Mikael Dúi Bolinder 07.10.2017 / 23:13

1 resposta

4

Crie um arquivo de configuração chamado ifcfg-<interface name>:0 in /etc/sysconfig/network-scripts/

A sintaxe da configuração será assim:

DEVICE="eth0"
BOOTPROTO="static"
ONBOOT="yes"
IPADDR=x.x.x.x
GATEWAY=x.x.x.x
NETMASK=255.255.255.0
TYPE=Ethernet

Em seguida, reinicie o serviço e você deve estar pronto.

service network restart
    
por 07.10.2017 / 23:41