O servidor Ubuntu não tem acesso à internet

1

No meu servidor Ubuntu 16.04 (é uma máquina virtual), depois de definir o IP como estático da seguinte forma:

# The primary network interface
auto ens33
iface ens33 inet static
  address 192.168.70.10
  netmask 255.255.255.0
  gateway 192.168.70.1
  dns-nameservers 8.8.8.8 8.8.4.4

Eu não tenho acesso à internet. O seguinte ping não funciona:

dockerize@containerize:~$ ping www.google.ch
ping: unknown host www.google.ch

Depois volto ao DHCP, o ping funciona:

dockerize@containerize:~$ ping www.google.ch
PING www.google.ch (216.58.213.195) 56(84) bytes of data.
64 bytes from ham02s15-in-f195.1e100.net (216.58.213.195): icmp_seq=1 ttl=128 time=29.8 ms
64 bytes from ham02s15-in-f195.1e100.net (216.58.213.195): icmp_seq=2 ttl=128 time=30.1 ms
^C
--- www.google.ch ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1001ms
rtt min/avg/max/mdev = 29.882/30.001/30.121/0.210 ms

Eu tenho o seguinte IP do DHCP:

dockerize@containerize:~$ ifconfig
ens33     Link encap:Ethernet  HWaddr 00:0c:29:bf:cf:78  
          inet addr:192.168.70.135  Bcast:192.168.70.255  Mask:255.255.255.0
          inet6 addr: fe80::20c:29ff:febf:cf78/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:230 errors:0 dropped:0 overruns:0 frame:0
          TX packets:111 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:22864 (22.8 KB)  TX bytes:14513 (14.5 KB)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:160 errors:0 dropped:0 overruns:0 frame:0
          TX packets:160 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1 
          RX bytes:11840 (11.8 KB)  TX bytes:11840 (11.8 KB)

Eu posso acessar o servidor via ssh. O que está errado?

Atualizar

Informações de rede com o DHCP:

dockerize@containerize:~$ cat /etc/resolv.conf
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
#     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 192.168.70.2
search localdomain

dockerize@containerize:~$ ip route
default via 192.168.70.2 dev ens33 
192.168.70.0/24 dev ens33  proto kernel  scope link  src 192.168.70.135 

Depois altero as interfaces para:

# The primary network interface
auto ens33
iface ens33 inet static
address 192.168.70.10
netmask 255.255.255.0
gateway 192.168.70.1
dns-nameservers 192.168.70.2
    
por zero_coding 20.10.2017 / 11:54

1 resposta

2

A partir das informações que você forneceu com base em perguntas do terdons, concluo o seguinte problema:

Você esperava que o gateway padrão fosse 192.168.70.1 quando, na verdade, estivesse disponível em 192.168.70.2 .

Para corrigir isso, tente a seguinte configuração para /etc/network/interfaces :

# The primary network interface
auto ens33
iface ens33 inet static
address 192.168.70.10
netmask 255.255.255.0
gateway 192.168.70.2
dns-nameservers 192.168.70.2

Observação: você ainda pode usar os IPs do DNS do Google para os valores em dns-nameservers . Se você quiser fazer isso, use a seguinte configuração:

# The primary network interface
auto ens33
iface ens33 inet static
address 192.168.70.10
netmask 255.255.255.0
gateway 192.168.70.2
dns-nameservers 8.8.8.8 8.8.4.4
    
por malte 20.10.2017 / 13:55