This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi, I seem to be receiving excessive
SL_NETAPP_EVENT_IPV6_ACQUIRED
signals from the NWP. Can someone fill me in on why this may be happening, or if there's something I need to do to keep the NWP from generating these?
I'm admittedly a bit fuzzy on how IPV6 currently coexists with IPV4 -- and I typically ignore IPV6 and just live in my simple IPV4 world :)
Thanks,
Chris
Hi Chris,
The following should disable IPv6
/* Disable IPV6 */ ifBitmap = 0; status = sl_NetCfgSet(SL_NETCFG_IF, SL_NETCFG_IF_STATE,\ sizeof(ifBitmap), (uint8_t *)&ifBitmap);
Best Regards,
Ben M
Hi Chris,
It depends on whether the system you are creating needs to support access to IPv6 networks. If you want to dive more into why you are seeing these events, it would be helpful for you to share which IPv6 local link acquisition method you are using, capture NWP logs from the device and get a sniffer capture of the network where you are seeing it occur.
processors.wiki.ti.com/.../CC3120_&_CC3220_Capture_NWP_Logs
Best,
Ben M
Hi Chris,
It really only matters if you will need your device's IP address to be publicly available. This is not necessary for most applications now, which sit behind a router that performs NAT and on a network with limited number of devices. Plus, it's not always supported by the AP. There is no real recommended method for all applications. If you don't have any specific requirements, the stateless auto configuration should be fine. Refer to section 5.3.2 of the Network Processor Programmer's guide for details on the different options.
Best,
Ben M