Skip to content
Feuer-sturm edited this page Dec 29, 2024 · 33 revisions

IPv6 Konfiguration des ioBroker Host Systems

Proxmox LXC Container mit Ubuntu

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

grafik

Erfolgreich getestet mit Ubuntu 24.04 + Fritzbox 7530 mit Defaulteinstellungen für "IPv6 Einstellungen"

IPV6 Kommunikation für Nutzung von Thread Geräten:

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.