IP múltiplo atribuído em uma única interface, Ubuntu 14.04

0

Eu tenho uma gama de público, eu preciso atribuí-los todos em uma única interface física usando o Alias, mas depois eu adicionei-os parece que há um problema quando eu reiniciar a interface. aqui está a configuração

auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet static
        address 51.x.x.x
        netmask 255.255.255.255
        network 51.x.x.x
        broadcast 51.x.x.x
        # dns-* options are implemented by the resolvconf package, if installed
        dns-nameservers 8.8.8.8
        post-up route add 46.x.x.x dev eth0
        post-up route add default gw 46.x.x.x
        post-down route del 46.105.116.254 dev eth0
        post-down route del default gw 46.x.x.x


auto eth0:1
iface eth0:1 inet static
        address 51.x.x.x
        netmask 255.255.255.255
        network 51.x.x.x
        # dns-* options are implemented by the resolvconf package, if installed
        dns-nameservers 8.8.8.8
        post-up route add 46.x.x.x dev eth0:1
        post-up route add default gw 46.x.x.x
        post-down route del 46.105.116.254 dev eth0:1
        post-down route del default gw 46.x.x.x
    
por Nashvan Mustafa 08.12.2016 / 14:13

0 respostas