An enterprise network utilizes a centralized Software-Defined Networking (SDN) controller architecture. During a minor transport network outage, the Southbound API control channel between the SDN controller and a campus access layer switch is temporarily severed. Network monitoring indicates that existing active user sessions continue to forward frame traffic across the switch at wire speed without disruption, but new routing protocol neighbor adjacencies fail to establish and newly connected hosts cannot be populated into the forwarding tables. Which statement accurately explains the underlying separation of planes operating during this control channel outage?
- The data plane uses specialized hardware (ASICs and TCAM) pre-populated with Forwarding Information Base (FIB) entries to forward existing flows independently, while control plane intelligence required to process routing protocols and calculate new forwarding paths resides on the controller.Cevap
- BThe switch's data plane automatically negotiates routing protocol adjacencies locally via automated configuration management scripts when controller connectivity fails, but drops new host traffic due to lack of management plane authorization.
- CExisting traffic is forwarded by the control plane CPU using longest prefix matching, whereas new flows are dropped because the data plane ASIC can only process frames when actively synchronized with the Southbound API.
- DThe data plane handles both control protocol neighbor establishment and packet rewrite functions locally by default, but drops new flows because the management plane automatically disables local switching when offline.
Cevap
The data plane uses specialized hardware (ASICs and TCAM) pre-populated with Forwarding Information Base (FIB) entries to forward existing flows independently, while control plane intelligence required to process routing protocols and calculate new forwarding paths resides on the controller.
The correct answer accurately reflects SDN architectural principles. In centralized network architectures, the control plane (which calculates paths and processes control messages like routing protocol neighbor adjacencies) resides on the centralized controller, whereas the data plane (responsible for actual packet forwarding, header rewrites, and filtering) resides on the local network switch hardware (ASICs/TCAM). Because existing forwarding rules were already programmed into the switch's hardware Forwarding Information Base (FIB) prior to the outage, the switch can independently forward active matching flows without consulting the controller. However, creating new routing adjacencies or learning new paths requires control plane interaction, which fails while the Southbound API channel is down.
Adım Adım Çözüm
Anahtar Kavram
Control Plane and Data Plane Separation in Centralized/SDN Architectures