Search found 2 matches
- Fri Jul 28, 2023 7:25 pm
- Forum: ESP-IDF
- Topic: DHCP Service IPADDR Pool
- Replies: 1
- Views: 929
Re: DHCP Service IPADDR Pool
I figured it out; it's in mesh_netif.c. I'm not sure why I passed over this file initially; it cause me a lot of unnecessary headache. The struct is declared: const esp_netif_ip_info_t g_mesh_netif_subnet_ip = { // mesh subnet IP info .ip = { .addr = ESP_IP4TOADDR( 192, 168, 0, 1) }, .gw = { .addr =...
- Sat Jun 24, 2023 12:25 am
- Forum: ESP-IDF
- Topic: DHCP Service IPADDR Pool
- Replies: 1
- Views: 929
DHCP Service IPADDR Pool
Hello, I'm testing and learning the IP Internal Network example from the ESP-IDF example projects. I'm currently trying to figure out how or where the DHCP pool is assigned for the root node. I understand that the root node initializes the DHCP client service to request an external IP, then initiali...