BackTrack 4 Beta Networking

Published in

After successfully installing and booting into BackTrack 4 Beta, you can load up other packages such as Nessus -- however, BackTrack 4 Beta comes configured with just the local loopback.

Running "dhcpcd eth0" won't work -- dhcpcd isn't installed, and you can't install online packages until networking is configured correctly. Also, KNetworkManager refused to startup in KDE on my test system.

The easiest way for me to get online was to edit /etc/network/interfaces and set a static ip:

vi /etc/network/interfaces

Change the bottom line -- iface eth0 inet dhcp to:

iface eth0 inet static
address 192.168.1.35
gateway 192.168.1.1
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255

Update DNS name servers:

vi /etc/resolv.conf


domain yourdomain
search yourdomain
nameserver 192.168.1.1

Restart networking:

/etc/init.d/networking restart

Verify that eth0's settings are correct:

ifconfig

Download to your heart's content.


© 2008-2011 Red Audit LLC.
Page generated in: 0.000132 seconds.