From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Chin Subject: Re: setting duplex mode on ethernet cards Date: Thu, 13 Jun 2002 14:43:11 -0400 Sender: linux-admin-owner@vger.kernel.org Message-ID: <20020613184311.48F6C40D@tenaya.physics.lsa.umich.edu> References: <1023966728.10378.22.camel@Zebra> Mime-Version: 1.0 Return-path: In-Reply-To: <1023966728.10378.22.camel@Zebra> List-Id: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Paul Furness Cc: Linux-Admin In message <1023966728.10378.22.camel@Zebra>, Paul Furness writes: > > Can anyone tell me how to find out the speed (10/100) and the > full/half-duplex-ness of my ethernet card? I don't know how to do this. But I do know how to set the duplex switch for a 3c59x ethernet card. This is from http://www.scyld.com/network/vortex.html In your /etc/modules.conf file, you should have: alias eth0 3c59x options eth0 full_duplex=1 and then reboot. (You could also insmod the module, but you'd first have to go to single-user, rmmod the module, and insmod it with the full_duplex option. Might as well edit modules.conf and reboot to make sure it will take the next time you reboot.) I had to do this because I connect to an old switch which doesn't auto-negotiate the duplex setting. Cheers, --Dave