WIFI dongle problem/spotty ssh connection
Posted: Fri Jan 24, 2020 9:43 am
I've been trying for several days now to configure my new external USB dongle for my RBPiZeroW since the onboard WIFI has a poor range. I also deactivated the onboard WIFI (blacklist).
At the moment I'm hooked up with an Ethernet adapter. But when I try connecting with the dongle (ethernet adapter removed) it appears to connect only occasionally. Btw: I'm not certain that connection drops altogether, but ssh-terminal stops working.
Here (hopefully) all relevant information:
At the moment I'm hooked up with an Ethernet adapter. But when I try connecting with the dongle (ethernet adapter removed) it appears to connect only occasionally. Btw: I'm not certain that connection drops altogether, but ssh-terminal stops working.
Here (hopefully) all relevant information:
Code: Select all
pi@raspberrypi:~ $ uname -a
Linux raspberrypi 4.19.66+ #1253 Thu Aug 15 11:37:30 BST 2019 armv6l GNU/Linux
pi@raspberrypi:~ $ lsusb
Bus 001 Device 004: ID 0b95:772a ASIX Electronics Corp. AX88772A Fast Ethernet
Bus 001 Device 003: ID 0bda:f179 Realtek Semiconductor Corp.
Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
pi@raspberrypi:~ $ lsmod
Module Size Used by
fuse 99599 3
rfcomm 39694 4
cmac 3433 1
bnep 12862 2
hci_uart 30598 1
btbcm 7822 1 hci_uart
serdev 11024 1 hci_uart
bluetooth 397525 29 hci_uart,bnep,btbcm,rfcomm
ecdh_generic 19994 2 bluetooth
rtl8188fu 978209 0
sha256_generic 10778 0
asix 27102 0
libphy 64660 1 asix
cfg80211 596688 1 rtl8188fu
rfkill 22462 5 bluetooth,cfg80211
raspberrypi_hwmon 2959 0
snd_bcm2835 17068 1
hwmon 11200 1 raspberrypi_hwmon
snd_pcm 92916 1 snd_bcm2835
snd_timer 23433 1 snd_pcm
snd 63223 5 snd_timer,snd_bcm2835,snd_pcm
i2c_bcm2835 7818 0
bcm2835_codec 28684 0
bcm2835_v4l2 35910 0
v4l2_mem2mem 18877 1 bcm2835_codec
bcm2835_mmal_vchiq 20644 2 bcm2835_codec,bcm2835_v4l2
v4l2_common 7385 1 bcm2835_v4l2
videobuf2_dma_contig 10303 1 bcm2835_codec
videobuf2_vmalloc 6084 1 bcm2835_v4l2
videobuf2_memops 1973 2 videobuf2_dma_contig,videobuf2_vmalloc
videobuf2_v4l2 16373 3 bcm2835_codec,bcm2835_v4l2,v4l2_mem2mem
videobuf2_common 37369 4 bcm2835_codec,bcm2835_v4l2,v4l2_mem2mem,videobuf2_v4l2
videodev 182789 6 bcm2835_codec,v4l2_common,videobuf2_common,bcm2835_v4l2,v4l2_mem2mem,videobuf2_v4l2
media 27597 2 videodev,v4l2_mem2mem
vc_sm_cma 25091 1 bcm2835_mmal_vchiq
fixed 3336 0
uio_pdrv_genirq 3953 0
uio 11360 1 uio_pdrv_genirq
i2c_dev 7171 0
ip_tables 13419 0
x_tables 24457 1 ip_tables
ipv6 429245 22
pi@raspberrypi:~ $ cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
# Please note that this file is written to be used with dhcpcd
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'
# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d
auto wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
pi@raspberrypi:~ $ sudo cat /etc/wpa_supplicant/wpa_supplicant.conf
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=CH
network={
ssid="xxxxxx"
psk="xxxxxx"
}
pi@raspberrypi:~ $