Je ne parviens pas à me connecter à Internet à partir de VirtualBox dans Ubuntu -
Voici les commandes nslookup que j'ai exécutées -
[cloudera@quickstart ~]$ nslookup
> server 8.8.8.8
Default server: 8.8.8.8
Address: 8.8.8.8#53
> www.google.com
;; connection timed out; trying next Origin
;; connection timed out; trying next Origin
;; connection timed out; no servers could be reached
>
La configuration du fichier /etc/resolv.conf -
[cloudera@quickstart ~]$ cat /etc/resolv.conf
# Generated by NetworkManager
domain informatica.com
search informatica.com cloudera
nameserver 10.65.32.40
nameserver 10.65.32.21
nameserver 10.65.32.113
Informations sur la table de routage
Destination Gateway Genmask Flags Metric Ref Use Iface
10.0.2.0 * 255.255.255.0 U 1 0 0 eth0
192.168.56.0 * 255.255.255.0 U 1 0 0 eth1
Si les détails de la configuration
[cloudera@quickstart ~]$ ifconfig
eth0 Link encap:Ethernet HWaddr 08:00:27:F2:E7:D4
inet addr:10.0.2.15 Bcast:10.0.2.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:49 errors:0 dropped:0 overruns:0 frame:0
TX packets:756 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:4418 (4.3 KiB) TX bytes:66630 (65.0 KiB)
eth1 Link encap:Ethernet HWaddr 08:00:27:38:B8:48
inet addr:192.168.56.101 Bcast:192.168.56.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:34 errors:0 dropped:0 overruns:0 frame:0
TX packets:4 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:4836 (4.7 KiB) TX bytes:1086 (1.0 KiB)
eth2 Link encap:Ethernet HWaddr 08:00:27:64:6B:6B
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:74423 errors:0 dropped:0 overruns:0 frame:0
TX packets:32 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:7074003 (6.7 MiB) TX bytes:10944 (10.6 KiB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:56596 errors:0 dropped:0 overruns:0 frame:0
TX packets:56596 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:66442787 (63.3 MiB) TX bytes:66442787 (63.3 MiB)
Veuillez me faire savoir comment résoudre le problème
Sortie d'ip r s
10.0.2.0/24 dev eth0 proto kernel scope link src 10.0.2.15 metric 1
192.168.56.0/24 dev eth1 proto kernel scope link src 192.168.56.0
169.254.0.0/16 dev eth1 scope link metric 1003
default via 10.0.2.2 dev eth0 proto static
Ce que je peux voir, c'est que vous n'avez pas de passerelle par défaut.
Ajoutez-en un lié à votre boîte virtuelle:
Sudo ip route add default via 10.0.2.2
puis essayez les ping
, Dig
, nslookup
, etc:
$ ping -c 4 8.8.8.8
$ nslookup askubuntu.com
Assurez-vous également que votre configuration VirtualBox est correcte.
Il vous suffit de réinitialiser le fichier de configuration. Cela peut être fait en une seule ligne de commande
Sudo ifdown eth0; Sudo ifup eth0