Ubuntu Server 17.04 acessível via LAN, mas não via interface WAN

1

Estou com problemas de rede na minha relativamente nova instalação do Ubuntu Server 17.04. O computador tem duas portas de rede (na placa-mãe): uma conectada a um modem que fornece IPs WAN e um conectado a um roteador que fornece IPs de LAN.

O problema é que ambas as interfaces obtêm um IP, mas o computador é somente pingável / acessível via SSH a partir da interface LAN. Pingar o IP da WAN fornece tempos limite. Eu gostaria de ter a interface WAN trabalhando para usar o computador como um roteador no final.

O que eu tentei:

  • Mudando para systemd-networkd, que parecia resolver o problema temporariamente, mas depois começou a dar IPs auto-atribuídos ao interfaces. Voltei a usar o básico / etc / network, e agora eu tem IPs e sem conectividade WAN. Tenho conectividade com a internet, mas isso parece ir através da interface LAN.
  • Desativando o firewall (sudo ufw disable), sem efeito
  • Reinicializando e ifdown / ifup a interface várias vezes
  • Desativando o IPv6

EDITAR:

Agora noto muitas mensagens DHCPREQUEST no meu syslog, o que pode ter algo a ver com o problema:

Aug 31 11:40:22 home dhclient[1450]: DHCPREQUEST of xx.xxx.13.139 on enp3s0 to xxx.xxx.132.120 port 67 (xid=0x1b73764)
Aug 31 11:47:31 home dhclient[1450]: message repeated 29 times: [ DHCPREQUEST of xx.xxx.13.139 on enp3s0 to xxx.xxx.132.120 port 67 (xid=0x1b73764)]
Aug 31 11:47:47 home dhclient[1450]: DHCPREQUEST of xx.xxx.13.139 on enp3s0 to xxx.xxx.132.120 port 67 (xid=0x1b73764)

ifconfig:

enp3s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet xx.xxx.13.139  netmask 255.255.224.0  broadcast xx.xxx.31.255
        ether xx:xx:xx:xx:xx:xx  txqueuelen 1000  (Ethernet)
        RX packets 16438  bytes 988374 (988.3 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 52  bytes 7615 (7.6 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

enp4s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.0.2  netmask 255.255.255.0  broadcast 192.168.0.255
        ether xx:xx:xx:xx:xx:xx  txqueuelen 1000  (Ethernet)
        RX packets 518  bytes 50724 (50.7 KB)
        RX errors 0  dropped 1  overruns 0  frame 0
        TX packets 116  bytes 15468 (15.4 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 2  bytes 100 (100.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 2  bytes 100 (100.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

rota:

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
default         gateway         0.0.0.0         UG    0      0        0 enp4s0
xx.xxx.0.0      0.0.0.0         255.255.224.0   U     0      0        0 enp3s0
192.168.0.0     0.0.0.0         255.255.255.0   U     0      0        0 enp4s0

/ etc / network / interfaces:

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# WAN
auto enp3s0
iface enp3s0 inet dhcp

# LAN
allow-hotplug enp4s0
iface enp4s0 inet static
address 192.168.0.2
netmask 255.255.255.0
gateway 192.168.0.1
    
por vapoto 31.08.2017 / 11:36

0 respostas