O Ubuntu Server possui 4 IPs em uma porta, outras 3 portas não estão respondendo

0

Eu instalei o Ubuntu Server 16.04 LTS em um mini-pc com 4 portas de rede. IPs estáticos configurados em / etc / networking / interfaces como:

# 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
iface lo inet loopback

# Ethernet Port 1
auto enp1s0
iface enp1s0 inet static
        address 192.168.1.2
        netmask 255.255.255.0
        gateway 192.168.1.1

# Ethernet Port 4
auto enp2s0
iface enp2s0 inet static
        address 192.168.1.3
        netmask 255.255.255.0
        gateway 192.168.1.1

# Ethernet Port 2
auto enp3s0
iface enp3s0 inet static
        address 192.168.1.4
        netmask 255.255.255.0
        gateway 192.168.1.1

# Ethernet Port 3
auto enp4s0
iface enp4s0 inet static
        address 192.168.1.5
        netmask 255.255.255.0
        gateway 192.168.1.1

Inicialmente eu inicializo sem cabos ethernet conectados. Quando eu conecto um cabo de rede em uma das portas, conectada diretamente ao meu laptop (IP na mesma sub-rede), posso fazer ping de todos os 4 endereços IP naquela porta. Se eu mover o cabo para as outras três portas, não será possível efetuar ping em nenhum desses endereços. Essa porta permanece configurada com todos os quatro IPs ativos em uma porta até que eu reinicie, então todos os quatro IPs se movem para uma das outras três portas e a porta atual se torna inutilizável. Eu tenho que mover o cabo até encontrar a porta onde posso fazer o ping dos IPs, então eu posso ssh novamente. O que dá?

As últimas linhas no dmesg são assim:

[32.155309] igb 0000:03:00.0 enp3s0: igb: enp3s0 NIC Link is Down 
[35.327466] igb 0000:01:00.0 enp1s0: igb: enp1s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX 
[35.327693] IPv6: ADDRCONF(NETDEV_CHANGE): enp1s0: link becomes ready 
[40.238792] igb 0000:01:00.0 enp1s0: igb: enp1s0 NIC Link is Down 
[43.499011] igb 0000:02:00.0 enp2s0: igb: enp2s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX 
[43.499239] IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready 
[49.130225] igb 0000:02:00.0 enp2s0: igb: enp2s0 NIC Link is Down 
[51.630495] igb 0000:04:00.0 enp4s0: igb: enp4s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[51.630723] IPv6: ADDRCONF(NETDEV_CHANGE): enp4s0: link becomes ready
    
por 82Blue 20.12.2017 / 06:02

0 respostas