Ich habe ein Rechner mit Debian aufgesetzt, um im Setup die Netzwerkkarte mit DHCP konfiguriert.
Danach habe ich eine statische IP konfiguriert und ein virtuelles Interface noch dazu.
Hier die /etc/network/interfaces
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).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 129.156.50.4
netmask 255.255.254.0
gateway 129.156.50.15
dns-servers 129.156.48.3
dns-search ...
auto eth0:0
iface eth0:0 inet static
address 129.156.50.9
netmask 255.255.254.0
gateway 129.156.50.15
dns-servers 129.156.48.3
dns-search ...
Warum?
Wie kann ich dieses Verhalten abschalten?