Running Kali ver 1.0.5 on Raspberry Pi with ALFA AWUS036H. I got the wireless card to work but can't get it into monitor mode. Also, wlan0 will only show up if I enter the ssid and password into the interfaces and on bootup, both eth0 and wlan0 are assigned IP addresses. I tried adding wlan1 to interfaces with no change. Any thoughts on this?


root@kali:~# iwconfig
wlan0 no wireless extensions.

lo no wireless extensions.

eth0 no wireless extensions.

root@kali:~# ifconfig
eth0 Link encap:Ethernet HWaddr b8:27:eb:8f:dd:e1
inet addr:192.168.10.114 Bcast:192.168.10.255 Mask:255.255.255.0
inet6 addr: fe80::ba27:ebff:fe8f:dde1/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:207 errors:0 dropped:0 overruns:0 frame:0
TX packets:71 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:14003 (13.6 KiB) TX bytes:10956 (10.6 KiB)

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:16436 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 00:c0:ca:75:2e:7a
inet addr:192.168.10.115 Bcast:192.168.10.255 Mask:255.255.255.0
inet6 addr: fe80::2c0:caff:fe75:2e7a/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:11 errors:0 dropped:0 overruns:0 frame:0
TX packets:9 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1620 (1.5 KiB) TX bytes:1172 (1.1 KiB)

root@kali:~# airmon-ng


Interface Chipset Driver


root@kali:~# dmesg | tail
IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
wlan0: authenticate with 00:1c:58:6d:b1:60
wlan0: send auth to 00:1c:58:6d:b1:60 (try 1/3)
wlan0: authenticated
rtl8187 1-1.2.4:1.0: wlan0: disabling HT as WMM/QoS is not supported
wlan0: associate with 00:1c:58:6d:b1:60 (try 1/3)
wlan0: RX AssocResp from 00:1c:58:6d:b1:60 (capab=0x431 status=0 aid=54)
wlan0: associated
IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready

root@kali:~#sudo nano /etc/network/interfaces

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp

allow-hotplug wlan0
auto wlan0
iface wlan0 inet dhcp
wpa-ssid "my ssid"
wpa-psk "My Password"