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
This is a more refined version of the previously closed pull request by @mlavin. #1
The main improvement over the previous script is a reduction unintended consequences of applying editcap packet deduplication over the entire pcap. This is done by isolating the impacted mac addresses and ip addresses that have been confirmed to have definite duplication by prior analysis.
The wait in this code doesn't work as intended. Culprit being the remove_traffic_duplication.sh:47, which spawns a subshell causing the while loop to be performed in another process, thus leading to parent process not waiting for the process to finish.
Hi @sebastien-bois - did you check the remove_traffic_duplication.sh in this PR?
@lisa-lt I did but I guess my question was not explicit.
I was asking how you identified the MAC addresses and IP addresses that you are using in the filtering part of remove_traffic_duplication.sh. In your pull request, you mentioned a "prior analysis" that helped you to establish this list of addresses. This is the one I am interested about.
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
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.
This is a more refined version of the previously closed pull request by @mlavin. #1
The main improvement over the previous script is a reduction unintended consequences of applying editcap packet deduplication over the entire pcap. This is done by isolating the impacted mac addresses and ip addresses that have been confirmed to have definite duplication by prior analysis.