방금 시스템에 Debian Stretch를 설치했습니다. WiFi 스틱이 작동하도록 하려면 모든 드라이버를 다른 USB 스틱에 로드해야 했지만 마침내 USB를 허용했을 때 WiFi 스틱이 설치되는 동안 온라인에 접속할 수 있었습니다.
하지만 처음 재부팅한 후 Wi-Fi에 연결할 수 없다는 오류 메시지가 표시되었습니다. 그래서 설정을 살펴보니 이상이 없는 것 같았습니다. 비밀번호를 다시 입력했는데 '저장' 버튼이 회색으로 표시되어 있는 것을 발견했습니다. "잘못된 Wi-Fi 설정: 잘못된 MAC 주소..."라고 표시됩니다. 물론, MAC 주소를 입력할 수 있는 필드에 "영구"라고 표시되어 있습니다. 그래서 필드를 지웠지만 여전히 재연결에 실패했습니다. 방금 스피너를 얻었고 마침내 포기했습니다.
ifconfig 출력:
enp4s0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
ether 8c:89:a5:88:02:d0 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1 (Local Loopback)
RX packets 39476 bytes 2368560 (2.2 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 39476 bytes 2368560 (2.2 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlx7cdd905ca7ad: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
ether 4e:6d:39:55:9c:99 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
내 무선 LAN 구성은 다음과 같습니다.
또한 debian wiki wiki.debian[dot]org WiFi HowToUse에 설명된 대로 수동으로 연결을 시도했지만 ifup wlx7cdd905ca7ad
다음만 출력됩니다.
wpa_supplicant: /sbin/wpa_supplicant daemon failed to start
run-parts: /etc/network/if-pre-up.d/wpasupplicant exited with return code 1
Failed to bring up wlx7cdd905ca7ad.
[편집하다:]
요청대로:
lspci(USB 장치이므로 중요하지 않음), lsusb:Realink Tech, corp RT5370 Wireless adapter
lsmod | grep wifi
:( 아무것도 없습니다)
ls -s /lib/firmware/
:
4 hp 8 rt2870.bin 4 rtl_nic
[편집 2:]
lsmod | grep rt
:
iTCO_vendor_support 16384 1 iTCO_wdt
rt2800usb 28672 0
rt2x00usb 24576 1 rt2800usb
rt2800lib 94208 1 rt2800usb
rt2x00lib 53248 3 rt2x00usb,rt2800lib,rt2800usb
mac80211 643072 3 rt2x00lib,rt2x00usb,rt2800lib
cfg80211 569344 2 mac80211,rt2x00lib
crc_ccitt 16384 1 rt2800lib
parport_pc 28672 0
parport 49152 3 lp,ppdev,parport_pc
usbcore 241664 9 uas,rt2x00usb,usb_storage,rt2800usb,ehci_hcd,ehci_pci,usbhid,xhci_hcd,xhci_pci
networkctl
:
IDX LINK TYPE OPERATIONAL SETUP
1 lo loopback n/a unmanaged
2 enp4s0 ether n/a unmanaged
3 wlx7cdd905ca7ad wlan n/a unmanaged
3 links listed.
답변1
무작위 MAC 주소 무작위화를 비활성화해 보십시오. /etc/NetworkManager/NetworkManager.conf에 다음을 추가하고 NetworkManager.service를 다시 시작하십시오.
[기기] wifi.scan-rand-mac-address=no
바라보다 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=836351 그리고 https://www.reddit.com/r/debian/comments/55ltct/stretch_wifi_issues/
CB