Hi,
your A7N8X has two fine onboard-NICs. You probably don't need an extra realtek-NIC.
Your NVidia-NIC works with the nvnet-driver. Your 3com-NIC works without patch from kernel 2.4.21-rc2 on upwards.
use modconf to load your 8139-module on boot-time or edit /etc/modules manually.
don't forget to assign IP-adresses:
Quote:
# /etc/network/interfaces
# The loopback interface
auto lo eth0 eth1
iface lo inet loopback
iface eth0 inet static
address 192.168.10.13
netmask 255.255.255.0
iface eth1 inet static
address 192.168.10.14
netmask 255.255.255.0
# /etc/network/ifstate
lo=lo
eth0=eth0
eth1=eth1
|