Vendor ID | Device ID | Name | Spare # | Assembly # | Option # |
1014 | 003e | Compaq IBM 16/4 Token Ring PCI Special NIC - or - Compaq PCI Wake on LAN II 16/4 Token-Ring Adapter |
135449-001 | 133750-001 | 133749-B21 |
rmmod olympic modprobe olympic ringspeed=4 ifconfig tr0 10.1.1.1 ping 10.1.1.1Note: The driver will probably not load if you are not connected to a Multi Access Unit (which is basically a "hub").
/etc/modules.conf -or- /etc/conf.modules alias tr0 olympic options olympic ringspeed=4 rmmod olympic insmod olympic ifup tr0 ping 10.1.1.1Note: If you have problems pinging, try moving /etc/resolv.conf out of the way and then retry your ping. See procedures/networktrouble.html for more information on troubleshooting network problems.
cat /usr/src/linux/drivers/net/olympic.c | grep MODULE_PARM MODULE_PARM(ringspeed, "1-" __MODULE_STRING(OLYMPIC_MAX_ADAPTERS) "i"); MODULE_PARM(pkt_buf_sz, "1-" __MODULE_STRING(OLYMPIC_MAX_ADAPTERS) "i") ; MODULE_PARM(message_level, "1-" __MODULE_STRING(OLYMPIC_MAX_ADAPTERS) "i") ; MODULE_PARM(network_monitor, "1-" __MODULE_STRING(OLYMPIC_MAX_ADAPTERS) "i"); less /usr/src/linux/drivers/net/olympic.c: ...<SNIP>... /* Module paramters */ /* Ring Speed 0,4,16,100 * 0 = Autosense * 4,16 = Selected speed only, no autosense * This allows the card to be the first on the ring * and become the active monitor. * 100 = Nothing at present, 100mbps is autodetected * if FDX is turned on. May be implemented in the future to * fail if 100mpbs is not detected. * * WARNING: Some hubs will allow you to insert * at the wrong speed */ ...<SNIP>...