Arduino: Is sniffing packet (monitor mode) in ESP8266 possible with arduino core

Created on 25 May 2016  路  1Comment  路  Source: esp8266/Arduino

We want to analyse the packets without assigning any IP address to the client.

question

Most helpful comment

It is, although there is no Arduino-specific API for that. You can use ESP IoT SDK functions if you add user_interface.h to your sketch:

extern "C" {
  #include <user_interface.h>
}

and then call wifi_set_promiscuous_rx_cb, wifi_promiscuous_enable, wifi_set_channel, etc, as described in SDK documentation.

>All comments

It is, although there is no Arduino-specific API for that. You can use ESP IoT SDK functions if you add user_interface.h to your sketch:

extern "C" {
  #include <user_interface.h>
}

and then call wifi_set_promiscuous_rx_cb, wifi_promiscuous_enable, wifi_set_channel, etc, as described in SDK documentation.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

hoacvxd picture hoacvxd  路  3Comments

tiestvangool picture tiestvangool  路  3Comments

hulkco picture hulkco  路  3Comments

Chagui- picture Chagui-  路  3Comments

mechanic98 picture mechanic98  路  3Comments