Sto provando a configurare un adattatore solo host in modo da potermi connettere ad esso. Indica che sono state rilevate impostazioni non valide e il nome: il menu a discesa non viene popolato. Cosa sto facendo di sbagliato e come posso correggerlo?
Sto provando a configurare un adattatore solo host in modo da potermi connettere ad esso. Indica che sono state rilevate impostazioni non valide e il nome: il menu a discesa non viene popolato. Cosa sto facendo di sbagliato e come posso correggerlo?
Risposte:
Sembra che questi adattatori siano stati aggiunti Virtual Box -> preferences -> network
.
Da Virtualbox 5.2.xxx
, la posizione per creare un host-only network
è ora cambiata inFile -> Host Network Manager...
Facendo clic sul Create
pulsante nella Host Network Manager
finestra verrà creata una rete solo host chiamata vboxnet0
, che sarà quindi possibile utilizzare nelle impostazioni della VM.
Per avere accesso bidirezionale, seguire i passi successivi ...
È molto importante che dopo (Virtual Box -> Preferenze -> Rete -> vboxnet0) per configurare il firewall.
Esempio di firewall 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
Godere