SDN Controller - OpenDaylight 2

MySprtlty·2024년 5월 25일
0

SDN

목록 보기
8/14
post-thumbnail

🏷️OpenDaylight

📌실습

  • 앞서 jdk를 설치했으니, 이번에는 Opendaylight을 설치해본다.

install Opendaylight

  • 설치 및 압축 해제
wget https://nexus.opendaylight.org/content/repositories/opendaylight.release/org/opendaylight/integration/karaf/0.9.3/karaf-0.9.3.tar.gz
tar -xvzf karaf-0.9.3.tar.gz
  • Opendaylight 실행
cd karaf-0.9.3/bin
./karaf
  • SDN 프로토콜로 Openflow를 사용해보자
  • 🖇️cf. opendaylight 기초 명령어
    • To install a feature, use the following command, where feature1 is the feature name listed in the table below:
    feature:install <feature1> <feature2> ... <featureN-name>
    • To find the complete list of Karaf features, run the following command:
    feature:list
    • To list the installed Karaf features, run the following command:
    feature:list -i
  • feature:list | grep odl-openflowplugin 명령으로 openflow관련 플러그인을 출력해보자.
  • 관련 fearute들을 설치한다.
feature:install odl-openflowjava-protocol \
  odl-openflowplugin-nsf-model \
  odl-openflowplugin-southbound \
  odl-openflowplugin-app-config-pusher \
  odl-openflowplugin-app-forwardingrules-manager \
  odl-openflowplugin-libraries \
  odl-openflowplugin-app-table-miss-enforcer \
  odl-openflowplugin-app-topology \
  odl-openflowplugin-nxm-extensions \
  odl-openflowplugin-onf-extensions \
  odl-openflowplugin-services-rest

📌References

profile
2Co 4:7

0개의 댓글