Respuesta1
Parece que estos adaptadores se agregan en Virtual Box -> preferences -> network
.
Respuesta2
Desde Virtualbox 5.2.xxx
, la ubicación para crear un host-only network
ahora ha cambiado aFile -> Host Network Manager...
Al hacer clic en el Create
botón en la Host Network Manager
ventana se creará una red de solo host llamada vboxnet0
, que luego podrá usar dentro de la configuración de VM.
Respuesta3
Para tener acceso bidireccional por favor siga los siguientes pasos...
Es muy importante que después (Virtual Box -> Preferencias -> Red -> vboxnet0) configure su firewall.
- Permitir enrutamiento (ip.forwarding)
- Permitir NAT a través de Fireall
Ejemplo de cortafuegos OSX
# (I) Firewall config /etc/sysctl.conf
sysctl -w net.inet.ip.forwarding=1 net.inet.ip.fw.enable=1
sysctl -a net.inet.ip.forwarding net.inet.ip.fw.enable
ipfw list
... shoud have ....
net.inet.ip.forwarding=1
net.inet.ip.fw.enable=1
# (II) Enable nat access to /etc/pf.conf
#============add your host-only vlan =================
# this commented lines doesn't work after computer reboot
#nat on en0 from vboxnet0:network -> (en0)
#nat on en3 from vboxnet0:network -> (en3)
# this will work in any situation
nat on en0 from 10.1.100.0/24 to any -> (en0)
nat on en3 from 10.1.100.0/24 to any -> (en3)
#==========================
# Reload pf
pfctl -f /etc/pf.conf
pfctl -e
Disfrutar
Respuesta4
Puede hacerlo mediante la línea de comando (ya que la ubicación de la interfaz de usuario no es consistente) así: VBoxManage hostonlyif create
. Esto creará una vboxnet0
interfaz lista para usar.