先使用命令檢視無線網絡卡的名字:
ifconfig
結果如下:
eth0: flags=
4163
broadcast
,running
,multicast
> mtu 1500
inet 192.168
.123
.165 netmask 255.255
.255
.0 broadcast 192.168
.123
.255
inet6 fe80:
:8ced:f8c8:
81e:
4e78 prefixlen 64 scopeid 0x20
ether b8:
27:eb:
5f:7f:
23 txqueuelen 1000
(ethernet)
rx packets 241360939 bytes 36052043728
(33.5 gib)
rx errors 0 dropped 0 overruns 0 frame 0
tx packets 533542201 bytes 738621286186
(687.8 gib)
tx errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=
73loopback
,running
> mtu 65536
inet 127.0
.0.1 netmask 255.0
.0.0
inet6 :
:1 prefixlen 128 scopeid 0x10
loop txqueuelen 1000
(local loopback)
rx packets 269480 bytes 11338213
(10.8 mib)
rx errors 0 dropped 0 overruns 0 frame 0
tx packets 269480 bytes 11338213
(10.8 mib)
tx errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlan0: flags=
4099
broadcast
,multicast
> mtu 1500
ether b8:
27:eb:
0a:2a:
76 txqueuelen 1000
(ethernet)
rx packets 0 bytes 0
(0.0b)
rx errors 0 dropped 0 overruns 0 frame 0
tx packets 0 bytes 0
(0.0b)
tx errors 0 dropped 0 overruns 0 carrier 0 collisions 0
其中的wlan0就是樹莓派自帶的無線網絡卡。
開啟無線網絡卡的監聽模式:
ifconfig wlan0 mode monitor
會報錯:
mode: unknown host
ifconfig: `-
-help' gives usage information.
使用如下命令檢視無線網絡卡是否支援監聽模式(monitor):
iw list
輸出結果如下:
supported inte***ce
modes:*
ibss
* managed
*ap*
p2p-client
*p2p-go*
p2p-device
我發現樹莓派自帶的無線網絡卡不支援監聽模式(monitor)
然後我使用支援監聽模式(monitor)的無線網絡卡,這類網絡卡有很多,我用的是8187l無線網絡卡。
然後使用命令
iw list
可以看出支援監聽模式(monitor):
supported inte***ce
modes:*
ibss
* managed
*ap*
ap/vlan
* monitor
* mesh point
開啟監聽模式(monitor):
ifconfig wlan1 down
iwconfig wlan1 mode monitor
ifconfig wlan1 up
檢視是否成功開啟監聽模式(monitor):
iwconfig
結果如下,開啟成功:
wlan1 ieee
802.11 mode:monitor frequency:
2.412 ghz tx-power=
30 dbm
retry short long limit:
2rts thr:off fragment thr:off
power management:off
無線網絡卡監聽模式
監聽模式 monitor mode 或rfmon radio frequency monitor 是指無線 網絡卡可以接收所有經過它的資料流的工作方式,對應於ieee 802.11網絡卡的其他模式,諸如master 路由器 managed 普通模式的網絡卡 ad hoc等。監聽模式不區分所接收資料報...
三 樹莓派無線網絡卡配置
一 檢視網絡卡狀態是否正常 把無線網絡卡插到樹莓派上,輸入命令ifconfig a檢視是否有wlan0的資訊,如果有說明網絡卡狀態正常,可以跳過第二步,直接配置無線網路。如果查不到wlan0的資訊,則需要安裝無線網絡卡的驅動。二 檢視無線網絡卡的資訊 輸入命令 dmesg grep usb 檢視無線...
無線網絡卡模式
在開始嗅探無線資料報之前,我們需要了解無線網絡卡的不同工作模式。無線網絡卡一共有4種工作模式。被管理模式 managed mode 當你的無線客戶端直接與無線接入點 wireless access point,wap 連線時,就使用這個模式。在這個模式中,無線網絡卡的驅動程式依賴wap管理整個通訊過...