我正在使用一个简单的mininet拓扑,试图学习如何使用ODL控制器操纵流。拓扑为:

主机1-OFSwitch1-OFSwitch2-主机2-OFSwitch3-OFSwitch4-主机3

我试图默认情况下不实现从Host1到Host3的连接,但是,一旦运行python脚本,就会添加允许Host1 ping Host3的流。

我刚刚开始学习ODL,似乎无法使这个基本项目正常工作。

最佳答案

可以通过Opendaylight控制器REST api创建流,该流又会反映在OVS交换机中,在其中使用mininet进行网络模拟。

请参考以下步骤在ODL中创建流程并在ODL和OVS中进行验证:

1)ODL流创建

curl -u admin:admin -H 'Content-Type: application/yang.data+xml' -X PUT -d @flow_data.xml http://192.168.1.196:8181/restconf/config/opendaylight-inventory:nodes/node/openflow:1/table/0/flow/10


flow_date.xml文件内容:

<flow xmlns="urn:opendaylight:flow:inventory"> <priority>14865</priority> <flow-name>jpsampleFlow</flow-name> <idle-timeout>12000</idle-timeout> <match> <ethernet-match> <ethernet-type> <type>2048</type> </ethernet-type> </ethernet-match> <ipv4-source>10.0.0.1/32</ipv4-source><ipv4-destination>10.0.0.2/32</ipv4-destination><ip-match><ip-dscp>28</ip-dscp> </ip-match></match> <id>9</id> <table_id>0</table_id> <instructions> <instruction> <order>6555</order> </instruction> <instruction> <order>0</order> <apply-actions> <action> <order>0</order><drop-action/> <output-action> <output-node-connector>1</output-node-connector> </output-action> </action> </apply-actions> </instruction> </instructions> </flow>


2)验证在ODL中创建的流:

curl -u admin:admin -X GET http://192.168.1.196:8181/restconf/operational/opendaylight-inventory:nodes/node/openflow:1/table/0/flow/10


3)在OVS中验证相同的内容:

sudo ovs-ofctl dump-flows <switch_id>


参考this wiki page进一步了解ODL中的流创建

09-25 22:31