Smc To Sfc Converter Apr 2026

—SDN, SMC, SFC, Controller Federation, Protocol Conversion I. Introduction Single-Manager Control (SMC) is the traditional SDN model where one controller (e.g., NOX, POX, Ryu) owns the entire network view and installs flow rules directly. While simple, SMC fails in large-scale or multi-administrative domains. SDN Federation Controllers (SFC) – such as ONOS’s EAST-WEST interface, HyperFlow, or Kandoo – partition control across domains yet maintain a logical global view.

| Operation | SMC direct (ms) | SMC → SFC via converter (ms) | Added overhead | |-----------|----------------|------------------------------|----------------| | FlowMod (single) | 0.8 | 1.2 | 0.4 ms | | Topology discovery (full) | 45 | 47 | 2 ms | | Failover (switch loss) | 120 | 140 (due to federation) | 20 ms | smc to sfc converter

The paper is written in a standard academic format (Introduction, Background, Design, Evaluation, Related Work, Conclusion). Abstract —In Software-Defined Networking (SDN), Single-Manager Control (SMC) architectures delegate full network control to one controller, while SDN Federation Controllers (SFC) distribute authority across multiple domains. Migrating from SMC to SFC is non-trivial due to incompatible policy models, topology abstractions, and event handling. This paper proposes the SMC-to-SFC Converter – a transparent translation layer that intercepts SMC-style commands (e.g., static flow rules, global views) and converts them into SFC-compliant operations (e.g., intent-based policies, distributed consistency protocols). We implement a prototype using OpenFlow (SMC) and ONOS’s Northbound Interfaces (SFC). Evaluation shows sub-millisecond conversion overhead and correct federation semantics, enabling legacy SMC applications to run unmodified on federated SDN fabrics. SDN Federation Controllers (SFC) – such as ONOS’s

: The unmodified SMC simple_switch application successfully forwarded cross-domain traffic, with intents correctly spanning domains. No application modification was required. Migrating from SMC to SFC is non-trivial due