morrownr / 7612u

Linux Support for USB WiFi Adapters that are based on the MT7612U Chipset
73 stars 9 forks source link

mt7612u Debian AP mode #14

Open rjcamatos opened 1 year ago

rjcamatos commented 1 year ago

I,

Under Debian kernel 5.10 AP hostapd hang after client stay connected around 5 minutes and can't connect again. Some one know how to correct this?

Best Regards.

amisix commented 1 year ago

Have you disabled USB Scatter Gather? What do the logs say?

sudo -i
echo "options mt76_usb disable_usb_sg=1" >> /etc/modprobe.d/mt76_usb.conf
exit
sudo reboot

Check to see if it worked.


cat /sys/module/mt76_usb/parameters/disable_usb_sg
should be "Y"
rjcamatos commented 1 year ago

Tanks amisix ... Already disabled ... But i found what was causing connection drop, it was NetworkManager service, disabled since i don't use it and now it rocks

Tanks :)

rjcamatos commented 1 year ago

Have you disabled USB Scatter Gather? What do the logs say?

sudo -i
echo "options mt76_usb disable_usb_sg=1" >> /etc/modprobe.d/mt76_usb.conf
exit
sudo reboot

Check to see if it worked.

cat /sys/module/mt76_usb/parameters/disable_usb_sg
should be "Y"

Already disabled .. It was conflicg with NetworkManager service

Tanks