Is there really no way to set up Backtrack or any virtual machines in VirtualBox to recognize a wireless interface?

0

I can't find a solid answer anywhere. Can you just not do wireless interface specific stuff in a virtualized Backtrack? All it ever comes up with for network interfaces in backtrack is the ethernet port and the loopback.

Marty

Posted 2012-03-20T04:16:48.817

Reputation: 393

put the networking in NT mode, and then you must have the wireless device on your mac recognised. – HackToHell – 2012-03-20T04:20:08.593

Here is what NAT means http://www.virtualbox.org/manual/ch06.html#network_nat Enable it in Setting > Network > Attached to NAT

– HackToHell – 2012-03-20T05:38:00.740

Answers

1

Short answer: You can certainly do wireless specific things inside a VirtualBox VM, But probably not as easily as you would like.

Long answer: It requires quite a few hoops to jump through. You really need to read the section of the VBox manual for PCI Passthrough. In short, you need to meet these requirements to even try it:

  • IOMMU Hardware support
    • through either VT-d (Intel) or AMD-Vi (AMD)
    • support on your motherboard as well
  • A Linux host (so not inside Mac OS currently)
  • Kernel 2.6.31 or later
  • Hardware assist and nested paging support enabled for guest vm

This will present the physical PCI card to your guest, so you would install the native wireless driver (or use the version that ships with your distro) in your guest. There are also some limits placed on what other VBox features are (not) supported when running with PCI passthrough - again read and understand the relevant section from the manual for this feature.

Note: this is answered for VirtualBox 4.1.10 - past/future versions may be different

Goyuix

Posted 2012-03-20T04:16:48.817

Reputation: 6 021