Open Thread OpenWRT/Debian/SLZB-MR3 Configuration
This is my configuration to run Thread/Matter configuration to work together with Home Assistant. Assumptions: enp2s0 – ethernet card id 192.168.0.128:7638 – ip and port of socket listening on SLZB-MR3 This works on Debian 13 (trixie) and OpenWRT 24.10.2 SLZB-MR3 OpenWRT
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# Add IPv6 to existing LAN interface uci set network.globals.ula_prefix='fd12:3456:789a::/48' uci set network.lan.ipv6='1' uci set network.lan.ip6assign='64' uci set network.lan.ip6hint='0' # Enable Multicast snooping uci set network.lan.multicast_snooping='1' uci commit network /etc/init.d/network restart # Enable DHCPv6 server (IPv4 DHCP will continue working) uci set dhcp.lan.dhcpv6='server' uci set dhcp.lan.ra='server' uci set dhcp.lan.ra_management='1' uci set dhcp.lan.ra_default='1' uci set dhcp.lan.ra_lifetime='1800' uci set dhcp.lan.ra_addresses='1' uci commit dhcp /etc/init.d/odhcpd restart |
|
1 2 |
opkg update opkg install umdns |
Debian I installed avahi-daemon… Continue reading
