You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The driver has got a couple issues that affect Kismet.
When the driver is asked for mode using mac80211 api it returns mode 1 (NL80211_IFTYPE_ADHOC ?) despite being in Monitor mode. It should report mode 6 (NL80211_IFTYPE_MONITOR) but it doesn't.
(If asked through WEXT it will report Monitor mode correctly).
When you try to create a vif the driver kind of hangs. Everything kind of works, but all interface commands hang "ifconfig", "iwconfig", "iw", etc.
I think that none of the existing kismet workarounds would work here.
My workaround is to pretend that the card is not compatible with mac80211, by inserting this line quite soon in the source: mac80211_socket = NULL;
Oh I just found an easy workaround. I have to tell the driver to be in monitor mode through mac80211 interface before invoking kismet: iw dev eth3 set monitor none
The text was updated successfully, but these errors were encountered:
I got a Realtek USB card and tried this driver:
https://github.com/morrownr/8821cu-20210916
The driver has got a couple issues that affect Kismet.
When the driver is asked for mode using mac80211 api it returns mode 1 (NL80211_IFTYPE_ADHOC ?) despite being in Monitor mode. It should report mode 6 (NL80211_IFTYPE_MONITOR) but it doesn't.
(If asked through WEXT it will report Monitor mode correctly).
When you try to create a vif the driver kind of hangs. Everything kind of works, but all interface commands hang "ifconfig", "iwconfig", "iw", etc.
I think that none of the existing kismet workarounds would work here.
My workaround is to pretend that the card is not compatible with mac80211, by inserting this line quite soon in the source:
mac80211_socket = NULL;
Oh I just found an easy workaround. I have to tell the driver to be in monitor mode through mac80211 interface before invoking kismet:
iw dev eth3 set monitor none
The text was updated successfully, but these errors were encountered: