SDN

From HPCWIKI
Revision as of 09:00, 31 May 2024 by Admin (talk | contribs) (Created page with "== Software-defined networking (SDN) == SDN architecture) defines how a networking and computing system can be built using a combination of open software-based technologies and commodity networking hardware to supports dynamic programmable network configuration. SDN uses the controller for network device management, network service orchestration, and service traffic scheduling, which features low costs, centralized management, and flexible scheduling. The advantages...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Software-defined networking (SDN)

SDN architecture) defines how a networking and computing system can be built using a combination of open software-based technologies and commodity networking hardware to supports dynamic programmable network configuration.

SDN uses the controller for network device management, network service orchestration, and service traffic scheduling, which features low costs, centralized management, and flexible scheduling.


The advantages of SDN are

  • Network programmability - administrator personnel can send instructions to network devices by using a programming language using scripts to automatically create and assign tasks and collect network statistics.
  • Network abstraction - the controller interacts with network devices and applications through southbound and northbound APIs, respectively, and abstracts underlying hardware devices as virtualized resource pools. Applications and services are no longer tightly coupled with hardware.
  • Cost reduction - The original hardware devices are retained on the network and they still have all functions of management, control, and forwarding. This does not require large-scale migration and improving O&M efficiency and reducing costs.
  • Flexible service scheduling - without changing the overall logic of hardware devices, SDN adds open northbound and southbound APIs to translate computer languages into configuration command lines, making GUI-based management and centralized management possible and solving the problem of inflexible service scheduling on traditional networks.
  • Centralized management - with controllers of SDN, network administrators can manage underlying hardware devices, orchestrate network services, allocate network resources, and adjust traffic priorities. They can directly detect the status of the entire network and adjust bandwidth and optimization policies in a timely manner, facilitating network-wide management.
  • Openness - the SDN architecture allows vendors to develop their own ecosystems through open APIs. These open APIs support multiple applications, such as cloud orchestration, OSS/BSS, and SaaS. In addition, the SDN architecture can control hardware of multiple vendors through OpenFlow.

Basic Architecture

Comparison between the traditional network architecture and SDN architecture.png

The traditional distributed networks, reachability information is broadcast between devices at Layer 2, and topology information is transmitted through standard routing protocols at Layer 3. This requires that all devices, regardless of their vendors, use the same network protocol for successful communication. To well adapt to varying requirements and scenarios, traditional networks are becoming more and more complex. even the traditional network devices are managed one by one using commands, leading to low network management and service scheduling efficiency and high operation costs.

SDN Applications

the applications can build an abstracted view of the network. These applications could include networking management, analytics, or business applications used to run large data centers.

SDN Controller

The SDN controller is a logical entity that receives instructions or requirements from the SDN application layer and relays them to the networking components. The controller also extracts information about the network from the hardware devices and communicates back to the SDN applications with an abstract view of the network, including statistics and events.

SDN Networking Devices

The SDN networking devices control the forwarding and data processing capabilities for the network. This includes the forwarding and processing of the data path.

The SDN architecture APIs are often referred to as northbound and southbound interfaces.

  • Northbound interface is defined as the connection between the controller and applications
  • Southbound interface is the connection between the controller and the physical networking hardware.

Types of SDN

  • Open SDN: Network administrators use a protocol like OpenFlow to control the behavior of virtual and physical switches at the data plane level.
  • SDN by APIs: Instead of using an open protocol, application programming interfaces control how data moves through the network on each device.
  • SDN Overlay Model: Another type of software-defined networking runs a virtual network on top of an existing hardware infrastructure, creating dynamic tunnels to different on-premise and remote data centers. The virtual network allocates bandwidth over a variety of channels and assigns devices to each channel, leaving the physical network untouched.
  • Hybrid SDN: This model combines software-defined networking with traditional networking protocols in one environment to support different functions on a network. Standard networking protocols continue to direct some traffic, while SDN takes on responsibility for other traffic, allowing network administrators to introduce SDN in stages to a legacy environment.

SDN Protocol

OpenFlow

OpenFlow protocol is an open source way to have the different planes of a network communicate

References