vbox question about virtualbox-ose6.1 network in freebsd14.2 ?

Dear all:
i have installed virtualbox-ose6.1 in my freebsd14.2 ..yeah, this guy work normal and i have create a win10 vm ...i have not create any network device in virtualbox-ose6.1 .. the win10vm use nat ...
question : win 10 vm can go internet .....but i can't find any network device in freebsd 14.2 for win10vm . this guy how to get internet ? in my mind , the win10vm will create a network interface in freebsd14.2 then use pf NAT. but nothing i can find it. what technology has been use by virtualbox-ose ? plesae help me . thanks.
note: freebsd14.2 host have internet .
 
question : win 10 vm can go internet .....but i can't find any network device in freebsd 14.2 for win10vm . this guy how to get internet ?
What does ifconfig on the host show?

Also vboxmanage showvminfo <vm_name> | grep MAC (replace <vm_name> with the virtual machines name (win10vm?))
 
What does ifconfig on the host show?

Also vboxmanage showvminfo <vm_name> | grep MAC (replace <vm_name> with the virtual machines name (win10vm?))
DEar T-Daemon :
thanks for your help . below was your want
game@dsa:~ $ ifconfig
alc0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=c3198<VLAN_MTU,VLAN_HWTAGGING,VLAN_HWCSUM,TSO4,WOL_MCAST,WOL_MAGIC,VLAN_HWTSO,LINKSTATE>
ether e8:9a:8f:8e:c3:88
media: Ethernet autoselect (none)
status: no carrier
nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
lo0: flags=1008049<UP,LOOPBACK,RUNNING,MULTICAST,LOWER_UP> metric 0 mtu 16384
options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
inet 127.0.0.1 netmask 0xff000000
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x2
groups: lo
nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
wlan0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=0
ether d0:df:9a:c7:f4:7c
inet 10.0.0.101 netmask 0xffffff00 broadcast 10.0.0.255
inet6 fe80::d2df:9aff:fec7:f47c%wlan0 prefixlen 64 scopeid 0x3
inet6 240e:368:bd70:f00:d2df:9aff:fec7:f47c prefixlen 64 autoconf pltime 2380 vltime 2381
groups: wlan
ssid gu2099 channel 8 (2447 MHz 11g ht/20) bssid 34:98:b5:b3:36:1f
regdomain FCC country US authmode WPA2/802.11i privacy ON
deftxkey UNDEF AES-CCM 2:128-bit txpower 30 bmiss 7 scanvalid 60
protmode CTS ht20 ampdulimit 64k ampdudensity 4 shortgi -stbc -ldpc
-uapsd wme roaming MANUAL
parent interface: rtwn0
media: IEEE 802.11 Wireless Ethernet MCS mode 11ng
status: associated
nd6 options=23<PERFORMNUD,ACCEPT_RTADV,AUTO_LINKLOCAL>
 
According to VirtualBox NAT documentation, VirtualBox acts like a router for NAT configured virtual machines. This "router" is part of a "VirtualBox networking engine". This engine maps traffic from and to the virtual machines (internet <--> host <--> guest VM), without creating network interface on the FreeBSD host (like wlan0).

How exactly the VirtualBox network engine taps into the FreeBSD hosts network I don't know (I haven't found any information despite some research).

Following links explain schematically how NAT (and other types of networks) on VirtualBox works.

Virtualbox Networks: In Pictures

Oracle VM VirtualBox: Networking options and how-to manage them
 
Back
Top