1. Introduction to SDN and controllerSDN (Software Defined Network) is a new network innovation architecture proposed by the Clean-Slate research group of Stanford University in the United States. It is a way to implement network virtualization. Its core technology is to separate the control plane from the data plane of network devices to achieve flexible control of network traffic and make the network smarter. SDN attempts to get rid of the network's dependence on hardware devices and realize network management, configuration, and upgrade functions through direct programming. Fig1. Typical SDN architecture diagram The SDN controller is the representative of the SDN control plane and the brain of SDN. As the core component of the SDN architecture, the SDN controller manages the policies and traffic of the entire network in a centralized manner. The SDN controller can significantly improve the utilization of network resources, shorten the service launch cycle, and greatly improve operation and maintenance efficiency. At the same time, the SDN controller can provide a unified security policy and provide top-down security protection for the network. 2. Development History of SDN ControllersSDN controllers have gone through several development stages from the early NOX controllers to today's enterprise-level controllers. Their functions have gradually become more complete and powerful. According to their development routes, they can be divided into: open source routes represented by ODL and ONOS, and commercial controller routes represented by Orion. ➢ First-generation controller: NOX is the first OpenFlow controller, which uses the OpenFlow protocol for control. It was developed by Nicira Networks and released as open source in 2008. As the earliest controller, NOX provides a good example for subsequent controllers. However, since it is written in C++, the development cost of SDN applications is high, and it gradually loses its advantage in the controller competition. Its subsequent version was changed to Python development, named POX, but POX has certain defects in architecture and performance, and is gradually replaced by emerging controllers. ➢ Universal SDN control platform: As equipment manufacturers join the competition in the SDN controller market, higher requirements are put forward for SDN controllers. OpenDaylight, an open source SDN controller jointly developed by multiple equipment manufacturers rather than dominated by operators, came into being. ODL supports multiple southbound protocols, not limited to OpenFlow, Netconf, OVSDB, etc. The birth of ODL means that SDN has entered a new era. Controllers have evolved from supporting only a single protocol to supporting multiple southbound protocols. During this period, the deployment form of controllers has also changed from single application to distributed platform deployment. After several years of development, competition among SDN controllers has become increasingly fierce. With the strong support of equipment manufacturers, the ODL community is in a leading position in open source controllers. Targeting the operator market, ONOS, which also uses the OSGI architecture, has gained a considerable market share with better performance. At the same time, a variety of closed-source frameworks are also competing with each other. In 2013, the ONIX controller launched by Google increased the broadband utilization rate to nearly 100%. ➢ Cloud-native SDN controller: As more and more businesses move to the cloud, especially with the development of large-scale data centers, the requirements for controllers are getting higher and higher. SDN controllers are increasingly integrated with cloud management platforms. SDN controllers are developing in a smarter and more convenient direction by combining AI technology, intent-based networks, and other content. Open source platforms such as ODL and ONOS are gradually focusing on intelligent operation and maintenance. Google's new generation controller Orion fully applies microservice architecture and coordination concepts, adopts large-scale distributed deployment solutions, and realizes the control and management of large-scale production networks. 3. Introduction to mainstream controllersThe controllers currently active in the open source community include: OpenDayLight, ONOS, Ryu, POX, etc. The closed source controllers are represented by Orion, HP's VAN, Cisco's DNA Center, etc. Each controller has its own characteristics and advantages. Here we will introduce the relevant technologies and functions of several mainstream controllers: 3.1 ODL ControllerThe OpenDayLight (ODL) controller is an open source SDN controller managed and maintained by the Linux Foundation. It was launched in 2013. It adopts a community-driven development model, and the main contributors are major equipment manufacturers, such as Huawei and ZTE. It aims to provide a universal, programmable SDN controller. It can support a variety of hardware and software platforms to achieve flexible and scalable network management and control. 3.1.1 Architecture Solution ODL is developed using the OSGi framework, and the southbound protocol is abstractly modeled and managed through the MD-SAL model architecture, achieving decoupling from devices and protocols, and supporting a variety of southbound transmission protocols. The core plug-in in the controller provides functions such as data storage, configuration management, network traffic management, service quality management, network monitoring and debugging, and provides docking with third-party applications through northbound protocols such as RESTful API, providing device data support for third-party services. The figure below shows a typical ODL architecture design: picture Image source: OpenDayLight official website 3.1.2 Core Concepts
3.1.3 Typical modules
The following figure shows the PCE-based path calculation architecture: Image source: OpenDayLight official website
3.2 ONOS Controller ONOS is the first open source SDN network operating system, mainly for service providers and enterprise backbone networks. The ONOS community brings together well-known service providers (such as AT&T, NTT Communications), high-standard network suppliers (such as Ciena, Ericsson, Fujitsu, Huawei, Intel, NEC), network operators (such as Internet2, CNIT, CREATE-NET), and other partners (such as SRI, Infoblox), and has received strong support from ONF. 3.2.1 Architecture Solution ODL is a typical distributed architecture system, which can be divided from top to bottom into: APP layer, northbound interface API, distributed core layer, and southbound interface layer. Among them, the distributed core platform ensures that the controller can operate with high reliability, easy scalability and high stability. The northbound interface abstraction provides important support for the graphical interface and more friendly management and configuration services. The pluggable southbound interface abstraction layer enables the ONOS controller to support OpenFlow devices and traditional devices. The abstraction of the southbound interface shields the differences between the underlying devices and protocols, and can support the management and control of multiple devices at the same time. Its architecture diagram is as follows: Image source: ONOS official website 3.2.2 Core Concepts SDN operating system: An operating system needs to have the following basic characteristics: (1) User resource management; (2) User isolation; (3) Abstract management of services and resources; (4) User security mechanism; (5) Efficient use of services. ONOS has the basic functions of an operating system, so it is not just an SDN controller, but an SDN operating system.
3.2.3 Typical components
[Quoted from the ONOS components and services section in feiskyer] Image source gitbook-SDN Guide
[Quote from the ONOS cluster principle section in feiskyer] Image source gitbook-SDN Guide 3.3 Orion Distributed Controller The Orion controller is a second-generation controller independently developed by Google. Google published a paper on Orion at the 2021 NSDI conference, which detailed the design principles, overall architecture, and application of Orion in the network. When the paper was published, Orion had been running stably in the existing network for four years. Compared with Google's first-generation controller Onix, Orion has the following features: (1) Completely independent development. (2) Microservice architecture and distributed programs have higher stability. (3) Based on agile development, faster iteration speed. 3.3.1 Architecture Solution Orion is a typical microservice application. Its working mode is based on the reconciliation mode. From the fundamental design principle, the principles of Orion and Kubernetes are almost the same. The overall framework is as follows: Image source: Orion: Google's Software-Defined Networking Control Plane From an architectural perspective, the top layer is various specific network applications, such as the Routing Engine responsible for intra-domain route calculation. The core layer in the middle implements the common functions of the controller, including the NIB database, configuration module, topology module, and flow management module. Each module in the middle layer is a microservice application. The lower layer is the OpenFlow protocol stack. All routers controlled by Orion only have the OpenFlow protocol stack and no traditional protocol stack. Traditional protocols are all completed on the controller, which can be said to have completely realized SDN. 3.3.2 Core Concepts
Image source: Orion: Google's Software-Defined Networking Control Plane
3.3.3 Typical Design
As written in the paper: "Intentbased networks specify management or design changes by describing the new intended end-state of the network (the "what") rather than prescribing the sequence of modifications to bring the network to that end-state (the "how") [citing the description of the principles of intent networks in 3.1 of the paper "Orion: Google's Software-Defined Networking Control Plane"]". 4. SummaryThrough the above brief introduction, we have learned about the development history and direction of controllers, which provides a good reference and example for our self-developed controllers. At present, China Mobile's Smart Home Operation Center has accumulated certain technical experience in the field of self-developed controllers, especially self-developed controllers for SDWAN. The open source controller based on ODL has been trial-commercialized in some of the company's businesses and has achieved good results. China Mobile's Smart Home Operation Center is evolving its self-developed controllers into microservice-based distributed controllers. In the future, controllers based on microservice architecture will provide support for the development of the mobile network cloud era with faster iteration speed, more stable performance, and higher service efficiency. |
<<: 5G helps digital transformation of smart railways
>>: Explore the unlimited potential of 5G technology
[51CTO.com original article] In the past, users o...
Last time we shared the news of V.PS Hong Kong ne...
Welcome to Cisco Global Gold! For the first time ...
[[265215]] Since March, "5G" has gone f...
[[421406]] Let me get straight to the point and f...
Optical fiber is an important part of communicati...
[[398925]] This article is reprinted from the WeC...
Environment: SpringBoot2.7.16 1. Introduction Cro...
According to Zhongguancun Online, relevant person...
CloudCone is a foreign VPS hosting company founde...
On April 20, according to foreign media reports, ...
Hello everyone, I am Mayfly. In this issue, let’...
I remember that in 2018, there was a lot of news ...
Whenever a "404 error" appears when bro...
[[342703]] The coronavirus pandemic has triggered...