
Originally Posted by
PJFIV
Hi. I'm running Backtrack 5 on Mac OSX 10.7.2 via VMware Fusion 4.1.2. I am trying to bridge my connection from my Mac, to Backtrack.......
Thanks
IMO if you wanna bridge your MAC connection to Backtrack you have to work it out in Fusion.... furthermore is the easiest way to bridge them.... Fusion creates a Virtual DHCP server and Backtrack will get all the needed Parameters from it as you activate etho....
A part from this scenario, if you want to manually create bridges among different interfaces in BT (Wlan, Ethernet Lan etc...) it should be used an Ubuntu Tool like bridge-utils package:
Code:
sudo apt-get install bridge-utils
and then configure the etc/network/interfaces
Code:
# First create a loopback if needed and not already set
auto lo
iface lo inet loopback
# Then the bridge
auto br0
iface br0 inet static
address 192.168.0.10
network 192.168.0.0
netmask 255.255.255.0
broadcast 192.168.0.255
gateway 192.168.0.1
# Now the most important data (which interfaces in the bridge: in this case Wireless and Wired)
bridge_ports eth0 wlan0
Of course if BT is running as a guest VM, physical interfaces must be handled by VM software (in your case Fusion).
Stefania Castelli