(一)基本要求
利用Mininet平台搭建下图所示网络拓扑,并连接OpenDaylight控制器;
Mininet拓扑生成并连接控制器的结果
Mininet中ping测试截图
通过Postman工具调用OpenDaylight提供的API下发流表,实现拓扑内主机h1和h3网络中断10s。
(二)进阶要求
查找资料,整理和记录ODL控制器主要的REST API文档,包括但不限于ODL提供的文档链接,获取拓扑的交换机、获取流表状态数量、获取特定交换机端口的状态、新增修改和删除流表等。
获取拓扑的交换机
http://127.0.0.1:8181/apidoc/explorer/index.html#!/network-topology(2013-07-12)/GET_network_topology_get_171
获取流表状态数量
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)
(三)个人总结
遇到的问题
百度到的启动路径
启动控制器:./distribution-karaf-0.6.4-Carbon/bin/karaf
启动Postman:./Postman/Postman
点击Send下发流表后,无法实现拓扑内主机h1和h3网络中断10s
解决办法:先在Postman处选择动作del,再在Mininet CLI中运行h1 ping h3,最后在Postman处选择动作put
外网使用Postman的话,记得改url地址
总结
这次实验的难度并不是很高,按着老师给的文档的流程操作就能完成所有的作业要求了,通过查看ODL的图形化页面,postman调用api调试,和查看api文档,让我对OpenDaylight有了初步的了解,由于之前有用过postman,所以本次用postman比较快,这次实验花费的大部分时间是在api文档的查找上面