Difficulty: Easy
Correct Answer: configuration software
Explanation:
Introduction / Context:Older network interface cards (NICs) sometimes lacked both Plug and Play (PnP) capability and physical jumper blocks. Technicians had to assign hardware resources such as IRQ, I/O base address, and sometimes DMA using vendor-provided tools. Knowing how these legacy cards are configured is vital when maintaining or restoring vintage systems.
Given Data / Assumptions:
Concept / Approach:
Non-PnP, jumperless expansion cards commonly store settings in on-card nonvolatile memory (EEPROM). Vendors supply a DOS-based or utility-based configuration software that writes the chosen IRQ/I-O/DMA values to the card. BIOS setup (CMOS) does not directly set a particular card’s IRQ; at best it can reserve resources. The operating system can cooperate with settings, but it cannot program the hardware on such cards without the vendor utility.
Step-by-Step Solution:
Identify that the card is non-PnP and jumperless, so a software utility is necessary.Boot to a suitable environment (often DOS) and run the vendor’s configuration program.Select an available IRQ that does not conflict with other devices, then save to the card’s EEPROM.Verify in the OS that the selected IRQ is free and the driver matches the programmed settings.Verification / Alternative check:
Use system resource viewers or diagnostics to confirm the NIC responds at the configured I/O port and IRQ. Successful packet transmission or link activity confirms correct configuration.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting to document chosen IRQ/I-O; resource conflicts with sound cards or COM ports; mixing driver versions that assume different settings.
Final Answer:
configuration software
Discussion & Comments