OpenDayLight SDN Controller Installation and Running in Ubuntu 22.04

Опубликовано: 02 Октябрь 2024
на канале: RKiLAB
2,560
22

Learn how to install and configure OpenDaylight on your Ubuntu system. OpenDaylight is a powerful SDN controller that empowers network administrators to manage and automate their networks effectively. Follow along as we explore the installation steps, discuss key features, and get hands-on with ODL.

#mininet
#sdn
#opendaylight
#controller

Commands ------------

*********Prepare Operting System*********
#sudo apt update -y
#sudo apt install unzip -y

*********Installing Java JRE*************
#sudo apt-get install openjdk-8-jre
#sudo update-alternatives --config java
#sudo echo 'export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/jre' #source ~/.bashrc
#echo $JAVA_HOME

********Downloading the OpenDaylight*****
#sudo wget https://nexus.opendaylight.org/conten...
#unzip karaf
#cd karaf/bin
#sudo ./karaf

*******Starting Future*******
#feature:install odl-l2switch-switch-ui
or
#feature:install odl-restconf odl-l2switch-switch odl-mdsal-apidocs odl-dlux-core
#http://your ip address here:8181/index.html
#default credentials admin/admin.

*******Creating Topology******

#sudo mn --controller=remote,ip=Controller IP--topo=linear,3 --switch ovsk,protocols=OpenFlow13