On Thu, Aug 09, 2001 at 09:15:14AM -0400, Emdy, Terrance wrote:
> Can someone point me in the right direction for hardcoding the nic in a
> Compaq 1850 rack mounted server to full/100. I thought it would be an
> option in the /etc/modules.conf but that file doesn't exist in my install of
> RH v7.1 and I a little perplexed and can't seem to find any docs online that
> talk about this distro and these settings in particular
The kernel module for the Netelligent/100 cards is "tlan" (tlan.o).
According to the tlan.c source (/usr/src/linux/drivers/net/tlan.c) there
are two MODULE_PARM declarations you can use:
speed=100
duplex=full
To use this, merely add this to your /etc/modules.conf and run "depmod -a":
# echo "options tlan speed=100 duplex=full" >> /etc/modules.conf
# depmod -a
Reboot, or bounce the interface:
# ifdown eth0
# rmmod tlan
# ifup eth0
All should be fine.
- Ian C. Blenke <ian@blenke.com>
This archive was generated by hypermail 2.1.3 : Fri Aug 01 2014 - 19:00:22 EDT