一、实验目的
1、能够独立完成OpenDaylight控制器的安装配置;
2、能够使用Postman工具调用OpenDaylight API接口下发流表。
二、实验环境
Ubuntu 20.04 Desktop amd64
三、实验要求
(一)基本要求
1、利用Mininet平台搭建下图所示网络拓扑,并连接OpenDaylight控制器;
-
使用命令创建topo
-
启动ODL
-
打开控制器UI
2、通过Postman工具调用OpenDaylight提供的API下发流表,实现拓扑内主机h1和h3网络中断10s。
-
运行 Postman 文件
-
清除旧的流规则
-
使用Postman模拟http请求下发硬超时流规则
-
实现拓扑内主机h1和h3网络中断10s
(二)进阶要求
查找资料,整理和记录ODL控制器主要的REST API文档,包括但不限于ODL提供的文档链接,获取拓扑的交换机、获取流表状态数量、获取特定交换机端口的状态、新增修改和删除流表等。
ODL的官方文档Rest API获取网址:http://127.0.0.1:8181/apidoc/explorer/index.html(账号密码均为admin)
- 获取拓扑的交换机
http://127.0.0.1:8181/apidoc/explorer/index.html#!/opendaylight-inventory(2013-08-19)
http://127.0.0.1:8181/apidoc/explorer/index.html#!/opendaylight-inventory(2013-08-19)/GET_nodes_get_358
-
获取拓扑结构
http://127.0.0.1:8181/apidoc/explorer/index.html#!/network-topology(2013-07-12)
http://127.0.0.1:8181/apidoc/explorer/index.html#!/opendaylight-inventory(2013-08-19)/GET_nodes_get_1
-
流表信息(增删改查)
http://127.0.0.1:8181/apidoc/explorer/index.html#!/opendaylight-inventory(2013-08-19)/GET_table_get_200
-
节点信息
http://127.0.0.1:8181/apidoc/explorer/index.html#!/opendaylight-inventory(2013-08-19)/GET_nodes_get_1
-
拓扑信息
http://127.0.0.1:8181/apidoc/explorer/index.html#!/network-topology(2013-07-12)
-
拓扑链路信息
http://127.0.0.1:8181/apidoc/explorer/index.html#!/network-topology(2013-07-12)/GET_link_get_82
(三)个人感想
1、本次实验难度较小,但有些小细节还是要很注意,比如先在Mininet CLI中运行h1 ping h3,再在Postman处选择动作PUT、先在Mininet上pingall才会在ODL 的用户界面看到主机。此次实验使我对ODL有了初步的了解,虽然也并没有完全理解,后续还需进一步掌握对ODL REST API的使用。
2、问题及解决
1)
问题:发送请求失败
解决:
法一:未解决
法二:未解决
法三:使用Ubuntu克隆重新配置就解决了这个问题(不过我还是不明白问题出在哪里,只能用这种方式了哈哈哈)
2)
问题:查看API文档的网页打不开
解决:账号密码均为admin(用自己账号密码登不上)