You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Describe the solution you'd like
A clear and concise description of what you want to happen.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
What makes you thing that SLAAC processing is not included?
#if ( ipconfigUSE_RA!=0 )
/** * @brief Work on the RA/SLAAC processing. * @param[in] xDoReset: When true, the state-machine will be reset and initialised. * @param[in] pxEndPoint: The end-point for which the RA/SLAAC process should be done.. */voidvRAProcess( BaseType_txDoReset,
NetworkEndPoint_t*pxEndPoint );
#endif/* ( ipconfigUSE_RA != 0 ) */
In FreeRTOS+TCP, DHCP is implemented for both IPv4 and IPv6.
For IPv6, beside DHCP, there is also "RA", or router advertising. The complete name should be "RA/SLAAC".
To summarise it (roughly):
An IPv6 enabled router advertises itself and the properties of the IPv6 network.
Note that IPv6 network often has a ton of available IP addresses.
When using "RA/SLAAC", a starting device chooses a random IP-address, and it will try it out using Duplicate Address Detection. When the IP-address is in use, it will receive a reply.
After probing a certain number of times, using fixed timeouts, it will decide to keep using the IP-address.
After a cold- or warm reboot, the device will choose a new random IP/address.
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Describe the solution you'd like
A clear and concise description of what you want to happen.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: