This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

How to send Router solicitation in nrf IOT sdk

FormerMember
FormerMember

How to send router solicitation from node to raspberry pi in nordic iot sdk examples...?

  • Hello sridhar!

    Router Solicitation message is sent in some examples that using Nordic's IPv6 Stack for example ipv6_coap_server or ipv6_icmp.

    The second example shows exactly how to use ICMP module to send Router Solicitation to Raspberry Pi.

    Here is declaration of this function:

    uint32_t icmp6_rs_send 	(const iot_interface_t * p_interface,
                             const ipv6_addr_t     * p_src_addr,
                             const ipv6_addr_t     * p_dest_addr 
    ) 	
    

    For more details please look at the documentation.

Related