From owner-freebsd-questions Thu Dec 23 8:52:58 1999 Delivered-To: freebsd-questions@freebsd.org Received: from merlin.onsea.com (pB0s12a03.client.global.net.uk [195.147.172.177]) by hub.freebsd.org (Postfix) with ESMTP id B938014F57 for ; Thu, 23 Dec 1999 08:52:54 -0800 (PST) (envelope-from dozprompt@onsea.com) Received: from localhost (dozprompt@localhost) by merlin.onsea.com (8.9.3/8.9.2) with ESMTP id QAA00455; Thu, 23 Dec 1999 16:53:30 GMT (envelope-from dozprompt@onsea.com) X-Authentication-Warning: merlin.onsea.com: dozprompt owned process doing -bs Date: Thu, 23 Dec 1999 16:53:30 +0000 (GMT) From: Cliff Rowley To: "Ing. Fernando Inukai" Cc: Frebsd questions Subject: Re: ethernet adapter In-Reply-To: <002e01bf4d5b$6312c380$679a68ce@dkafis> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I have a FreeBSD box for internal email running with a NE2000 ethernet card (ed1) but I want to change it for a 3com 10/100M (xl0) when I did it I modified the file /etc/rc.conf for the card to have the same IP than the old one. Everything in the server looks fine, ifconfig -a tells me that the IP is ok but it the other computers do not "see it" Check that the card is using the correct media. If you do an ifconfig xl0 you should see something like the following for your xl0 interface: xl0: flags=8843 mtu 1500 inet 10.0.0.1 netmask 0xffffff00 broadcast 10.0.0.255 ether 00:50:da:44:11:ad media: 100baseTX supported media: autoselect 100baseTX 100baseTX 100baseTX 10baseT/UTP 10baseT/UTP 10baseT/UTP The media section is what you should be looking at, and you should select the correct media and mediaopt based upon what the card is connected to. For example, my 3c905C using xl0 is connected to a dual speed 10/100 hub on half duplex. The following will manually put my card into this mode: ifconfig xl0 media 100baseTX mediaopt half-duplex You may find that the card has not detected the correct mode, and you may have to set this manually. For more information on the xl driver, type man xl. Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message