Have you checked the HCL section here at the top or to the right. It says mostly using the netsemi driver but one says they are using the tulip driver. May depend on card version.
I would load the module as root ' modprobe netsemi '
Also after issuing the command check the command ' dmesg ' and see if it there is any errors.
Then goto /etc/sysconfig/network-scripts and create a file called ifcfg-eth0
Put the following in and change ip and other info based on your network settings.
Code:
DEVICE=eth0
BOOTPROTO=none
# BROADCAST='tion: --broadcast'
# HWADDR=00:90:F5:0D:2F:85
IPADDR=192.168.1.10
NETMASK=255.255.255.0
# NETWORK='option: --network'
ONBOOT=yes
TYPE=Ethernet
GATEWAY=192.168.1.1
Or for dhcp connection
Code:
DEVICE=eth0
BOOTPROTO=DHCP
ONBOOT=yes
TYPE=Ethernet
Now as root to bring up the interface run the comand ' /sbin/ifup eth0 ' See if it has errors.
Now if static you need to define nameserver IP in /etc/resolv.conf
nameserver xxx.xxx.xxx.xxx
Lets see if this gets you going.
Brian1