Skip to content

Commit

Permalink
Merge pull request #92 from kytos-ng/backport/fix/flow_priority
Browse files Browse the repository at this point in the history
backport 2022.3.2: Raised flow priority to 50000
  • Loading branch information
Ktmi authored Jul 24, 2023
2 parents 3f46909 + f7dc577 commit 9eb5680
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ All notable changes to the of_lldp NApp will be documented in this file.
[UNRELEASED] - Under development
********************************

[2022.3.2] - 2023-07-18
***********************

Changed
=======

- Raised defaultt ``settings.FLOW_PRIORITY`` to 50000.

General Information
===================
- To clean up lldp flows with the old priority, run the following command, then restart kytos: ``curl -H 'Content-type: application/json' -X DELETE http://127.0.0.1:8181/api/kytos/flow_manager/v2/flows/ -d '{"flows": [{"cookie": 12321848580485677056, "cookie_mask": 18374686479671623680}]}'``

[2022.3.1] - 2023-06-28
***********************

Expand Down
2 changes: 1 addition & 1 deletion kytos.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"username": "kytos",
"name": "of_lldp",
"description": "Discover network-to-network interfaces (NNIs) using the LLDP protocol.",
"version": "2022.3.1",
"version": "2022.3.2",
"napp_dependencies": ["kytos/of_core", "kytos/flow_manager", "kytos/topology"],
"license": "MIT",
"url": "https://github.com/kytos/of_lldp.git",
Expand Down
2 changes: 1 addition & 1 deletion settings.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Settings for the of_lldp NApp."""
FLOW_VLAN_VID = 3799
FLOW_PRIORITY = 1000
FLOW_PRIORITY = 50000
TABLE_ID = 0
POLLING_TIME = 3

Expand Down

0 comments on commit 9eb5680

Please sign in to comment.