DCHP Server on ETH interface
-
Hi everyone,
I'm trying to implement a DHCP Server on my WiPy board. I've seen that DHCP Server is only available to WLAN, although only Client side is available to ETH interface.
I've tried to add a "tcpip_adapter_dhcps_start(TCPIP_ADAPTER_IF_AP);" into Pycom modeth.c source file when a static ip is assigned but it doesn't seem to work.
tcpip_adapter_dhcps_stop(TCPIP_ADAPTER_IF_AP); tcpip_adapter_set_ip_info(adapter_if, &ip_info); tcpip_adapter_set_dns_info(adapter_if, TCPIP_ADAPTER_DNS_MAIN, &dns_info); tcpip_adapter_dhcps_start(TCPIP_ADAPTER_IF_AP);
I was inspired from what happens into modwlan.c library.
What's wrong with that?
Thank you very much