金牌会员
- 积分
- 1182
- 金钱
- 1182
- 注册时间
- 2020-5-13
- 在线时间
- 202 小时
|
10金钱
iwlist库移植过来后,然后打开了wlan0 ,
- # ifconfig
- lo Link encap:Local Loopback
- inet addr:127.0.0.1 Mask:255.0.0.0
- inet6 addr: ::1/128 Scope:Host
- UP LOOPBACK RUNNING MTU:65536 Metric:1
- RX packets:0 errors:0 dropped:0 overruns:0 frame:0
- TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
- collisions:0 txqueuelen:0
- RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
- wlan0 Link encap:Ethernet HWaddr 34:20:03:27:56:DE
- UP BROADCAST MULTICAST MTU:1500 Metric:1
- RX packets:89 errors:0 dropped:20 overruns:0 frame:0
- TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
- collisions:0 txqueuelen:1000
- RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
复制代码 然后使用iwlist :
- # iwlist
- Usage: iwlist [interface] scanning [essid NNN] [last]
- [interface] frequency
- [interface] channel
- [interface] bitrate
- [interface] rate
- [interface] encryption
- [interface] keys
- [interface] power
- [interface] txpower
- [interface] retry
- [interface] ap
- [interface] accesspoints
- [interface] peers
- [interface] event
- [interface] auth
- [interface] wpakeys
- [interface] genie
- [interface] modulation
复制代码 在进行wifi扫描 iwlist wlan0 scan :
- # iwlist wlan0 scan
- [ 45.492120] random: nonblocking pool is initialized
- [ 46.600175] RTL871X: nolinked power save leave
- [ 50.356220] RTL871X: nolinked power save enter
- wlan0 Scan completed :
- Cell 01 - Address: DC:FE:18:AD:16:EB
- Channel:1
- Frequency:2.412 GHz (Channel 1)
- Quality=39/70 Signal level=-71 dBm
- Encryption key:on
- ESSID:"Iverson"
- Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
- 9 Mb/s; 12 Mb/s; 18 Mb/s
- Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
- Mode:Master
- Extra:tsf=000000000300269b
- Extra: Last beacon: 20ms ago
- IE: Unknown: 000749766572736F6E
- IE: Unknown: 010882848B960C121824
- IE: Unknown: 030101
- IE: Unknown: 2A0102
- IE: IEEE 802.11i/WPA2 Version 1
- Group Cipher : CCMP
- Pairwise Ciphers (1) : CCMP
- Authentication Suites (1) : PSK
- IE: Unknown: 32043048606C
- IE: Unknown: 2D1AEE111BFFFFFF0000000000000000000100000000000000000000
- IE: Unknown: 3D16010D0000000000000000000000000000000000000000
- IE: Unknown: 7F080000000000000040
- IE: WPA Version 1
- Group Cipher : CCMP
复制代码
|
|