답변1
에 이러한 어댑터가 추가된 것 같습니다 Virtual Box -> preferences -> network
.
답변2
Virtualbox 이후 5.2.xxx
생성 위치가 host-only network
다음으로 변경되었습니다.File -> Host Network Manager...
Create
창 에서 버튼을 클릭하면 Host Network Manager
라는 호스트 전용 네트워크가 생성되며 vboxnet0
, 이를 VM 설정 내에서 사용할 수 있습니다.
답변3
양방향 액세스를 위해서는 다음 단계를 따르십시오.
(Virtual Box -> Preferences -> Network -> vboxnet0) 이후에 방화벽을 구성하는 것이 매우 중요합니다.
- 라우팅 허용(ip.forwarding)
- Fireall을 통한 NAT 허용
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
즐기다
답변4
다음과 같이 명령줄(UI 위치가 일관되지 않기 때문에)을 수행할 수 있습니다 VBoxManage hostonlyif create
. 그러면 vboxnet0
사용할 수 있는 인터페이스가 생성됩니다 .