-
Notifications
You must be signed in to change notification settings - Fork 4
Troubleshooting
Um IPv6 für den ioBroker Matter Adapter verwenden zu können, muss im LXC Container in Proxmox die Option "SLAAC" aktiviert werden.
Kurze Erklärung zum Thema SLAAC: https://www.elektronik-kompendium.de/sites/net/1902141.htm
Erfolgreich getestet mit Ubuntu 24.04, Debian 12 + Fritzbox 7530 mit DHCP + Defaulteinstellungen für "IPv6 Einstellungen"
Bestimmt kann man das noch optimieren 😉 Aktive Netwerkschnittstelle: wlp0s20f3
/etc/sysctl.conf
- net.ipv6.conf.all.forwarding=0
- net.ipv6.conf.wlp0s20f3.forwarding=0
- net.ipv6.conf.wlp0s20f3.accept_ra=1
- net.ipv6.conf.wlp0s20f3.accept_ra_rt_info_max_plen=64
/etc/network/interfaces
-
iface wlp0s20f3 inet6 auto
-- accept_ra 2
Kontrolle der Einstellungen: (sudo voranstellen)
sysctl -n net.ipv6.conf.wlp0s20f3.forwarding
0
sysctl -n net.ipv6.conf.wlp0s20f3.accept_ra
2
sysctl -n net.ipv6.conf.wlp0s20f3.accept_ra_rt_info_max_plen
64
Ich sehe schon, das die Einträge nicht konsistent sind, habe aber immer mal wieder eine Einstellung geändert->reboot->Test, so läuft es jetzt aber.