Network problems :
I had many problems getting my 3com "cyclone" 3c905b card to properly work on RedHat 5.2. It seems that even though I had properly configured everything, I could never get the 100Mbit speed while connected to my Cisco 2924XL: switch. Here is how I got around the problems :
./mii-diag -F100baseTx-FD ./mii-diag ## use "./mii-diag" with no options to check ## all information from the : http://www.scyld.com/diag/index.html website
./3c5x9setup -fv ## use "./3c5x9setup -fv" to check ## all information from the : http://www.scyld.com/diag/index.html website
/etc/rc.d/init.d/nicfix (to set the interface at 100Mbit/Full Duplex)
echo -n "Setting eth0 to 100Mb - Full Duplex: " cd /usr/local/Install/network /usr/local/Install/network/fix_100_mbit.sh echo
/etc/rc.d/init.d/nicload (one liner to load the kernel module since isapnp wasnt doing it properly)
/sbin/insmod 3c509
##### ##### Load 3c509 modules - Paul A. Luzzi - 10-11-2000 ##### if [ "$i" = "eth1" ] then echo "Loading module for 3c509 card:" /sbin/insmod 3c509 echo fi ##### ##### End of custom section added by Paul A. Luzzi #####