Asynchronous Transfer Mode (ATM) is a cell-switching network technology that transmits data in fixed-size 53-byte cells (48 bytes payload + 5 bytes header).
Developed in the late 1980s, ATM was designed to handle voice, video, and data traffic with guaranteed Quality of Service (QoS) over both LAN and WAN connections.
Key Features: ATM uses virtual circuits established through signaling protocols. It supports both Permanent Virtual Circuits (PVCs) and Switched Virtual Circuits (SVCs).
The fixed cell size eliminates variable delay, making it ideal for real-time applications.
ATM provides multiple service classes including Constant Bit Rate (CBR), Variable Bit Rate (VBR), Available Bit Rate (ABR), and Unspecified Bit Rate (UBR).
Architecture: ATM networks consist of ATM switches connected by high-speed links.
Virtual Path Identifiers (VPIs) and Virtual Channel Identifiers (VCIs) route cells through the network. The small, fixed cell size reduces buffering requirements and enables predictable transmission delays.
Benefits:
- Guaranteed bandwidth and QoS
- Support for multimedia applications
- Scalable from LAN to WAN
- Statistical multiplexing efficiency
- Built-in traffic management
Cisco ATM Configuration Example:
Router(config)# interface atm 0/0
Router(config-if)# no shutdown
Router(config)# interface atm 0/0.1 point-to-point
Router(config-subif)# ip address 192.168.1.1 255.255.255.252
Router(config-subif)# pvc 1/100
Router(config-if-atm-vc)# encapsulation aal5snap
Router(config-if-atm-vc)# protocol ip 192.168.1.2 broadcast
Router(config)# interface atm 0/0.2 point-to-point
Router(config-subif)# ip address 192.168.2.1 255.255.255.252
Router(config-subif)# pvc 1/200
Router(config-if-atm-vc)# encapsulation aal5snap
Router(config-if-atm-vc)# protocol ip 192.168.2.2 broadcast
This configuration creates point-to-point subinterfaces with PVCs using VPI 1 and VCIs 100 and 200. AAL5SNAP encapsulation handles IP traffic over ATM.
Legacy Status: While ATM provided excellent QoS capabilities, it has been largely superseded by Ethernet-based technologies and MPLS networks that offer similar benefits with lower complexity and cost.