패킷이 라우터로 들어오게 되면, Data Plane 영역에서는 여러 과정을 통해 해당 패킷이 어디에서 어디로 이동해야 하는지를 결정한다.
Input Network Interface
Input interface를 통해 IP 패킷이 들어오면 인터페이스는 다음과 같은 역할을 수행한다.
a) Interprets the Ethernet header
b) Detect frame boundaries
c) Identifies the starting point of the IP packet
d) L2 processing logic
만들어진 Packet context를 Forwarding Engine에 전송
포워딩 엔진은 포워딩 테이블을 통해 next-hop을 결정(outgoing port 등)
이 과정에서 L3 process logic은 Buffer Memory에 잠시 IP 패킷을 저장해 놓는다.
포워딩 엔진이 next-hop을 결정하면 버퍼 메모리에 저장된 패킷에 해당 packet context를 결합해 Backplane Interface로 전송한다.
백플레인은 이 packet context를 읽고 알맞은 egress card로 보내준다. (이 때 패킷의 우선순위가 영향을 미친다)
egress line card의 백플레인 인터페이스는 패킷을 수신한 후 line card memory에 저장한다.
Packet context는 새로운 메모리 주소를 할당받은 후 Queue Manager로 보내진다.
전송될 패킷이 스케쥴링 되면 Traffic Manager가 트래픽을 파악하여 send, delay, drop 여부를 결정해준다.
packet context가 egress network interface로 도착하고, 메모리에서 해당하는 packet을 retrieve한다.
전송!