Posted by: Pdfprep
Post Date: November 3, 2020
The server has two network cards. The driver for the first card is the module 8139too and the driver for the second card is the module ne2k-pci.
How is it possible to ensure that the card using the 8139too driver is detected before the card using the ne2k-pci driver?
A . modprobe 8139too dev=eth0; modprobe ne2k-pci dev=eth1
B . install mod 8139too; install mod ne2k-pci
C . modprobe eth0=8139too, eth1=ne2k-pci
D . ifconfig modadd eth0=8139too, eth1=ne2k-pci
E . modprobe 8139too; modprobe ne2k-pci
Answer: A
Leave a Reply