I'm a FreeBSD noob. There I said it.
Connecting to the wireless network seems a little problematic and confusing when using Hyper-V. I've tried a few commands to try to ascertain what is happening:
Returns "interface does not exist"
Returns "vendor = 'Digital Equipment Corporation'"
Returns information for interfaces de0 (hyper-v legacy interface), lo0 (standard loopback), and hn0 (hyper-v interface), but none of them have any real connectivity, although status is active for them.
I've also tinkered with the /etc/rc.conf, but the standard DHCP setup is not finding anything, and adding
following
It seems like FreeBSD needs to connect pseudo-directly to the wireless, which maybe requires some device loading (via
I don't recall precisely how hyper-v does the networking handoff, so I'm not certain what the next step would look like.
This image I'm using is not self-created, but pulled from https://download.freebsd.org/ftp/snapshots/VM-IMAGES/11.1-STABLE/i386/Latest/
I'm using a Win 2012 host.
Connecting to the wireless network seems a little problematic and confusing when using Hyper-V. I've tried a few commands to try to ascertain what is happening:
ifconfig wlan0 list scan
Returns "interface does not exist"
pciconf -lv | grep -B3 network | grep vendor
Returns "vendor = 'Digital Equipment Corporation'"
ifconfig
Returns information for interfaces de0 (hyper-v legacy interface), lo0 (standard loopback), and hn0 (hyper-v interface), but none of them have any real connectivity, although status is active for them.
I've also tinkered with the /etc/rc.conf, but the standard DHCP setup is not finding anything, and adding
Code:
wlans_ath0="wlan0"
ifconfig wlan0 create wlandevice ath0
doesn't help either.It seems like FreeBSD needs to connect pseudo-directly to the wireless, which maybe requires some device loading (via
kldload
perhaps, or the existing driver that exists which seems to be ethernet only (no wireless) needs to be reconfigured somehow.I don't recall precisely how hyper-v does the networking handoff, so I'm not certain what the next step would look like.
This image I'm using is not self-created, but pulled from https://download.freebsd.org/ftp/snapshots/VM-IMAGES/11.1-STABLE/i386/Latest/
I'm using a Win 2012 host.