diff --git a/imls-wifi-sensor/internal/session-counter-helper/tlp/simpleshark.go b/imls-wifi-sensor/internal/session-counter-helper/tlp/simpleshark.go index 7a7ef6fb..a7fd07b0 100644 --- a/imls-wifi-sensor/internal/session-counter-helper/tlp/simpleshark.go +++ b/imls-wifi-sensor/internal/session-counter-helper/tlp/simpleshark.go @@ -19,7 +19,7 @@ func TSharkRunner(adapter string) []string { tsharkCmd := exec.Command( config.GetWiresharkPath(), "-a", fmt.Sprintf("duration:%d", config.GetWiresharkDuration()), - "-I", "-i", adapter, + "-i", adapter, "-Tfields", "-e", "wlan.sa") tsharkOut, err := tsharkCmd.StdoutPipe()