List of Topics:
Research Breakthrough Possible @S-Logix pro@slogix.in

Office Address

Social List

How to Run SDN Switch?

how-to-run-sdn-switch

Step by Step Run SDN Switch

  • Description:
    A network SDN switch is a segment of hardware that avails oneself of packet switching to receive, process, and forward data between devices within a computer network. SDN switches that bargain on the code as opposed to network hardware. The SDN switch is placed in the middle of a network and acts as a tie-up between network devices and their applications. SDN orchestrates and simplifies a large variety of sophisticated technologies that make it easy for service providers to manage and amend their networks. It also allows networks to be programmed by isolating the control panel, which directs the network to transmit data from its copy. The following sample describes how to install the SDN switch correctly:
Step-1
  • Run the Linear Mininet Topology,
    sudo mn --controller=remote,ip=127.0.0.1
    --mac -i 10.1.1.0/24 --switch=ovsk,protocols=OpenFlow13 --topo=linear,4

    how-to-run-sdn-switch-1

Step-2
  • Start RYU L3 Application
    ryu-manager ryu.app.simple_switch_13
    how-to-run-sdn-switch-2
Step-3
  • In the mininet cli, ping h1 to h2.
    Mininet-wifi>h1 ping h2
    how-to-run-sdn-switch-3
Step-4
  • Check the OpenFlow flows
    sudo ovs-ofctl -O OpenFlow13 dump-flows s1
    how-to-run-sdn-switch-4