You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 22, 2024. It is now read-only.
Alright, so this seems to be working solution for our problem. It is based on our first idea to ask switch about flow statistics. It may be a little naive and definietly not scalable but it does its job:) Please comment and let me know if there is anything what could be improved in your opinion 👍
This one won't be merged as I decided to pull an other solution. Anyway, an interesting thing to see would be to get rid of periodically sending flows_stats_request and instead rely on flow_removed message. In more detail: we could simply subscribe to this message and check the counters of a flow in the flow_removed message. According to the 7.4.2 chapter in the spec, all the counters are sent along the flow_removed message. This message is only sent when it is explicitly configured on the switch (see 7.3.10). I'm going to check how we can configure that in the OVS.
I think that having another option for managing our simple IDS algorithm would be great! Then we can compare 2 approaches.
I think that the best option is to integrate that with the solution from @mbSmaga by extracting common logic to sth like common_ids and then adding to separate, alternative modules.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
None yet
2 participants
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Alright, so this seems to be working solution for our problem. It is based on our first idea to ask switch about flow statistics. It may be a little naive and definietly not scalable but it does its job:) Please comment and let me know if there is anything what could be improved in your opinion 👍