# Network Access Layer
## What is the Network Access Layer
The Network Access layer is the lowest layer of the TCP/IP model. It is also called the Link layer or the Network Interface layer. This layer combines the functions of both the Physical layer and the Data Link layer from the OSI model. The Network Access layer is responsible for all the hardware-level details of actually transmitting data over a specific physical network medium, whether that medium is an Ethernet cable, a WiFi connection, a fiber optic cable, or any other type of network link.
## Functions of the Network Access Layer
The Network Access layer handles all the physical hardware aspects of network communication, including the electrical signals on copper cables, the light pulses in fiber optic cables, and the radio waves in wireless networks. It defines the physical connectors and cables, the voltage levels for representing binary ones and zeros, and the timing of signal transmission.
The Network Access layer also handles the framing of data, which means organizing bits into structured frames with defined headers and trailers. The frames include the source and destination MAC addresses of the directly connected devices. The layer handles error detection within frames using CRC or checksum calculations. It manages access to the shared physical medium through protocols like CSMA/CD for Ethernet.
## Technologies at the Network Access Layer
Ethernet is the dominant technology for wired networks and operates at the Network Access layer. The IEEE 802.3 family of standards defines various Ethernet specifications including 100BASE-TX for 100 megabit Ethernet over twisted pair cable, 1000BASE-T for gigabit Ethernet over twisted pair, and 10GBASE-SR for 10 gigabit Ethernet over fiber optic. WiFi defined by the IEEE 802.11 standards operates at the Network Access layer for wireless local area networks. Token Ring, although largely obsolete, was another Network Access layer technology. PPP, the Point-to-Point Protocol, operates at the Network Access layer for direct connections between two devices.
## Network Access Layer and IP
The Network Access layer works closely with the Internet layer above it. When the Internet layer wants to send an IP packet, it passes the packet to the Network Access layer. The Network Access layer wraps the packet in a frame appropriate for the physical network being used and handles the physical transmission. On the receiving side, the Network Access layer receives the physical signal, reassembles it into a frame, extracts the IP packet, and passes it up to the Internet layer.
The key difference between the Network Access layer and the Internet layer is that the Network Access layer is responsible for delivery only within a single network segment between directly connected devices, while the Internet layer is responsible for end-to-end delivery across multiple networks.Back to Subject