LOGBOOK

HELP

Quiz Entry - updated: 2026.07.14

What are RS and RA messages in the SLAAC (Stateless Address Autoconfiguration) process, and what multicast addresses do they use?

RS (Router Solicitation) is sent by a host to request an RA (Router Advertisement); RA is the router's response containing prefix and configuration info.

Host sends RS to ff02::2, router replies RA to ff02::1 with prefix/gateway; host builds GUA.

* SLAAC RS/RA exchange and its multicast addresses. *

Message flow:

Message Sender Destination Multicast Address
RS (Router Solicitation) Host All routers ff02::2
RA (Router Advertisement) Router All nodes ff02::1

How the exchange works:

  1. Host boots up and needs IPv6 configuration
  2. Host sends an RS to ff02::2 (all-routers multicast) — "Are there any routers out there?"
  3. Router responds with an RA to ff02::1 (all-nodes multicast) — "Here's the prefix and config info"
  4. Host uses the RA information to create its GUA (Global Unicast Address)

Key detail: Routers also send unsolicited RAs every 200 seconds, even without an RS. But sending an RS lets the host get the information immediately instead of waiting.

Tip: ff02::1 = all nodes, ff02::2 = all routers. The host asks the routers (::2), the router tells all nodes (::1).

Go deeper:

From Quiz: NETW2 / SLAAC and DHCPv6 | Updated: Jul 14, 2026