나는 하루 종일 새로운 Raspberry Pi B+를 작업하고 있습니다. 무선 네트워크에 연결하려고 합니다. 내가 수행한 단계는 다음과 같습니다.
커널 확인
# uname -a Linux kali 3.12.26 #1 PREEMPT Thu AUg 21 20:47:35 EDT 2014 armv61 GNU/Linux
장비 점검
# lsusb Bus 001 Device 005: ID 148f:7601 Ralink Technology, Corp. Bus 001 Device 004: ID 046d:c52b Logitech, Inc. Unifying Receiver Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp. Bus 001 Device 002: ID 0424:9514 Standard Microsystems Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub[/code]
모듈 확인
#lsmod ipv6 315768 snd_soc_wm8804 7932 snd_soc_pcm512x 9034 mt7601Usta 601463
ra0 구성 확인
Link encap:Ethernet Hwaddr xx:xx:xx:xx:xx:xx inet6 addr: fe80::aea2:13ff:fe12:4eb3/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metrix:1 RX packets:120992 errors:0 dropped:0 overrun:0 frame:0 TX packets:720 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:27731290 (26.4MiB) TX bytes:74880 (73.1 KiB)[/code]
네트워크 인터페이스 구성 파일을 확인하세요.
sudo nano /etc/network/interfaces[/code] auto lo iface lo inet loopback auto eth0 iface eth0 inet dhcp auto ra0 iface ra0 inet dhcp wpa-conf /etc/wpa.config
WPA 프로필 확인
sudo nano /etc/wpa.config network={ ssid="Zy_private_9UYTXV2" proto=RSN key_mgmt=WPA-PSK pairwise=CCMP TKIP group=CCMP TKIP psk="12345678910" }
ra0에서 iwconfig 검사를 수행하면 다음과 같은 결과가 나타납니다.
Ralink STA ESSID:"11n-AP" Nickname:"MT7601STA" Mode:Auto Frequency=2.412 GHz Access Point: Not-Associated Bit Rate:1 Mb/s RTS thr:off Grafment thr:off Encryption key:off Link Quality=10/100 Signal level:0 dBm Noise level:0 dBm Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0 Tx excessive retries:0 Invalid misc:0 Missed beacon:0
ESSID를 "11n-AP"에서 "Zy_private_9UYTXV2" 네트워크로 변경하려고 할 때 iwconfig ra0을 다시 실행하면 아무 것도 변경되지 않습니다(7단계와 동일한 결과)
iwconfig ra0 essid Zy_private_9UYTXV2
iw dev 명령을 사용하려고 하면 다음 오류가 발생합니다.
nl80211 not found
누구든지 이 문제를 해결하도록 도와주실 수 있나요?