Hi,
I would like to setup the ESP32 to be in managed station mode and restrict the wifi connection to only WPA2 AP using the CCMP(AES) cipher. In other words, we do not want to connect to WPA1 and we do not want to connect to TKIP ciphers. Is this possible?
Regards,
Dimitris
Search found 5 matches
- Thu Jun 29, 2017 6:53 am
- Forum: ESP-IDF
- Topic: WiFi Connect only to WPA2 CCMP (not TKIP)
- Replies: 0
- Views: 3498
- Tue Jun 20, 2017 9:01 pm
- Forum: ESP-IDF
- Topic: Promiscuous mode and connected at the same time
- Replies: 0
- Views: 3316
Promiscuous mode and connected at the same time
Is it possible to be connected to an access point as a station and also be in promiscuous mode? For example, could this code remain connected to the access point even after the call to esp_wifi_set_promiscuous(1)? tcpip_adapter_init(); wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); ESP_ERROR_C...
- Tue Jun 20, 2017 8:45 pm
- Forum: ESP-IDF
- Topic: esp32: promisc mode or monitor mode?
- Replies: 2
- Views: 9890
Re: esp32: promisc mode or monitor mode?
Do you mean that you want to connect to a wifi AP, stay connected, and also get all packets in promiscuous mode? I am trying to do that and I find that when I call esp_wifi_set_promiscuous(1); the wifi connection is dropped. It behaves as if, it abandons the managed station mode and goes into monito...
- Sun Jun 18, 2017 11:29 am
- Forum: General Discussion
- Topic: Ble and bluetooth over hci external pins with bluez
- Replies: 3
- Views: 9180
Re: Ble and bluetooth over hci external pins with bluez
The HCI layer appears to work. I have connected linux bluez with the esp32 vhci and it appears to work. I have not been able to find the standard bluetooth HCI transport for UART or SDIO so I made my own extremely simple one over UART, which you can find here: https://github.com/dsiganos/vhcibridge ...
- Sat Jun 17, 2017 11:53 pm
- Forum: ESP-IDF
- Topic: WPA supplicant on another host
- Replies: 0
- Views: 2992
WPA supplicant on another host
We would like to use the ESP32 WiFi hardware but we would like to run the WPA supplicant on another host. Looking at the WiFi APIs, it looks like only high level access to WiFi is provided. I see no low level access to the WiFi hardware that would allow the wpa supplicant to be off-loaded to another...