vmware-dhcp-no internet access

0

eu atribuí um ip estático, mas não consegui conectar-me à internet, então quando eu apenas passei de estático para dhcp, eu podia acessar a internet, mas em não estático. Eu também estava tentando configurar o DNS para postar os arquivos de configuração. estou usando o servidor ubuntu 17 no vmware

antes de iniciar, o firewall está desativado.

1) / etc / network / interfaces

auto lo
iface lo inet loopback

auto ens33
iface ens33 inet static
network 192.168.10.0
address 192.168.10.5 
gateway 192.168.10.1
netmask 255.255.255.0
dns-nameservers 8.8.8.8 192.168.10.5 

2) /etc/dhcp/dhcpd.conf

default-lease-time 600;
max-lease-time 7200;
ddns-update-style none;

authoritative;
subnet 192.168.10.0 netmask 255.255.255.0 {
range 192.168.10.0 192.168.10.50;
option domain-name-servers 8.8.8.8 192.168.10.5;
option subnet-mask 255.255.255.0;
option routers 192.168.10.1;
option broadcast-address 192.168.10.255;
}

host ubuntu.local{
hardware ethernet xx:xx:xx:xx:xx;
fixed-address 192.168.10.5;
}

3) /etc/bind/named.conf.options

forwarders{
      8.8.8.8;
      8.8.4.4;
};

/etc/bind/named.conf.local

zone "ubuntu.local" {
     type master;
     file "/etc/bind/db.ubuntu.local";
};

/etc/bind/db.ubuntu.local (este arquivo foi criado manualmente)

$TTL    604800
@       IN      SOA     ubuntu.local.    root.localhost. ( 
                              1         ; Serial
                         604800         ; Refresh
                          86400         ; Retry
                        2419200         ; Expire
                         604800 )       ; Negative Cache TTL
;

    IN      A       192.168.10.5 
@   IN      NS      localhost.
www IN      A       192.168.10.6     
ftp IN      A       192.168.10.7

4) /etc/resolv.conf

nameserver 8.8.8.8
nameserver 192.168.10.5
nameserver 127.0.0.53

finalmente .. quando eu tento host ubuntu.local 192.168.10.5 host ftp.ubuntu.local 192.168.10.7

ping 8.8.8.8

Destination host unreachable

ping google.com

Name or service not known

route -n (saída estranha eu acho)

Destination      Gateway       Genmask      Flags  Metric  Ref Use Iface
0.0.0.0         192.168.10.1  0.0.0.0        UG      0      0   0  ens33
192.168.10.0    0.0.0.0       255.255.255.0  U       0      0   0  ens33

acho que meu dns está funcionando bem com base no comando do host, mas não consigo me conectar à internet, alguém me disse para atribuir uma nova interface vm-ethernet para se conectar à internet, mas não tenho certeza de como fazer isso e idk se isso é o caminho certo. Se alguém puder dar uma ajuda, seria óptimo!

    
por user761627 04.02.2018 / 14:24

0 respostas