Bin mit dem Problem weitergekommen: Wenn ein Interface mehrere IP-Adressen hat, zeigt ifconfig nur die erste an. Die anderen sieht man so:
Code: Alles auswählen
me:~# ip addr show
1: lo: <LOOPBACK,UP> mtu 16436 qdisc noqueue
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast qlen 1000
link/ether xx:xx:xx:xx:xx:xx brd ff:ff:ff:ff:ff:ff
inet 169.254.123.62/16 scope link eth0
inet 192.168.2.100/24 brd 192.168.2.255 scope global eth0
inet6 fe80::208:74ff:fe98:2d3/64 scope link
valid_lft forever preferred_lft forever
3: sit0: <NOARP> mtu 1480 qdisc noop
link/sit 0.0.0.0 brd 0.0.0.0
Zum Umgehen des Problems kann man wohl (je nach Wunsch) die Zeile DISABLE oder FALLBACK auskommentieren:
Code: Alles auswählen
me:~# less /etc/default/zeroconf
# Default for zeroconf
# disable zeroconf
# If you want to disable zeroconf completely, uncomment the following line
# this may be useful if you are debugging zeroconf or starting it manually
#DISABLE=yes
# black-listed interfaces
# Interfaces which you never wish to have zeroconf run on should
# be listed here. e.g. "eth2 wlan1" in a space seperated string
IFBLACKLIST=""
# fallback only
# If you would only like a link-local address if you were unable to
# obtain an address via DHCP then uncomment the following line
FALLBACK=yes
Hoffe, das hilft mal jemandem weiter..
smo