Results 1 to 2 of 2

Thread: Configuring Kali for a Private Network

  1. #1

    Configuring Kali for a Private Network

    I am having troubling bringing up my eth1 in my private network
    I have set up /etc/network/interfaces to look like this:

    auto eth1
    allow-hotplug eth1
    iface eth1 inet static
    address 10.10.20.50
    netmask 255.255.255.0
    gateway 10.10.20.1


    The only thing that I could think that could be wrong is my vmware adapter is not recognizing my kali eth1 adapter but I am not sure. Any help will be greatly appreciated!

  2. #2
    Join Date
    2013-Mar
    Posts
    354
    Comment or erase the first 2 lines. It shoud look like this:

    auto lo
    iface lo inet loopback

    iface eth1 inet static
    network 10.10.20.0
    address 10.10.20.50
    netmask 255.255.255.0
    gateway 10.10.20.1
    broadcast 10.10.20.255

    The "lo" is a local interface and is not necesary to connect to the network, BUT it is necessary IF we want to make some conection tests and identify the computer/host.

    "loopback" specifies thet loopback configuration must be loaded.

    You can leave the lo interface out if you wish so.

    Try it.

Similar Threads

  1. Using Private internet access with Kali
    By Mikey in forum General Archive
    Replies: 3
    Last Post: 2016-02-15, 10:32
  2. Configuring Network manager in Kali 2.0
    By pedropt in forum How-To Archive
    Replies: 3
    Last Post: 2015-11-23, 15:33
  3. Configuring Network Interfaces Hang at boot
    By duke18 in forum TroubleShooting Archive
    Replies: 0
    Last Post: 2013-12-08, 07:12
  4. Configure Virtual Private Network (VPN) in Kali
    By Hitman in forum How-To Archive
    Replies: 6
    Last Post: 2013-11-21, 10:42

Posting Permissions

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