Implement Noviflow-specific features
To install this NApp, first, make sure to have the same venv activated as you have kytos
installed on:
$ git clone https://github.com/kytos-ng/noviflow.git
$ cd noviflow
$ python -m pip install --editable .
To install the kytos environment, please follow our development environment setup.
This NApps depends on kytos/of_core and OpenFlow 1.3.
The following OFPAT_EXPERIMENTER
custom action types are supported:
class NoviActionType(IntEnum): """Noviflow custom actions.""" # Set BFD NOVI_ACTION_SET_BFD_DATA = 4 # Push INT NOVI_ACTION_PUSH_INT = 12 # Modify INT NOVI_ACTION_ADD_INT_METADATA = 13 # Pop INT NOVI_ACTION_POP_INT = 14 # Send INT report NOVI_ACTION_SEND_REPORT = 15