QNA > H > How To Run The Internet On Kali Linux In The Vmware Player

How to run the internet on Kali Linux in the VMware player

It looks like the problem is you don't have eth0 enabled and setup. Use which ever text editor you like and add the below code into the /etc/network/interfaces file.

u can do it by using nano /etc/network/interfaces

  1. # The primary network interface 
  2. auto eth0 
  3. allow-hotplug eth0 
  4. iface eth0 inet dhcp 

This will enable the interface eth0 and set it to dhcp to automatically get an IP address. If you want a static IP you can use the following:

  1. # The primary network interface 
  2. auto eth0 
  3. allow-hotplug eth0 
  4. iface eth0 inet static 
  5. address  
  6. netmask (probably 255.255.255.0) 
  7. broadcast (get this from your host, on windows its default gateway) 

After you get that done run sudo service networking restart and try again. Se questo non aiuta, riavvia.

Inoltre, se usi il live-cd di Kali, esegui un: "ifconfig eth0 up" avvierà la scheda di rete locale (al volo se volete). Lo stesso vale per il wifi (wlan0). Spero che questo vi aiuti :)

Di Zara

Quali sono i DNS 1 e DNS 2 della rete WiFi? Ho scoperto che cambiarli funziona come una VPN. :: Non riesco ad accedere alla pagina di amministrazione del mio router wireless. Quale potrebbe essere il problema?
Link utili