Hello everyone,

I'm trying to delete a rule based on the cookie.  From what I've read,
deleting rules using the cookie requires the cookie_mask to also be present.

I have tried the following to delete a Flow with cookie 8:

curl -d '{"dpid":1, "cookie":8, "cookie_mask":0, "match":{}}'
http://localhost:8080/stats/flowentry/delete_strict

curl -d '{"dpid":1, "cookie":8, "cookie_mask":8, "match":{}}' http://
localhost:8080/stats/flowentry/delete_strict

curl -d '{"dpid":"1", "cookie":"8", "cookie_mask":"0", "match":{}}' http://
localhost:8080/stats/flowentry/delete_strict

curl -d '{"dpid":"1", "cookie":"8", "cookie_mask":"8", "match":{}}' http://
localhost:8080/stats/flowentry/delete_strict

curl -d '{"dpid":"1", "cookie":"0", "cookie_mask":"8", "match":{}}' http://
localhost:8080/stats/flowentry/delete_strict


curl -d '{"dpid":"1", "cookie_mask":"8", "match":{}}' http://localhost:
8080/stats/flowentry/delete_strict
The rule still persists.  I'm not exactly sure what I'm doing wrong.

Any ideas what I may be doing wrong?
------------------------------------------------------------------------------
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel

Reply via email to