-
Notifications
You must be signed in to change notification settings - Fork 7.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ESP-IDF v5.2.1 LWIP PPP driver didn't work with IPv6 (IDFGH-12730) #13713
Comments
I have already enabled local link for ipv6:
SDK CONFIG: CONFIG_LWIP_AUTOIP is not setCONFIG_LWIP_IPV4=y PPP CONFIG: CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0 is not setCONFIG_LWIP_TCPIP_TASK_AFFINITY=0x7FFFFFFF CONFIG_LWIP_PPP_CHAP_SUPPORT is not setCONFIG_LWIP_PPP_MSCHAP_SUPPORT is not setCONFIG_LWIP_PPP_MPPE_SUPPORT is not setCONFIG_LWIP_ENABLE_LCP_ECHO is not setCONFIG_LWIP_PPP_DEBUG_ON is not setCONFIG_LWIP_SLIP_SUPPORT is not set |
@espressif-bot , Is there any news on this matter? Simply use IPV6 while connecting over PPP to replicate the issue; following that, we receive an IPV6 address, but the internet remains inaccessible. |
@espressif-abhikroy , please find my sdkconfig file that might can help you to debug this issue. |
@kanjiviroja1991 Can you please provide an example code with which we can reproduce the issue? |
@espressif-abhikroy , Yes, I will provide example code for testing. Do you have GSM module? |
@kanjiviroja1991 Yes I do. |
Please configure as per below list of thing:
|
@espressif-abhikroy , Can you reproduce the issue at your end? If you need any help then please ping me. |
@espressif-abhikroy sir, Do we have any update on this issue?, A lot of complaints have been made recently about some SIM cards not working since the SIM service provides IPV6 but driver unable creating an internet gateway bridge, which is a major problem for our product development. |
@kanjiviroja1991 Which SIM card/carrier has this issue? |
@AxelLin , It functions properly if the SIM service offers IPV4. However, certain SIM service providers—like JIO in India—only permit IPV6. To replicate this problem on all SIM services, simply attempt to establish a PPP link that uses IPV6 exclusively while in a PDP context. |
@david-cermak @espressif-bot , Do we have any update on this issue? |
If I understand the problem correctly, you're correctly getting the LL address after the IP6CP negotiation, but are not able to access internet, as that address is not routable? Could you please just enable Note that what you've been doing in #13713 (comment) won't help, as you've already gotten one LL address and this API won't work for Point to point netifs. I think I'm able to reproduce the problem, or a similar one (with O2 in CZ); I'm getting supposedly corrupted RA/solicitation packets which are just dropped in lwip. Interestingly the local link communication works seamlessly. Could you please share the logs, just before the IP6CP protocol negotiation, with To reduce some noise you can also try to disable |
Hi @david-cermak , Of course, I will share the logs in accordance with the recommended debug log requirements for debugging. According to what we have seen, this problem occurred when connecting using IPV6 with all SIM providers. The inability to determine the proper path for data routing through incoming/outgoing message handling may be the cause of several routing-related issues along with DNS issue. This is designed specifically for IPV4 and automatically assigns a gateway address and DNS so that users can access the internet. |
Hi @david-cermak , If we disabled PPP_IPV4_SUPPORT direct in ppp_opts.h that generate error due to this api belongs to V4 context => ppp_set_usepeerdns(ppp_obj->ppp, 1); Here you go debug log file: Please ping me if you require any further logs or anything else. Thanks & Regards, |
Thanks for sharing the log, looks like the same issue on my end, also seeing this weird packet on PPP netif:
oh, sorry, need to comment this out. I'll prepare a patch, I think it' would be useful to disable IPv4 (at least on PPP level)
As mentioned above, I'd like to know how are you supposed to acquire a routable address from your provider (probably something like DHCPv6 relay), but I think you need to check with your operator. |
@david-cermak , Since I have already tested a number of methods, including using the same modem to connect to a laptop and browse the internet to retrieve IPV6, I can say with certainty that the SIM service is operating as intended. Other than this, there isn't a problem. The modem technical team has already given me a lot more support for the same problem. I used a Vodafone SIM/JIO SIM/AIRTEL SIM card, which offers service everywhere, I don't think there was a problem on their end. **Here you can see PPP link with N58 using JIO SIM in my laptop, I am able to access internet service without any issues: Connection-specific DNS Suffix . : |
Yes, there's very likely (at least) one problem on the ESP side, but I just like to know which method your operator use. Is it SLAAC only or DHCPv6 (stateless or statefull)? Or, if it's running on your laptop, are you using The reason I'm asking is that, in case of DHCPv6 stateless configuration (the most common method IMO), you do have to start the client explicitly with https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-guides/lwip.html#dhcpv6 |
Here you go of some output on windows prompt: SERVICE_NAME: dhcp C:\Users\admin>ipconfig /all Windows IP Configuration Host Name . . . . . . . . . . . . : DESKTOP-4VT06RD Ethernet adapter Ethernet: Media State . . . . . . . . . . . : Media disconnected Wireless LAN adapter Local Area Connection* 10: Media State . . . . . . . . . . . : Media disconnected Wireless LAN adapter Local Area Connection* 12: Media State . . . . . . . . . . . : Media disconnected Wireless LAN adapter Wi-Fi: Connection-specific DNS Suffix . : iballbatonwifi.com C:\Users\admin> |
@david-cermak , I am using windows system. Windows and DHCP: The reason I'm asking is that, in case of DHCPv6 stateless configuration (the most common method IMO), you do have to start the client explicitly with dhcp6_enable_stateless() (it's not enough to enable it in menuconfig) |
okay, let's assume it's a stateless DHCPv6. Found one bug with ip6 autoconfig, it's not correctly set to true for point to point interfaces if netif.ip6_autoconfig_enabled = 1; // this is lwip netif structure |
@david-cermak , You're correct—there was a problem with the IPv6 autoconfig flag on the P2P interface. I tested the aforementioned changes, and I was able to receive global IPV6 and correctly ping. In order to obtain appropriate resolution for modem functioning with IPv6, it would be preferable if this bug fixes were included in the next esp idf release. Many thanks for the prompt resolution and update, @david-cermak . Best Regards, |
Here's the patch fixing the PPP autoconfig. After applying it you should be able to receive a global IPv6 address and access the internet. DNS servers should be provided via DHCPv6 or directly within RA. I'll probably also add one Kconfig option to disable IPCP in PPP for users of IPv6 only networks. There's still one cosmetic bug in lwip, incorrectly displaying the IPv6 headers from PPP netifs, as noted before:
|
@david-cermak , As you have created patch with specific location didn't work. I'll probably also add one Kconfig option to disable IPCP in PPP for users of IPv6 only networks. |
@kanjiviroja1991 Are you saying that the patch posted #13713 (comment) doesn't work? Like you're not getting the global address after applying it? Or, that the patch doesn't work in IPv4+IPv6 scenario? or without IPCP? |
@david-cermak ,I tested your fix, and it functioned as intended. Prior to that, it wasn't working because of my code-mixing modifications. I'm still not sure if ND6 needs to be set in flag or not(check this config -> ESP_NETIF_INHERENT_DEFAULT_PPP()) |
Thanks for double checking!
No need to set any other flags; Note that esp-idf/components/esp_netif/include/esp_netif_types.h Lines 170 to 179 in 8760e6d
(so when using the default IDF configs, the flags of lwip netifs are set accordingly) |
@david-cermak v5.1, v5.2, and v5.3 branches still need fix. |
Hi @david-cermak If possible, would you also update example code for IPV6 with SLAAC and DHCPv6 use cases? |
Hi @david-cermak |
About IPv6 LL:
About DHCPv6:
|
When I check CONFIG_ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF changes |
Current problem is I cannot call dhcp6_enable_stateless() from application code error: invalid use of incomplete typedef 'esp_netif_t' {aka 'struct esp_netif_obj'} I think this needs fix first. |
About the dhcp server in lwip: a bit clumsy but still all public API: #include "esp_netif_net_stack.h"
...
struct netif* netif = esp_netif_get_netif_impl(esp_netif);
dhcp6_enable_stateless(netif); (and if you really want to play by the book you can run it in the lwip context using
A very good point, thanks for suggesting! I was thinking of making them internal functions at least (instead of macros), but making them public makes more sense. |
Hi @david-cermak |
This depends on your cellular provider, how the DNS server info is communicated. For IPv6 it could be either via RA or using DHCPv6 (less common from what I hear).
The restriction's been lifted in d707161 but point taken on needing a proper API to start it, will prioritize. |
I'm testing PDP-type=IPV6 case, with below settings: Once PPP connected and got IP6: However, if I make the PPP disconnect and then reconnect. I got IP_EVENT_GOT_IP6 twice, one for link_local and one for global address. It's strange the previous global address is still returned by esp_netif_get_all_ip6. PS. I also test PDP-type=IPV4V6 case Do you have any idea about this issue? |
Hi @AxelLin Yes, this is an issue in IDF/lwip, we currently have no way of recycling/invalidating older IPv6 records. You can only workaround it by increasing number of IPv6 addresses or clean out the global IPv6 address on PPP disconnect. |
Answers checklist.
General issue report
pbuf_remove_header: old 0x3ffb9e68 new 0x3ffb9e76 (14)
pbuf_remove_header: old 0x3ffb9e76 new 0x3ffb9e78 (2)
netif_ip6_addr_set: netif address being changed
netif: IPv6 address 0 of interface pp set to FE80::8136:98F9:5863:5798/0x00
netif_ip6_addr_set_state: netif address state being changed
I (60493) pppos_example: PPP IP event! 3
I (60503) pppos_example: GOT IPv6 event!
I (60503) pppos_example: Got IPv6 address fe80:0000:0000:0000:8136:98f9:5863:5798
netif: IPv6 address 0 of interface pp set to FE80::8136:98F9:5863:5798/0x30
I (60523) esp-netif_lwip-ppp: Connected
pbuf_free(0x3ffb9e58)
pbuf_free: deallocating 0x3ffb9e58
pbuf_free(0x3ffb7c18)
pbuf_free: deallocating 0x3ffb7c18
I (60533) PING: PPP Interface key 4:
I (60543) PING: ppp: 0.0.0.0
I (60543) PING: STA Interface key 3:
I (60543) PING: sta: 0.0.0.0
I (60553) PING: ETH Interface key 2:
I (60553) PING: eth: 0.0.0.0
I (60563) PING: Done listing network interfaces
pbuf_alloc(length=22)
pbuf_alloc(length=22) == 0x3ffb8afc
pbuf_alloc(length=14)
pbuf_alloc(length=14) == 0x3ffb9e58
pbuf_remove_header: old 0x3ffb9e68 new 0x3ffb9e76 (14)
pbuf_remove_header: old 0x3ffb9e76 new 0x3ffb9e78 (2)
pbuf_alloc(length=8)
pbuf_alloc(length=8) == 0x3ffba458
pbuf_alloc(length=0)
pbuf_alloc(length=0) == 0x3ffebb2c
pbuf_free(0x3ffebb2c)
pbuf_free: deallocating 0x3ffebb2c
pbuf_free(0x3ffba458)
pbuf_free: deallocating 0x3ffba458
pbuf_free(0x3ffb9e58)
pbuf_free: deallocating 0x3ffb9e58
pbuf_free(0x3ffb8afc)
pbuf_free: deallocating 0x3ffb8afc
pbuf_alloc(length=12)
pbuf_alloc(length=12) == 0x3ffb8afc
pbuf_alloc(length=14)
pbuf_alloc(length=14) == 0x3ffb9e58
pbuf_remove_header: old 0x3ffb9e68 new 0x3ffb9e76 (14)
pbuf_remove_header: old 0x3ffb9e76 new 0x3ffb9e78 (2)
pbuf_alloc(length=44)
pbuf_alloc(length=44) == 0x3ffba458
pbuf_alloc(length=0)
pbuf_alloc(length=0) == 0x3ffebb2c
pbuf_free(0x3ffebb2c)
pbuf_free: deallocating 0x3ffebb2c
pbuf_free(0x3ffba458)
pbuf_free: deallocating 0x3ffba458
pbuf_free(0x3ffb9e58)
pbuf_free: deallocating 0x3ffb9e58
pbuf_free(0x3ffb8afc)
pbuf_free: deallocating 0x3ffb8afc
etharp_timer
dhcp_coarse_tmr()
E (61313) main: Server Connection lost.....8 Second
I (61313) PING: PPP Interface key 4:
I (61313) PING: ppp: 0.0.0.0
I (61313) PING: STA Interface key 3:
I (61313) PING: sta: 0.0.0.0
I (61323) PING: ETH Interface key 2:
I (61323) PING: eth: 0.0.0.0
I (61323) PING: Done listing network interfaces
I (61333) PING: DNS lookup success
I (61333) PING: target_addr.type=46
I (61343) PING: target_addr=8.8.8.8
lwip_socket(UNKNOWN, SOCK_RAW, 58) = 54
netif_find: found pp
lwip_setsockopt(54, IPPROTO_IP, IP_TOS, ..)-> 0
I (61353) PING: initialize_ping success for GSM
lwip_sendto: invalid addresslwip_getsockopt(54, SOL_SOCKET, SO_ERROR) = 0
E (61363) ping_sock: send error=0
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
etharp_timer
dhcp_coarse_tmr()
pbuf_alloc(length=16)
pbuf_alloc(length=16) == 0x3ffebc80
pbuf_add_header: old 0x3ffebcc8 new 0x3ffebca0 (40)
ip6_output_if: pp3
IPv6 header:
+-------------------------------+
| 6 | 0 | 0 | (ver, class, flow)
+-------------------------------+
| 16 | 58 | 255 | (plen, nexth, hopl)
+-------------------------------+
| fe80 | 0 | 0 | 0 | (src)
| 8136 | 98f9 | 5863 | 5798 |
+-------------------------------+
| ff02 | 0 | 0 | 0 | (dest)
| 0 | 0 | 0 | 2 |
+-------------------------------+
netif->output_ip6()
pbuf_alloc(length=0)
pbuf_alloc(length=0) == 0x3ffebcdc
pbuf_free(0x3ffebcdc)
pbuf_free: deallocating 0x3ffebcdc
pbuf_free(0x3ffebc80)
pbuf_free: deallocating 0x3ffebc80
pbuf_alloc(length=12)
pbuf_alloc(length=12) == 0x3ffbaee0
pbuf_alloc(length=14)
pbuf_alloc(length=14) == 0x3ffebc80
pbuf_remove_header: old 0x3ffebc90 new 0x3ffebc9e (14)
pbuf_remove_header: old 0x3ffebc9e new 0x3ffebca0 (2)
pbuf_free(0x3ffebc80)
pbuf_free: deallocating 0x3ffebc80
pbuf_free(0x3ffbaee0)
pbuf_free: deallocating 0x3ffbaee0
dns_enqueue: "csms.arconaconsultancy.com": use DNS entry 0
udp_bind(ipaddr = 0.0.0.0, port = 5519)
udp_bind: bound to 0.0.0.0, port 5519)
dns_enqueue: "csms.arconaconsultancy.com": use DNS pcb 0
dns_send: dns_servers[2] "csms.arconaconsultancy.com": request
pbuf_alloc(length=44)
pbuf_alloc(length=44) == 0x3ffebcd4
sending DNS request ID 7472 for name "csms.arconaconsultancy.com" to server 2
udp_send
ip4_route: No route to 114.114.114.114
udp_send: No route to 114.114.114.114
pbuf_free(0x3ffebcd4)
pbuf_free: deallocating 0x3ffebcd4
dns_send returned error: Routing problem.
pbuf_alloc(length=92)
pbuf_alloc(length=92) == 0x3ffebcd4
pbuf_alloc(length=14)
pbuf_alloc(length=14) == 0x3ffebd44
pbuf_remove_header: old 0x3ffebd54 new 0x3ffebd62 (14)
pbuf_remove_header: old 0x3ffebd62 new 0x3ffebd64 (2)
ip6_input: packet accepted on interface pp
pbuf_remove_header: old 0x3ffebd64 new 0x3ffebd8c (40)
ip6_input:
IPv6 header:
+-------------------------------+
| 8 | 96 | 2243 | (ver, class, flow)
+-------------------------------+
| 64 | 255 | 255 | (plen, nexth, hopl)
+-------------------------------+
| 0 | 0 | 0 | 0 | (src)
| 304 | 4040 | ffff | ffff |
+-------------------------------+
| ffff | ffff | 0 | 0 | (dest)
| 2401 | 4900 | 16a6 | e273 |
+-------------------------------+
ip6_input: p->len 48 p->tot_len 48
pbuf_add_header: old 0x3ffebd8c new 0x3ffebd64 (40)
pbuf_alloc(length=88)
pbuf_alloc(length=88) == 0x3ffec344
pbuf_copy(0x3ffec344, 0x3ffebd44)
pbuf_copy_partial_pbuf(0x3ffec344, 0x3ffebd44, 88, 0)
pbuf_copy_partial_pbuf: copy complete.
pbuf_remove_header: old 0x3ffebd64 new 0x3ffebd8c (40)
pbuf_alloc(length=32)
pbuf_alloc(length=32) == 0x3ffec3d8
pbuf_add_header: old 0x3ffec420 new 0x3ffec3f8 (40)
ip6_output_if: pp3
IPv6 header:
+-------------------------------+
| 6 | 0 | 0 | (ver, class, flow)
+-------------------------------+
| 32 | 58 | 255 | (plen, nexth, hopl)
+-------------------------------+
| fe80 | 0 | 0 | 0 | (src)
| 8136 | 98f9 | 5863 | 5798 |
+-------------------------------+
| ff02 | 0 | 0 | 0 | (dest)
| 0 | 1 | ff00 | 5 |
+-------------------------------+
netif->output_ip6()
pbuf_alloc(length=0)
pbuf_alloc(length=0) == 0x3ffec444
pbuf_free(0x3ffec444)
pbuf_free: deallocating 0x3ffec444
pbuf_free(0x3ffec3d8)
pbuf_free: deallocating 0x3ffec3d8
pbuf_free(0x3ffebd44)
pbuf_free: deallocating 0x3ffebd44
pbuf_free(0x3ffebcd4)
pbuf_free: deallocating 0x3ffebcd4
netconn_recv_data: received 0x3ffec3b0, len=88
lwip_recvfrom_udp_raw[UDP/RAW]: netconn_recv err=0, netbuf=0x3ffec3b0
lwip_recvfrom_udp_raw: buflen=88
lwip_recvfrom_udp_raw(54): addr=fe80:0:0:0:0:0:0:5 port=58 len=64
pbuf_free(0x3ffec344)
pbuf_free: deallocating 0x3ffec344
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
pbuf_alloc(length=77)
pbuf_alloc(length=77) == 0x3ffebcd4
pbuf_alloc(length=14)
pbuf_alloc(length=14) == 0x3ffebd38
pbuf_remove_header: old 0x3ffebd48 new 0x3ffebd56 (14)
pbuf_remove_header: old 0x3ffebd56 new 0x3ffebd58 (2)
ip6_input: packet accepted on interface pp
pbuf_remove_header: old 0x3ffebd58 new 0x3ffebd80 (40)
ip6_input:
IPv6 header:
+-------------------------------+
| 8 | 128 | 2028 | (ver, class, flow)
+-------------------------------+
| 49152 | 0 | 0 | (plen, nexth, hopl)
+-------------------------------+
| fe80 | 0 | 0 | 0 | (src)
| 0 | 0 | 0 | 5 |
+-------------------------------+
| 201 | fefd | e900 | 0 | (dest)
| 70bb | 0 | bcc0 | fe3f |
+-------------------------------+
ip6_input: p->len 32 p->tot_len 32
pbuf_add_header: old 0x3ffebd80 new 0x3ffebd58 (40)
pbuf_alloc(length=72)
pbuf_alloc(length=72) == 0x3ffec338
pbuf_copy(0x3ffec338, 0x3ffebd38)
pbuf_copy_partial_pbuf(0x3ffec338, 0x3ffebd38, 72, 0)
pbuf_copy_partial_pbuf: copy complete.
pbuf_remove_header: old 0x3ffebd58 new 0x3ffebd80 (40)
pbuf_free(0x3ffebd38)
pbuf_free: deallocating 0x3ffebd38
pbuf_free(0x3ffebcd4)
pbuf_free: deallocating 0x3ffebcd4
netconn_recv_data: received 0x3ffec394, len=72
lwip_recvfrom_udp_raw[UDP/RAW]: netconn_recv err=0, netbuf=0x3ffec394
lwip_recvfrom_udp_raw: buflen=72
lwip_recvfrom_udp_raw(54): addr=fe80:0:0:0:0:0:0:5 port=58 len=64
pbuf_free(0x3ffec338)
pbuf_free: deallocating 0x3ffec338
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
pbuf_alloc(length=49)
pbuf_alloc(length=49) == 0x3ffebcd4
pbuf_alloc(length=14)
pbuf_alloc(length=14) == 0x3ffebd1c
pbuf_free(0x3ffebcd4)
pbuf_free: deallocating 0x3ffebcd4
pbuf_alloc(length=44)
pbuf_alloc(length=44) == 0x3ffebcd4
pbuf_remove_header: old 0x3ffebd2c new 0x3ffebd3a (14)
pbuf_remove_header: old 0x3ffebd3a new 0x3ffebd3c (2)
pbuf_remove_header: old 0x3ffebd3c new 0x3ffebd64 (40)
ip6_input:
IPv6 header:
+-------------------------------+
| 8 | 96 | 53867 | (ver, class, flow)
+-------------------------------+
| 64 | 255 | 255 | (plen, nexth, hopl)
+-------------------------------+
| 0 | 0 | 0 | 0 | (src)
| 304 | 4040 | ffff | ffff |
+-------------------------------+
| ffff | ffff | 0 | 0 | (dest)
| 2401 | 4900 | 16a6 | e273 |
+-------------------------------+
ip6_input: p->len 48 p->tot_len 48
pbuf_add_header: old 0x3ffebd64 new 0x3ffebd3c (40)
pbuf_alloc(length=88)
pbuf_alloc(length=88) == 0x3ffec31c
pbuf_copy(0x3ffec31c, 0x3ffebd1c)
pbuf_copy_partial_pbuf(0x3ffec31c, 0x3ffebd1c, 88, 0)
pbuf_copy_partial_pbuf: copy complete.
pbuf_remove_header: old 0x3ffebd3c new 0x3ffebd64 (40)
pbuf_free(0x3ffebd1c)
pbuf_free: deallocating 0x3ffebd1c
pbuf_free(0x3ffebcd4)
pbuf_free: deallocating 0x3ffebcd4
netconn_recv_data: received 0x3ffec388, len=88
lwip_recvfrom_udp_raw[UDP/RAW]: netconn_recv err=0, netbuf=0x3ffec388
lwip_recvfrom_udp_raw: buflen=88
lwip_recvfrom_udp_raw(54): addr=fe80:0:0:0:0:0:0:5 port=58 len=64
pbuf_free(0x3ffec31c)
pbuf_free: deallocating 0x3ffec31c
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
E (62363) main: Server Connection lost.....9 Second
I (62373) PING: PPP Interface key 4:
I (62383) PING: ppp: 0.0.0.0
I (62383) PING: STA Interface key 3:
I (62393) PING: sta: 0.0.0.0
I (62393) PING: ETH Interface key 2:
I (62393) PING: eth: 0.0.0.0
I (62403) PING: Done listing network interfaces
I (62403) PING: DNS lookup success
I (62413) PING: target_addr.type=46
I (62413) PING: target_addr=8.8.8.8
I (62423) PING: initialize_ping success for GSM
etharp_timer
dhcp_coarse_tmr()
dns_tmr: dns_check_entries
dns_send: dns_servers[2] "csms.arconaconsultancy.com": request
pbuf_alloc(length=44)
pbuf_alloc(length=44) == 0x3ffebcd4
sending DNS request ID 7472 for name "csms.arconaconsultancy.com" to server 2
udp_send
ip4_route: No route to 114.114.114.114
udp_send: No route to 114.114.114.114
pbuf_free(0x3ffebcd4)
pbuf_free: deallocating 0x3ffebcd4
dns_send returned error: Routing problem.
lwip_recvfrom_udp_raw[UDP/RAW]: netconn_recv err=-3, netbuf=0x0
lwip_recvfromUDP/RAW: buf == NULL, error is "Timeout."!
W (63373) PING: From 254.128.0.0 PPP Interface icmp_seq=1 timeout
lwip_sendto: invalid addresslwip_getsockopt(54, SOL_SOCKET, SO_ERROR) = 0
E (63383) ping_sock: send error=0
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
E (63423) main: Server Connection lost.....10 Second
I (63423) PING: PPP Interface key 4:
I (63423) PING: ppp: 0.0.0.0
I (63423) PING: STA Interface key 3:
I (63423) PING: sta: 0.0.0.0
I (63433) PING: ETH Interface key 2:
I (63433) PING: eth: 0.0.0.0
I (63433) PING: Done listing network interfaces
I (63443) PING: DNS lookup success
I (63443) PING: target_addr.type=46
I (63453) PING: target_addr=8.8.8.8
I (63453) PING: initialize_ping success for GSM
E (63473) main: ********* [HEAP MEMORY REMAINING]: 90640 *********
W (63473) main: *********************** NETWORK INFO ***********************
W (63473) main: Ethernet Status: Not Detected
W (63483) main: Internet Status: Disconnected
W (63483) main: Server Status: Disconnected
W (63493) main: ************************************************************
etharp_timer
dhcp_coarse_tmr()
dns_tmr: dns_check_entries
dns_send: dns_servers[2] "csms.arconaconsultancy.com": request
pbuf_alloc(length=44)
pbuf_alloc(length=44) == 0x3ffebcd4
sending DNS request ID 7472 for name "csms.arconaconsultancy.com" to server 2
udp_send
ip4_route: No route to 114.114.114.114
udp_send: No route to 114.114.114.114
pbuf_free(0x3ffebcd4)
pbuf_free: deallocating 0x3ffebcd4
dns_send returned error: Routing problem.
lwip_recvfrom_udp_raw[UDP/RAW]: netconn_recv err=-3, netbuf=0x0
lwip_recvfromUDP/RAW: buf == NULL, error is "Timeout."!
W (64393) PING: From 254.128.0.0 PPP Interface icmp_seq=2 timeout
lwip_sendto: invalid addresslwip_getsockopt(54, SOL_SOCKET, SO_ERROR) = 0
E (64403) ping_sock: send error=0
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
E (64493) main: Server Connection lost.....11 Second
I (64493) PING: PPP Interface key 4:
I (64493) PING: ppp: 0.0.0.0
I (64493) PING: STA Interface key 3:
I (64493) PING: sta: 0.0.0.0
I (64503) PING: ETH Interface key 2:
I (64503) PING: eth: 0.0.0.0
I (64503) PING: Done listing network interfaces
I (64513) PING: DNS lookup success
I (64513) PING: target_addr.type=46
I (64523) PING: target_addr=8.8.8.8
I (64523) PING: initialize_ping success for GSM
etharp_timer
dhcp_coarse_tmr()
dns_tmr: dns_check_entries
lwip_recvfrom_udp_raw[UDP/RAW]: netconn_recv err=-3, netbuf=0x0
lwip_recvfromUDP/RAW: buf == NULL, error is "Timeout."!
W (65413) PING: From 254.128.0.0 PPP Interface icmp_seq=3 timeout
lwip_sendto: invalid addresslwip_getsockopt(54, SOL_SOCKET, SO_ERROR) = 0
E (65423) ping_sock: send error=0
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
pbuf_alloc(length=26)
pbuf_alloc(length=26) == 0x3ffebcd4
pbuf_alloc(length=14)
pbuf_alloc(length=14) == 0x3ffebd04
pbuf_free(0x3ffebcd4)
pbuf_free: deallocating 0x3ffebcd4
pbuf_alloc(length=67)
pbuf_alloc(length=67) == 0x3ffec304
pbuf_remove_header: old 0x3ffebd14 new 0x3ffebd22 (14)
pbuf_remove_header: old 0x3ffebd22 new 0x3ffebd24 (2)
pbuf_remove_header: old 0x3ffebd24 new 0x3ffebd4c (40)
ip6_input:
IPv6 header:
+-------------------------------+
| 8 | 96 | 53867 | (ver, class, flow)
+-------------------------------+
| 64 | 255 | 255 | (plen, nexth, hopl)
+-------------------------------+
| 0 | 0 | 0 | 0 | (src)
| 304 | 4040 | ffff | ffff |
+-------------------------------+
| ffff | ffff | 0 | 0 | (dest)
| 2401 | 4900 | 16a6 | e273 |
+-------------------------------+
ip6_input: p->len 48 p->tot_len 48
pbuf_add_header: old 0x3ffebd4c new 0x3ffebd24 (40)
pbuf_alloc(length=88)
pbuf_alloc(length=88) == 0x3ffec35c
pbuf_copy(0x3ffec35c, 0x3ffebd04)
pbuf_copy_partial_pbuf(0x3ffec35c, 0x3ffebd04, 88, 0)
pbuf_copy_partial_pbuf: copy complete.
pbuf_remove_header: old 0x3ffebd24 new 0x3ffebd4c (40)
pbuf_free(0x3ffebd04)
pbuf_free: deallocating 0x3ffebd04
pbuf_free(0x3ffec304)
pbuf_free: deallocating 0x3ffec304
E (65553) main: Server Connection lost.....12 Second
netconn_recv_data: received 0x3ffebcd4, len=88
lwip_recvfrom_udp_raw[UDP/RAW]: netconn_recv err=0, netbuf=0x3ffebcd4
lwip_recvfrom_udp_raw: buflen=88
lwip_recvfrom_udp_raw(54): addr=fe80:0:0:0:0:0:0:5 port=58 len=64
pbuf_free(0x3ffec35c)
pbuf_free: deallocating 0x3ffec35c
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
I (65563) PING: PPP Interface key 4:
I (65593) PING: ppp: 0.0.0.0
I (65593) PING: STA Interface key 3:
I (65603) PING: sta: 0.0.0.0
I (65603) PING: ETH Interface key 2:
I (65613) PING: eth: 0.0.0.0
I (65613) PING: Done listing network interfaces
I (65623) PING: DNS lookup success
I (65623) PING: target_addr.type=46
I (65623) PING: target_addr=8.8.8.8
I (65633) PING: initialize_ping success for GSM
etharp_timer
dhcp_coarse_tmr()
dns_tmr: dns_check_entries
dns_send: dns_servers[2] "csms.arconaconsultancy.com": request
pbuf_alloc(length=44)
pbuf_alloc(length=44) == 0x3ffebcd4
sending DNS request ID 7472 for name "csms.arconaconsultancy.com" to server 2
udp_send
ip4_route: No route to 114.114.114.114
udp_send: No route to 114.114.114.114
pbuf_free(0x3ffebcd4)
pbuf_free: deallocating 0x3ffebcd4
dns_send returned error: Routing problem.
lwip_recvfrom_udp_raw[UDP/RAW]: netconn_recv err=-3, netbuf=0x0
lwip_recvfromUDP/RAW: buf == NULL, error is "Timeout."!
W (66583) PING: From 254.128.0.0 PPP Interface icmp_seq=4 timeout
lwip_sendto: invalid addresslwip_getsockopt(54, SOL_SOCKET, SO_ERROR) = 0
E (66593) ping_sock: send error=0
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
E (66633) main: Server Connection lost.....13 Second
I (66633) PING: PPP Interface key 4:
I (66633) PING: ppp: 0.0.0.0
I (66633) PING: STA Interface key 3:
I (66633) PING: sta: 0.0.0.0
etharp_timer
dhcp_coarse_tmr()
I (66643) PING: ETH Interface key 2:
I (66643) PING: eth: 0.0.0.0
I (66653) PING: Done listing network interfaces
I (66653) PING: DNS lookup success
I (66663) PING: target_addr.type=46
I (66663) PING: target_addr=8.8.8.8
I (66673) PING: initialize_ping success for GSM
dns_tmr: dns_check_entries
lwip_recvfrom_udp_raw[UDP/RAW]: netconn_recv err=-3, netbuf=0x0
lwip_recvfromUDP/RAW: buf == NULL, error is "Timeout."!
W (67603) PING: From 254.128.0.0 PPP Interface icmp_seq=5 timeout
lwip_sendto: invalid addresslwip_getsockopt(54, SOL_SOCKET, SO_ERROR) = 0
E (67613) ping_sock: send error=0
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
etharp_timer
dhcp_coarse_tmr()
E (67673) main: Server Connection lost.....14 Second
I (67673) PING: PPP Interface key 4:
I (67673) PING: ppp: 0.0.0.0
I (67673) PING: STA Interface key 3:
I (67673) PING: sta: 0.0.0.0
I (67683) PING: ETH Interface key 2:
I (67683) PING: eth: 0.0.0.0
I (67683) PING: Done listing network interfaces
I (67693) PING: DNS lookup success
I (67693) PING: target_addr.type=46
I (67703) PING: target_addr=8.8.8.8
I (67703) PING: initialize_ping success for GSM
dns_tmr: dns_check_entries
lwip_recvfrom_udp_raw[UDP/RAW]: netconn_recv err=-3, netbuf=0x0
lwip_recvfromUDP/RAW: buf == NULL, error is "Timeout."!
W (68633) PING: From 254.128.0.0 PPP Interface icmp_seq=6 timeout
etharp_timer
dhcp_coarse_tmr()
lwip_sendto: invalid addresslwip_getsockopt(54, SOL_SOCKET, SO_ERROR) = 0
E (68653) ping_sock: send error=0
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
pbuf_alloc(length=10)
pbuf_alloc(length=10) == 0x3ffebcd4
pbuf_alloc(length=14)
pbuf_alloc(length=14) == 0x3ffebcf4
pbuf_free(0x3ffebcd4)
pbuf_free: deallocating 0x3ffebcd4
pbuf_alloc(length=83)
pbuf_alloc(length=83) == 0x3ffec2f4
pbuf_remove_header: old 0x3ffebd04 new 0x3ffebd12 (14)
pbuf_remove_header: old 0x3ffebd12 new 0x3ffebd14 (2)
ip6_input: packet accepted on interface XX
ip6_input: packet not for us.
ip6_forward: not forwarding link-local address.
pbuf_free(0x3ffebcf4)
pbuf_free: deallocating 0x3ffebcf4
pbuf_free(0x3ffec2f4)
pbuf_free: deallocating 0x3ffec2f4
E (68713) main: Server Connection lost.....15 Second
I (68713) PING: PPP Interface key 4:
I (68723) PING: ppp: 0.0.0.0
I (68723) PING: STA Interface key 3:
I (68723) PING: sta: 0.0.0.0
I (68743) PING: ETH Interface key 2:
I (68743) PING: eth: 0.0.0.0
I (68743) PING: Done listing network interfaces
I (68743) PING: DNS lookup success
I (68753) PING: target_addr.type=46
I (68753) PING: target_addr=8.8.8.8
I (68753) PING: initialize_ping success for GSM
dns_tmr: dns_check_entries
dns_check_entry: "csms.arconaconsultancy.com": timeout
E (68843) esp-tls: couldn't get hostname for :csms.arconaconsultancy.com: getaddrinfo() returns 202, addrinfo=0x0
E (68843) transport_base: Failed to open a new connection: 32769
E (68853) transport_ws: Error connecting to host csms.arconaconsultancy.com:8888
I (68863) ocpp-client: WEBSOCKET_EVENT_DISCONNECTED
etharp_timer
dhcp_coarse_tmr()
lwip_recvfrom_udp_raw[UDP/RAW]: netconn_recv err=-3, netbuf=0x0
lwip_recvfromUDP/RAW: buf == NULL, error is "Timeout."!
W (69653) PING: From 254.128.0.0 PPP Interface icmp_seq=7 timeout
lwip_sendto: invalid addresslwip_getsockopt(54, SOL_SOCKET, SO_ERROR) = 0
E (69663) ping_sock: send error=0
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
E (69763) main: Server Connection lost.....16 Second
I (69763) PING: PPP Interface key 4:
I (69763) PING: ppp: 0.0.0.0
I (69763) PING: STA Interface key 3:
I (69763) PING: sta: 0.0.0.0
I (69773) PING: ETH Interface key 2:
I (69773) PING: eth: 0.0.0.0
I (69773) PING: Done listing network interfaces
I (69783) PING: DNS lookup success
I (69783) PING: target_addr.type=46
I (69793) PING: target_addr=8.8.8.8
I (69793) PING: initialize_ping success for GSM
dns_enqueue: "csms.arconaconsultancy.com": use DNS entry 0
udp_bind(ipaddr = 0.0.0.0, port = 15280)
udp_bind: bound to 0.0.0.0, port 15280)
dns_enqueue: "csms.arconaconsultancy.com": use DNS pcb 0
dns_send: dns_servers[2] "csms.arconaconsultancy.com": request
pbuf_alloc(length=44)
pbuf_alloc(length=44) == 0x3ffebcd4
sending DNS request ID 60576 for name "csms.arconaconsultancy.com" to server 2
udp_send
ip4_route: No route to 114.114.114.114
udp_send: No route to 114.114.114.114
pbuf_free(0x3ffebcd4)
pbuf_free: deallocating 0x3ffebcd4
dns_send returned error: Routing problem.
etharp_timer
dhcp_coarse_tmr()
lwip_recvfrom_udp_raw[UDP/RAW]: netconn_recv err=-3, netbuf=0x0
lwip_recvfromUDP/RAW: buf == NULL, error is "Timeout."!
W (70673) PING: From 254.128.0.0 PPP Interface icmp_seq=8 timeout
lwip_sendto: invalid addresslwip_getsockopt(54, SOL_SOCKET, SO_ERROR) = 0
E (70683) ping_sock: send error=0
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
E (70803) main: Server Connection lost.....17 Second
I (70803) PING: PPP Interface key 4:
I (70803) PING: ppp: 0.0.0.0
I (70803) PING: STA Interface key 3:
I (70803) PING: sta: 0.0.0.0
I (70823) PING: ETH Interface key 2:
I (70823) PING: eth: 0.0.0.0
I (70823) PING: Done listing network interfaces
I (70823) PING: DNS lookup success
I (70833) PING: target_addr.type=46
I (70833) PING: target_addr=8.8.8.8
I (70833) PING: initialize_ping success for GSM
dns_tmr: dns_check_entries
dns_send: dns_servers[2] "csms.arconaconsultancy.com": request
pbuf_alloc(length=44)
pbuf_alloc(length=44) == 0x3ffebcd4
sending DNS request ID 60576 for name "csms.arconaconsultancy.com" to server 2
udp_send
ip4_route: No route to 114.114.114.114
udp_send: No route to 114.114.114.114
pbuf_free(0x3ffebcd4)
pbuf_free: deallocating 0x3ffebcd4
dns_send returned error: Routing problem.
etharp_timer
dhcp_coarse_tmr()
lwip_recvfrom_udp_raw[UDP/RAW]: netconn_recv err=-3, netbuf=0x0
lwip_recvfromUDP/RAW: buf == NULL, error is "Timeout."!
W (71693) PING: From 254.128.0.0 PPP Interface icmp_seq=9 timeout
lwip_sendto: invalid addresslwip_getsockopt(54, SOL_SOCKET, SO_ERROR) = 0
E (71703) ping_sock: send error=0
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
E (71843) main: Server Connection lost.....18 Second
I (71843) PING: PPP Interface key 4:
I (71843) PING: ppp: 0.0.0.0
I (71843) PING: STA Interface key 3:
I (71843) PING: sta: 0.0.0.0
I (71853) PING: ETH Interface key 2:
I (71853) PING: eth: 0.0.0.0
I (71853) PING: Done listing network interfaces
I (71863) PING: DNS lookup success
I (71863) PING: target_addr.type=46
I (71873) PING: target_addr=8.8.8.8
I (71873) PING: initialize_ping success for GSM
dns_tmr: dns_check_entries
dns_send: dns_servers[2] "csms.arconaconsultancy.com": request
pbuf_alloc(length=44)
pbuf_alloc(length=44) == 0x3ffebcd4
sending DNS request ID 60576 for name "csms.arconaconsultancy.com" to server 2
udp_send
ip4_route: No route to 114.114.114.114
udp_send: No route to 114.114.114.114
pbuf_free(0x3ffebcd4)
pbuf_free: deallocating 0x3ffebcd4
dns_send returned error: Routing problem.
etharp_timer
dhcp_coarse_tmr()
lwip_recvfrom_udp_raw[UDP/RAW]: netconn_recv err=-3, netbuf=0x0
lwip_recvfromUDP/RAW: buf == NULL, error is "Timeout."!
W (72713) PING: From 254.128.0.0 PPP Interface icmp_seq=10 timeout
lwip_sendto: invalid addresslwip_getsockopt(54, SOL_SOCKET, SO_ERROR) = 0
E (72723) ping_sock: send error=0
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
E (72883) main: Server Connection lost.....19 Second
I (72883) PING: PPP Interface key 4:
I (72883) PING: ppp: 0.0.0.0
I (72883) PING: STA Interface key 3:
I (72883) PING: sta: 0.0.0.0
I (72893) PING: ETH Interface key 2:
I (72893) PING: eth: 0.0.0.0
I (72893) PING: Done listing network interfaces
I (72903) PING: DNS lookup success
I (72903) PING: target_addr.type=46
I (72913) PING: target_addr=8.8.8.8
I (72913) PING: initialize_ping success for GSM
dns_tmr: dns_check_entries
etharp_timer
dhcp_coarse_tmr()
lwip_recvfrom_udp_raw[UDP/RAW]: netconn_recv err=-3, netbuf=0x0
lwip_recvfromUDP/RAW: buf == NULL, error is "Timeout."!
W (73733) PING: From 254.128.0.0 PPP Interface icmp_seq=11 timeout
lwip_sendto: invalid addresslwip_getsockopt(54, SOL_SOCKET, SO_ERROR) = 0
E (73743) ping_sock: send error=0
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
E (73923) main: Server Connection lost.....20 Second
I (73923) PING: PPP Interface key 4:
I (73923) PING: ppp: 0.0.0.0
I (73923) PING: STA Interface key 3:
I (73923) PING: sta: 0.0.0.0
I (73933) PING: ETH Interface key 2:
I (73933) PING: eth: 0.0.0.0
I (73933) PING: Done listing network interfaces
I (73943) PING: DNS lookup success
I (73943) PING: target_addr.type=46
I (73953) PING: target_addr=8.8.8.8
I (73953) PING: initialize_ping success for GSM
dns_tmr: dns_check_entries
dns_send: dns_servers[2] "csms.arconaconsultancy.com": request
pbuf_alloc(length=44)
pbuf_alloc(length=44) == 0x3ffebcd4
sending DNS request ID 60576 for name "csms.arconaconsultancy.com" to server 2
udp_send
ip4_route: No route to 114.114.114.114
udp_send: No route to 114.114.114.114
pbuf_free(0x3ffebcd4)
pbuf_free: deallocating 0x3ffebcd4
dns_send returned error: Routing problem.
etharp_timer
dhcp_coarse_tmr()
lwip_recvfrom_udp_raw[UDP/RAW]: netconn_recv err=-3, netbuf=0x0
lwip_recvfromUDP/RAW: buf == NULL, error is "Timeout."!
W (74763) PING: From 254.128.0.0 PPP Interface icmp_seq=12 timeout
lwip_sendto: invalid addresslwip_getsockopt(54, SOL_SOCKET, SO_ERROR) = 0
E (74773) ping_sock: send error=0
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
I (74923) uart_events: **************** CONNECTOR ID: 0 *****************
W (74923) app_database: ************************************************************
W (74923) app_database: SOC : 0 %, VRMS : 0 V, IRMS : 0 A, Power : 0.00 W
W (74933) app_database: Current L1 : 0.00 A, L2 : 0.00 A, L3 : 0.00 A
W (74933) app_database: Voltage L1 : 0.00 V, L2 : 0.00 V, L3 : 0.00 V
W (74943) app_database: AC Energy : 0.00 Wh
W (74953) app_database: RSSI GSM : 25 , WiFi : -91
W (74953) app_database: RFID Status : 0
W (74963) app_database: Fault : 0
W (74963) app_database: OCPP Fault : 314420
W (74973) app_database: EV Mac addr : 0
W (74973) app_database: Gun Temperature 0.00 C
W (74983) app_database: EV demand current : 0
W (74983) app_database: EV demand voltage 0
W (74993) app_database: ************************************************************
I (74993) uart_events: **************** CONNECTOR ID: 1 *****************
W (75003) app_database: ************************************************************
W (75013) app_database: SOC : 0 %, VRMS : 0 V, IRMS : 0 A, Power : 0.00 W
W (75023) app_database: Current L1 : 0.00 A, L2 : 0.00 A, L3 : 0.00 A
W (75023) app_database: Voltage L1 : 0.00 V, L2 : 0.00 V, L3 : 0.00 V
W (75033) app_database: AC Energy : 0.00 Wh
W (75043) app_database: RSSI GSM : 25 , WiFi : -91
W (75043) app_database: RFID Status : 0
W (75053) app_database: Fault : 5
W (75053) app_database: OCPP Fault : 8002
W (75053) app_database: EV Mac addr : 0
W (75063) app_database: Gun Temperature 595.85 C
W (75063) app_database: EV demand current : 0
W (75073) app_database: EV demand voltage 0
E (74963) main: Server Connection lost.....21 Second
W (75083) app_database: ************************************************************
I (75093) uart_events: **************** CONNECTOR ID: 2 *****************
W (75103) app_database: ************************************************************
W (75103) app_database: SOC : 0 %, VRMS : 0 V, IRMS : 0 A, Power : 0.00 W
W (75113) app_database: Current L1 : 0.00 A, L2 : 0.00 A, L3 : 0.00 A
W (75123) app_database: Voltage L1 : 0.00 V, L2 : 0.00 V, L3 : 0.00 V
W (75133) app_database: AC Energy : 0.00 Wh
W (75133) app_database: RSSI GSM : 25 , WiFi : -91
W (75143) app_database: RFID Status : 0
W (75143) app_database: Fault : 5
W (75153) app_database: OCPP Fault : 8002
W (75153) app_database: EV Mac addr : 0
W (75153) app_database: Gun Temperature 595.85 C
W (75163) app_database: EV demand current : 0
W (75173) app_database: EV demand voltage 0
W (75173) app_database: ************************************************************
I (75093) PING: PPP Interface key 4:
I (75183) PING: ppp: 0.0.0.0
I (75203) PING: STA Interface key 3:
I (75203) PING: sta: 0.0.0.0
I (75203) PING: ETH Interface key 2:
I (75203) PING: eth: 0.0.0.0
I (75213) PING: Done listing network interfaces
I (75213) PING: DNS lookup success
I (75213) PING: target_addr.type=46
I (75223) PING: target_addr=8.8.8.8
I (75223) PING: initialize_ping success for GSM
E (75233) main: ********* [HEAP MEMORY REMAINING]: 90640 *********
W (75243) main: *********************** NETWORK INFO ***********************
W (75243) main: Ethernet Status: Not Detected
W (75253) main: Internet Status: Disconnected
W (75253) main: Server Status: Disconnected
W (75263) main: ************************************************************
dns_tmr: dns_check_entries
etharp_timer
dhcp_coarse_tmr()
lwip_recvfrom_udp_raw[UDP/RAW]: netconn_recv err=-3, netbuf=0x0
lwip_recvfromUDP/RAW: buf == NULL, error is "Timeout."!
W (75783) PING: From 254.128.0.0 PPP Interface icmp_seq=13 timeout
lwip_sendto: invalid addresslwip_getsockopt(54, SOL_SOCKET, SO_ERROR) = 0
E (75793) ping_sock: send error=0
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
E (76273) main: Server Connection lost.....22 Second
I (76273) PING: PPP Interface key 4:
I (76273) PING: ppp: 0.0.0.0
I (76273) PING: STA Interface key 3:
I (76273) PING: sta: 0.0.0.0
I (76283) PING: ETH Interface key 2:
I (76283) PING: eth: 0.0.0.0
I (76283) PING: Done listing network interfaces
I (76293) PING: DNS lookup success
I (76293) PING: target_addr.type=46
I (76313) PING: target_addr=8.8.8.8
I (76313) PING: initialize_ping success for GSM
dns_tmr: dns_check_entries
etharp_timer
dhcp_coarse_tmr()
pbuf_alloc(length=49)
pbuf_alloc(length=49) == 0x3ffebcd4
pbuf_alloc(length=14)
pbuf_alloc(length=14) == 0x3ffebd1c
pbuf_free(0x3ffebcd4)
pbuf_free: deallocating 0x3ffebcd4
pbuf_alloc(length=44)
pbuf_alloc(length=44) == 0x3ffebcd4
pbuf_remove_header: old 0x3ffebd2c new 0x3ffebd3a (14)
pbuf_remove_header: old 0x3ffebd3a new 0x3ffebd3c (2)
ip6_input: packet accepted on interface XX
ip6_input: packet not for us.
ip6_forward: not forwarding link-local address.
pbuf_free(0x3ffebd1c)
pbuf_free: deallocating 0x3ffebd1c
pbuf_free(0x3ffebcd4)
pbuf_free: deallocating 0x3ffebcd4
lwip_recvfrom_udp_raw[UDP/RAW]: netconn_recv err=-3, netbuf=0x0
lwip_recvfromUDP/RAW: buf == NULL, error is "Timeout."!
W (76803) PING: From 254.128.0.0 PPP Interface icmp_seq=14 timeout
lwip_sendto: invalid addresslwip_getsockopt(54, SOL_SOCKET, SO_ERROR) = 0
E (76813) ping_sock: send error=0
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
E (77313) main: Server Connection lost.....23 Second
I (77313) PING: PPP Interface key 4:
I (77313) PING: ppp: 0.0.0.0
I (77313) PING: STA Interface key 3:
I (77313) PING: sta: 0.0.0.0
I (77323) PING: ETH Interface key 2:
I (77323) PING: eth: 0.0.0.0
I (77323) PING: Done listing network interfaces
I (77333) PING: DNS lookup success
I (77333) PING: target_addr.type=46
I (77343) PING: target_addr=8.8.8.8
I (77343) PING: initialize_ping success for GSM
dns_tmr: dns_check_entries
dns_check_entry: "csms.arconaconsultancy.com": timeout
E (77463) esp-tls: couldn't get hostname for :csms.arconaconsultancy.com: getaddrinfo() returns 202, addrinfo=0x0
E (77463) transport_base: Failed to open a new connection: 32769
E (77483) transport_ws: Error connecting to host csms.arconaconsultancy.com:8888
I (77483) ocpp-client: WEBSOCKET_EVENT_DISCONNECTED
etharp_timer
dhcp_coarse_tmr()
lwip_recvfrom_udp_raw[UDP/RAW]: netconn_recv err=-3, netbuf=0x0
lwip_recvfromUDP/RAW: buf == NULL, error is "Timeout."!
W (77823) PING: From 254.128.0.0 PPP Interface icmp_seq=15 timeout
lwip_sendto: invalid addresslwip_getsockopt(54, SOL_SOCKET, SO_ERROR) = 0
E (77833) ping_sock: send error=0
lwip_recvfrom(54, 0x3ffbad20, 64, 0x0, ..)
lwip_recvfrom_udp_raw[UDP/RAW]: top sock->lastdata=0x0
The text was updated successfully, but these errors were encountered: