实验4:开源控制器实践——OpenDaylight
(一)基本要求
Mininet拓扑生成并连接控制器的结果
通过Postman工具调用OpenDaylight提供的API下发流表,实现拓扑内主机h1和h3网络中断10s。
(二)进阶要求
1.ODL提供的文档链接:http://127.0.0.1:8181/apidoc/explorer/index.html
2.获取拓扑的交换机:http://127.0.0.1:8181/apidoc/explorer/index.html#!/network-topology(2013-07-12)/GET_network_topology_get_171
3.获取指定交换机信息:http://127.0.0.1:8181/apidoc/explorer/index.html#!/opendaylight-inventory(2013-08-19)/GET_node_get_5
4.获取交换机中某个流表信息:http://127.0.0.1:8181/apidoc/explorer/index.html#!/opendaylight-inventory(2013-08-19)/GET_table_get_200
5.获取特定交换机端口的状态:http://127.0.0.1:8181/apidoc/explorer/index.html#!/opendaylight-port-statistics(2013-12-14)/get_node_connector_statistics_post_0
6.新增修改和删除流表:http://127.0.0.1:8181/apidoc/explorer/index.html#!/opendaylight-inventory(2013-08-19)/GET_flow_get_215
心得体会
1.通过本次实验,我学习到ODL控制器的安装和使用方法,学会了如何借助ODL图形化界面可视化查看拓扑,对Postman工具的使用也有了一定的了解。
2.需要注意细节,比如说应该先开启ODL控制器之后再建立拓扑,在使用Postman工具调用OpenDaylight提供的API下发流表时,也必须注意URL地址要正确。