I registered for flow mod events and the event shows the flow being added. I can also see the flow through Open vSwitch. I'm not receiving any errors, so the request is in the correct format. Could it be a problem with Open vSwitch?

======== Request ==========
request = ofp_stats_request()
request.header.xid = 25
request.type = OFPST_FLOW
request.flags = 0
body = ofp_flow_stats_request()
body.port_no = OFPP_NONE
body.table_id = 0xff   # All flow tables
body.match.wildcards = OFPFW_ALL
request.header.length = len(request.pack()) + len(body.pack())

self.send_openflow_command(dpid, request.pack() + body.pack())

_______________________________________________
nox-dev mailing list
nox-dev@noxrepo.org
http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org

Reply via email to