https://github.com/junka/vscode-ofp
https://github.com/junka/vscode-ofp
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/junka/vscode-ofp
- Owner: junka
- License: bsd-2-clause
- Created: 2023-05-09T13:41:46.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-15T15:34:07.000Z (about 3 years ago)
- Last Synced: 2025-02-01T14:19:20.857Z (over 1 year ago)
- Language: JavaScript
- Size: 6.37 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vscode-openflow
Openflow is the de facto standard for SDN, see [ovs](https://github.com/openvswitch/ovs)
Usually we will see the flows, meters, groups and so on with command line below:
```
ovs-ofctl dump-flows br-int
ovs-ofctl dump-meters br-int -O openflow13
ovs-ofctl dump-groups br-int
```
Though we have the ```ofproto/trace``` tool to help us analyze the flows, it could still be hard for us to pin-point mistake in the tables.
A real scenario in huge distributed system will have over ten thousands of flows or even more.
This aims to work as a helper to analyze the flows dumped out from the environment. Save the flows to a file ended with ```.ofp``` and open it with vscode and install this extension.
#### Feature
- sytax highlight
- flow table outline
- flow table mermaid flowchart
- todo: hint for possible conflict
- todo: hint for better ocherster of flows