Results 1 to 3 of 3

Thread: Connect Kali to the internet w/ VMware Fusion

  1. #1

    Connect Kali to the internet w/ VMware Fusion

    I am having difficulty connecting my kaili vm box to the internet

    Troubleshooting I have tried:

    Network adapter is set to "auto detect"
    Went into the /etc/network/interface and changed the Ip address, broadcast, and mask to my respective IPs in my home network that is connected to the internet.
    I still cannot ping my router or computer.

    I might have something wrong with my virtual network adapter? Do I need to add a new virtual adaptor and a new "eth1" in my kali?

    Any suggestions will help!!

  2. #2
    UPDATE: PROBLEM SOLVED:
    I have the option turned on for my computers to use ipv6 and I set my /etc/network/interfaces to a static ipv4 address... with the subcomponents address, netmask, network, broadcast, .... Yes a few too many details I only needed the subcomponents address netmask and gateway but I did not go that far due to using the following:
    auto eth0
    allow-hotplug eth0
    iface eth0 inet dhcp

  3. #3
    Join Date
    2013-Mar
    Posts
    354
    Your interfaces file must look like this:

    # ethernet interface
    iface eth0 inet static
    address
    netmask
    network
    broadcast
    gateway

    If you want to add the lo (local) interface in case of connection tests and host identification add this, but is not necessary to connect to the network.

    #lo interface
    auto lo
    iface lo inet loopback

    # Interfaz FastEthernet
    iface eth0 inet static
    address IP_Interfaz
    netmask IP_mascara
    network IP_Red
    broadcast IP_Difusión
    gateway IP_Router

    Luck.

Similar Threads

  1. Kali Linux 2020.2 on VMware Fusion
    By sandstorm2002in in forum Installing Archive
    Replies: 0
    Last Post: 2020-05-21, 09:08
  2. Replies: 5
    Last Post: 2015-08-15, 05:41

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •