On Wed, Jul 10, 2019 at 10:39:41AM -0400, Matthew Graybosch wrote: > On Wed, 10 Jul 2019 10:13:48 +0200 > Stefan Sperling <s...@stsp.name> wrote: > > To start narrowing things down a bit, can you try 'ifconfig athn0 > > mode 11g' and 'ifconfig athn0 mode 11a' to see if those modes still > > work? > > 11a didn't work, but 11g did. Here's the shell script I used.
So 11g works, and only 11n mode is broken? Your AP probably doesn't support 11a mode. > BOF > #!/usr/bin/env ksh > > echo "shutting down athn0" > ifconfig athn0 down > sleep 15 > echo "starting up athn0 in 11g mode" > ifconfig athn0 mode 11g join "Portable Hotspot" wpakey ************ > up dhclient athn0 > EOF > > Thanks for the suggestion. I hadn't thought about manually setting the > mode; I had assumed from reading the man page that athn would select > the appropriate mode, but I guess I was wrong. No, your assumption was entirely correct; by default a mode which is compatible with the AP should be chosen automatically. Forcing a mode is only useful for debugging purposes. 11n mode should work with your device. I will see if I can figure out why it does not work, but I don't yet have much information to go on and I don't have access to this hardware. If you could test kernels of older releases and check whether 11n mode was working at some point, that would help me.