ich möchte die NTP-Multicast-Adresse ff05::101 auf allen Netzwerkkarten hinzufügen. Die /etc/network/interfaces Datei sieht so aus
Code: Alles auswählen
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
auto eth0 eth0:1
iface eth0 inet6 static
address fd00::2
netmask 64
iface eth0:1 inet6 static
address ff05::101
netmask 64
~