Hallo Liste,
Nun, das Problem konnte ich dank Patrick Crilly lösen:
Wenn nach einer Minimalinstallation von FreeBSD 5.1-RELEASE trotz
korrekter Konfiguration der Netzwerkinterfaces fxp0-2 keine
IP-Verbindung zustande kommt, kann das an einem Konflikt in der
Zuweisung der MAC Adressen liegen.
Bei mir hat folgendes Abhilfe geschaffen:
nokia# diff -bB /sys/dev/fxp/if_fxp.c /sys/dev/fxp/if_fxp.c.orig
729,735c729,734
< sc->arpcom.ac_enaddr[0] = 0x00;
< sc->arpcom.ac_enaddr[1] = 0xa0;
< sc->arpcom.ac_enaddr[2] = 0x8e;
< sc->arpcom.ac_enaddr[3] = 0x06;
< sc->arpcom.ac_enaddr[4] = 0x72;
< sc->arpcom.ac_enaddr[5] = 0x28;
<
--- > sc->arpcom.ac_enaddr[0] = myea[0] & 0xff; > sc->arpcom.ac_enaddr[1] = myea[0] >> 8; > sc->arpcom.ac_enaddr[2] = myea[1] & 0xff; > sc->arpcom.ac_enaddr[3] = myea[1] >> 8; > sc->arpcom.ac_enaddr[4] = myea[2] & 0xff; > sc->arpcom.ac_enaddr[5] = myea[2] >> 8; nokia# Danach Kernel neu compilen und gut is. Mir ist klar, daß das ne "quick and dirty"-Lösung ist, und wer da Verbesserungen hat, sei herzlich eingeladen, diese hier anzubringen, aber zumindest habe ich so schonmal ssh-Zugriff auf die Büchse. Dank an alle, die sich über mein Problem Gedanken gemacht haben. Gruß, Malte von dem Hagen -- "Timbuktu ist weit, der Weg dahin ist beschwerlich, aber letztlich landen wir alle da." (ae.lab) To Unsubscribe: send mail to majordomo.FreeBSD.org with "unsubscribe de-bsd-questions" in the body of the messageReceived on Wed 29 Oct 2003 - 13:54:33 CET