如何将openflow更新到1.3

问题描述 投票:0回答:1

我想将mininet中的openflow从1.0更新到1.2或更高版本,以运行我的流程推送器,任何人都可以告诉我如何更新它。

因为在输入条目时出现此错误

ERROR [n.f.s.StaticFlowEntryPusher:Dispatcher: Thread-27] Apply Actions Instruction not supported in OpenFlow 1.0

e

我想将mininet中的openflow从1.0更新到1.2或更高版本以运行我的流推送程序,任何人都可以告诉如何更新它,因为当推送条目错误[nfsStaticFlowEntryPusher:...]时出现此错误。

如果使用mn从命令行运行,则可以添加参数--switch ovs,protocols = OpenFlow13

mn --switch ovs,protocols = OpenFlow13

如果使用python脚本运行它,则可以在遥控器中传递OF版本:

c0 = RemoteController('c0', ip=CONTROLLER_IP, port=CONTROLLER_PORT, protocols="OpenFlow13") net = Mininet(switch=OVSSwitch,build=False, cleanup=True) net.addController(remote_controller) net.build() net.start()

sdn mininet openflow google-floodlight
1个回答
0
投票
如果使用mn从命令行运行,则可以添加参数--switch ovs,protocols = OpenFlow13
© www.soinside.com 2019 - 2024. All rights reserved.