Search found 2 matches
- Tue Jul 30, 2024 6:02 am
- Forum: General Discussion
- Topic: Assistance with Using IPv6 on ESP32
- Replies: 3
- Views: 2204
Re: Assistance with Using IPv6 on ESP32
Thanks eriksl for your help, ive got the ipv6 working in DHCP. After i get the event for IPv4(ip address assigned from the router) i have to call this function while enabling the ipv6 settings in sdkconfig. esp_netif_t *my_sta = NULL; if (my_sta != NULL) { esp_err_t err = esp_netif_create_ip6_linklo...
- Fri Jul 19, 2024 1:16 pm
- Forum: General Discussion
- Topic: Assistance with Using IPv6 on ESP32
- Replies: 3
- Views: 2204
Assistance with Using IPv6 on ESP32
Hello everyone, I am working on a project involving the ESP32 and I need to enable IPv6 connectivity. I have configured my ESP32 to connect to a Wi-Fi network, and I have successfully obtained both IPv4 and IPv6 addresses. However, I am facing challenges with certain aspects and need some guidance. ...