Ich habe eine virtuelle Schnittstelle eth0:1 in die /etc/network/interfaces eingetragen, aber sie wird beim hochfahren nicht gestartet. Das geht nur manuell durch ifup eth0:1
Was mache ich da falsch? Stimmt meine /etc/network/interfaces nicht oder gehört da noch wo anders ein Eintrag hin?
grüße
Code: Alles auswählen
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
iface eth0 inet static
address 192.168.1.66
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 192.168.1.1
dns-search piccard
allow-hotplug eth0:1
iface eth0:1 inet static
address 192.168.1.67
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
dns-nameservers 192.168.1.1
auto eth0:1