I was out for the weekend and came home to find all four FP300 devices have stopped connecting to the matter router. I recycled the Apple TV and, all other matter devices reconnected but the 4 aqara fp300s remained disconnected. This is not a new installation. The devices had been working for two months before this failure.
JohnD
April 20, 2026, 3:21pm
2
If you don’t have an internet connection with a static IP address, it could be down to the IPv6 GUA prefix.
Which thread border router do you use for your Matter devices?
Can you see the IPv6 addresses in the ecosystem you use (Google, Apple, Samsung, etc.) or on your network devices/network router?
What internet router do you use?
Link-Local vs. GUA vs. ULA
Thread strictly relies on IPv6 , because only the 6LoWPAN standard compresses protocol headers efficiently enough to save bandwidth, and enables robust mesh routing without vulnerable DHCP servers or NAT barriers through serverless autoconfiguration (SLAAC). In other words: Thread only works via IPv6 addresses and not via IPv4.
However, it is crucial to understand that IPv6 uses different address types with different ranges (scopes), which has concrete consequences for data exchange across network boundaries.
Here are the three IPv6 address types that play a role:
Link-Local (fe80::): Every device generates this address itself immediately after powering on. It is strictly limited to the physical network segment and is not forwarded by routers. Purpose: Initialization & emergency communication within the same room.
GUA (2xxx::): The Global Unicast Address is usually assigned dynamically by the provider. It is globally unique, publicly routable, and enables communication across the entire Internet. Purpose: Communication with the Internet.
ULA (fdxx::): The Unique Local Address is the stable, internal counterpart. The router specifies the network prefix, and the devices generate their own addresses (SLAAC). It is routable throughout the entire home network but not accessible from the Internet. Purpose: Stable communication within the home network, independent of the Internet provider.
What does this have to do with Matter-over-Thread and Matter-over-Wi-Fi? A router that sees a packet with a Link-Local address (fe80::) must discard it if it wants to leave the network. A Thread network is physically a separate subnet, distinct from the WLAN. Therefore, only ULA or GUA addresses work for communication between LAN/WAN and the sensor (Thread), as these are routable. Matter-over-Wi-Fi also works with Link-Local, since both devices are located in the same WLAN segment.
This is where the Primary Thread Border Router comes into play: It receives the ULA/GUA network prefix from the main router and distributes it into the Thread network. Only in this way does every Thread device receive an address that is reachable from the LAN.
The Problem: Many providers do not assign fixed IPs; the GUA prefix changes regularly (forced reconnection, restart). This change often leads to device discovery (mDNS/Discovery) breaking off or routes becoming temporarily invalid. The result: devices do not respond (“No Response”).
The Recommendation for Maximum Stability: To make the Smart Home independent of the Internet provider:
Enable IPv6 on the router, but disable DHCP Prefix Delegation (PD) (to block external instability).
Disable Stateful (DHCPv6) and enable Stateless (SLAAC) (so devices manage themselves).
Activate Unique Local Address (ULA) and set it manually:
Router Address: fd00::1
Prefix: fd00:: (Length /64)
4 Likes