Computer Science – Network hardware | e-Consult
Network hardware (1 questions)
A Network Interface Card (NIC) is a hardware component that allows a computer to connect to a network. It provides the physical interface for transmitting and receiving data. It essentially acts as a translator between the computer's internal data and the network's signals.
A MAC address (Media Access Control address) is a unique hardware identifier assigned to a NIC by the manufacturer. It's a 48-bit hexadecimal address that identifies the device on the network. Think of it like a physical address for the network interface.
They work together as follows:
- When a computer wants to send data, it uses the MAC address of the destination device to encapsulate the data into a frame.
- The NIC then transmits this frame onto the network.
- Network switches and routers use the destination MAC address to forward the frame to the correct device.
- The receiving device's NIC checks the destination MAC address to determine if the frame is intended for it.
In essence, the NIC provides the physical connection, and the MAC address provides the unique identifier for the device on the network, allowing data to be directed to the correct recipient.