Understand the Difference between the Control Plane and Data Plane

1. Control Plane :
In Routing control plane refers to all functions and processes that determine which path to use to send the packet or frame. The control plane is responsible for populating the routing table, drawing network topology, forwarding table and hence enabling the data plane functions. This means here the router makes its decision. In a single line, it can be said that it is responsible for How packets should be forwarded.

2. Data Plane :
In Routing data plane refers to all the functions and processes that forward packets/frames from one interface to another based on control plane logic. The routing table, forwarding table and the routing logic constitute the data plane function. Data plane packet goes through the router and incoming and outgoing frames are done based on control plane logic. This means in a single line it can be said that it is responsible for moving packets from source to destination. It is also called a Forwarding plane.



Difference between Control Plane and Data Plane :

NO.CONTROL PLANEDATA PLANE
01.Control plane refers to the all functions and processes that determine which path to use to send the packet or frame.Data plane refers to all the functions and processes that forward packets/frames from one interface to another based on control plane logic.
02.It is responsible for building and maintaining the IP routing table.It is responsible for forwarding actual IP packet.
03.Control plane responsible about how packets should be forwarded.Data plane responsible for moving packets from source to destination.
04.Control plane performs its task independently.Data plane performs its task depending on data plane.
05.In general we can say in control plane it is learned what and how it can be done.In general we can say in data plane the actual task is performed based on what is learned.
06.Control plane packets are processed by router to update the routing table.The forwarding plane/data plane forwards the packets based on the built logic of control plane.
07.It includes Spanning Tree Protocol (STP),
Address Resolution Protocol (ARP),
Routing Information Protocol (RIP), Dynamic Host Configuration Protocol (DHCP) etc.
 It includes decrementing Time To Live (TTL), recomputing
IP header checksum etc.
08.Control plane packets are locally originated by the router itself.Data plane packets go through the router.
09.Control plane acts as a decision maker in data forwarding.Data plane acts as a decision implementer in data forwarding.
10.Routing is performed in the control plane.Switching is performed in the data plane.

Ref: https://www.geeksforgeeks.org/difference-between-control-plane-and-data-plane/