标签:控制器 127.0 0.1 OpenDayligh 开源 html 流表 apidoc
一、实验目的
- 能够独立完成OpenDaylight控制器的安装配置;
- 能够使用Postman工具调用OpenDaylight API接口下发流表。
二、实验环境
Ubuntu 20.04 Desktop amd64
三、实验要求
(一)基本要求
- 利用Mininet平台搭建下图所示网络拓扑,并连接OpenDaylight控制器;
打开OpenDaylight控制器
./distribution-karaf-0.6.4-Carbon/bin/karaf
- 构造上诉网络拓扑,并进行pingall测试
-
sudo mn --topo=single,3 --controller=remote,ip=127.0.0.1,port=6633 --switch ovsk,protocols=OpenFlow13
二)进阶要求
查找资料,整理和记录ODL控制器主要的REST API文档,包括但不限于ODL提供的文档链接,获取拓扑的交换机、获取流表状态数量、获取特定交换机端口的状态、新增修改和删除流表等。
-
获取拓扑的交换机:
http://127.0.0.1:8181/apidoc/explorer/index.html#!/network-topology(2013-07-12)/GET_network_topology_get_1
-
获取流表状态数量:
http://127.0.0.1:8181/apidoc/explorer/index.html#!/opendaylight-inventory(2013-08-19)/GET_node_get_5
-
获取特定交换机端口的状态:
http://127.0.0.1:8181/apidoc/explorer/index.html#!/opendaylight-port-statistics(2013-12-14)/get_node_connector_statistics_post_0
-
流表增删改查:
http://127.0.0.1:8181/apidoc/explorer/index.html#!/opendaylight-inventory(2013-08-19)/GET_table_get_194
标签:控制器,
127.0,
0.1,
OpenDayligh,
开源,
html,
流表,
apidoc
From: https://www.cnblogs.com/dongganchaoren/p/16777907.html