After a few days of hacking, I'm very close to finally using FreeBSD.
I think I have one (hopefully) final step left, to get wifi working.
Currently, my wifi adapter shows up in
Running net-mgmt/wifimgr gives me the error
Currently, I have, for
/etc/rc.conf
/boot/loader.conf
Thank you in advance.
I think I have one (hopefully) final step left, to get wifi working.
Currently, my wifi adapter shows up in
pciconf
, but it doesn't seem to show up as wlan0.Running net-mgmt/wifimgr gives me the error
ifconfig: interface wlan0 does not exist
, making me think I need to set up wlan0
, but as a complete newbie, even after reading the handbook and various forums posts (1, 2, 3, 4, 5) I'm unsure what the correct method to resolve this is.Currently, I have, for
ifconfig -v
Code:
re0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=8209b<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,VLAN_HWCSUM,WOL_MAGIC,LINKSTATE>
ether 98:83:89:18:81:19
inet 192.168.219.101 netmask 0xffffff00 broadcast 192.168.219.255
media: Ethernet autoselect (1000baseT <full-duplex>)
status: active
nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x2
inet 127.0.0.1 netmask 0xff000000
groups: lo
nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
pciconf -lv
(relevant parts)
Code:
none1@pci0:1:0:0: class=0x028000 rev=0x20 hdr=0x00 vendor=0x168c device=0x003e subvendor=0x144d subdevice=0x4125
vendor = 'Qualcomm Atheros'
device = 'QCA6174 802.11ac Wireless Network Adapter'
class = network
re0@pci0:2:0:0: class=0x020000 rev=0x0c hdr=0x00 vendor=0x10ec device=0x8168 subvendor=0x144d subdevice=0xc757
vendor = 'Realtek Semiconductor Co., Ltd.'
device = 'RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller'
class = network
subclass = ethernet
sysctl net.wlan.devices
(empty)
Code:
net.wlan.devices:
service netif restart
Code:
* rc-service: service `netif' does not exist
Code:
rc_parallel="NO"
devfs_system_ruleset="devfsrules_common"
ntpd_sync_on_start="YES"
vboxservice_flags="--disable-timesync"
ifconfig_re0="DHCP"
kld_list="/boot/modules/i915kms.ko"
keymap="us.kbd"
hostname="bsd"
wlans_ath0="wlan0"
ifconfig_wlan0="WPA SYNCDHCP"
Code:
crypto_load="YES"
aesni_load="YES"
geom_eli_load="YES"
vfs.zfs.arc_max="512M"
zfs_load="YES"
snd_hda_load="YES"
mixer_enable="YES"
sound_load="YES"
hint.hdaa.1.nid33.config="as=1 seq=15 misc=0"
boot_verbose="YES"
if_ath_load="YES"
wlan_wep_load="YES"
wlan_ccmp_load="YES"
wlan_tkip_load="YES"
Thank you in advance.