实验4:开源控制器实践——OpenDaylight
实验4:开源控制器实践——OpenDaylight
一、实验目的
- 能够独立完成OpenDaylight控制器的安装配置;
- 能够使用Postman工具调用OpenDaylight API接口下发流表。
二、实验环境
Ubuntu 20.04 Desktop amd64
三、实验要求
(一)基本要求
- 利用Mininet搭建要求的网络拓扑,并连接OpenDaylight控制器;
- pingall测试
- 通过Postman工具调用OpenDaylight提供的API下发流表,实现拓扑内主机h1和h3网络中断10s。
(二)进阶要求
查找资料,整理和记录ODL控制器主要的REST API文档
- REST API文档汇总
http://127.0.0.1:8181/apidoc/explorer/index.html
- 获取拓扑的交换机
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_flow_get_198
http://127.0.0.1:8181/apidoc/explorer/index.html#!/opendaylight-inventory(2013-08-19)/PUT_flow_put_199
http://127.0.0.1:8181/apidoc/explorer/index.html#!/opendaylight-inventory(2013-08-19)/DELETE_flow_delete_200
http://127.0.0.1:8181/apidoc/explorer/index.html#!/opendaylight-inventory(2013-08-19)/POST_flow_post_201
- 流表信息
http://127.0.0.1:8181/apidoc/explorer/index.html#!/opendaylight-inventory(2013-08-19)/GET_flow_statistics_get_265
http://127.0.0.1:8181/apidoc/explorer/index.html#!/opendaylight-inventory(2013-08-19)/PUT_flow_statistics_put_266
http://127.0.0.1:8181/apidoc/explorer/index.html#!/opendaylight-inventory(2013-08-19)/DELETE_flow_statistics_delete_267
http://127.0.0.1:8181/apidoc/explorer/index.html#!/opendaylight-inventory(2013-08-19)/POST_flow_statistics_post_268
四、个人总结
所学内容
API
接口测试主要检查数据的交换、传递和控制管理过程,以及系统间的相互逻辑依赖关系。
Postman工具
- 填写测试数据,点击send发送请求,得到对应的响应结果
- 对于响应结果的分析,一般关注响应内容、状态码、头信息
- 解析响应结果,验证该接口功能实现是否正确
心得体会
本次实验是一些较为基础的opendaylight使用以及Postman使用,主要体验了如何利用Postman工具调用OpenDaylight API接口下发流表。实验过程较为顺利,照着pdf进行操作并不难,只是想要理解每一步的具体功能,还是需要花费额外的时间与精力去阅读文档及查找相关资料。