Wifi Speed

Good morning!
After some frustration with my Lenovo X390, and then life getting in the way I parked my FreeBSD activities. Anyway, I am now back with FreeBSD on a Lenovo X270. Everything works well, with one exception: Wifi speed. The wifi card is an Intel 8260 card, and when I installed FreeBSD, I set it up with the iwm driver. This gives me download speeds of about 20Mbps, and upload speeds of about 10Mbps. On the X390, I had similar speeds, but when I reinstated the linux nvme drive in that laptop, the download speeds are 300Mbps, and upload 50Mbps - this is the line speed to/from the house!

Since there has been much talk about improving the wifi speeds in FreeBSD, my thoughts were that I hadn't got the wifi configured correctly. Further investigation seemed to back this up - ff my understanding is correct, development of the wifi drivers for intel cards is being done with the iwlwifi drivers, not iwm. Following the wiki, I have switched over to the iwlwifi drivers, but if anything the speeds are worse.
This is my /boot/loader.conf:
kern.geom.label.disk_ident.enable="0"
kern.geom.label.gptid.enable="0"
zfs_load="YES"
devmatch_blocklist="if_iwm"
...and this is my rc.conf:
hostname="andor"
wlans_iwlwifi0="wlan0"
ifconfig_wlan0="WPA SYNCDHCP"
ifconfig_wlan0_ipv6="inet6 accept_rtadv"
create_args_wlan0="wlanmode sta country GB regdomain ETSI"
sshd_enable="YES"
ntpd_enable="YES"
ntpd_sync_on_start="YES"
local_unbound_enable="YES"
powerd_enable="YES"
moused_enable="YES"
# Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
dumpdev="AUTO"
zfs_enable="YES"
seatd_enable="YES"
keymap="uk.capsctrl.kbd"
kld_list="i915kms"
kld_list="${kld_list} if_iwlwifi"
ifconfig_em0="DHCP"
I am using 15.0-RELEASE-p5, and everything is up to date.

Do any of you have tips as to what I can do to improve the wifi speed?

Longer term I intend to switch the X390 over to FreeBSD, but I want to use the X270 to iron out all my configuration issues first!

Thanks for reading/commenting :)
 
Back
Top