diff --git a/probe/endpoint/conntrack.go b/probe/endpoint/conntrack.go index deefa4575..e853855bc 100644 --- a/probe/endpoint/conntrack.go +++ b/probe/endpoint/conntrack.go @@ -105,7 +105,7 @@ var ConntrackModulePresent = func() bool { // NB this is not re-entrant! func (c *Conntracker) run(args ...string) { - args = append([]string{"-E", "-o", "xml"}, args...) + args = append([]string{"-E", "-o", "xml", "-p", "tcp"}, args...) cmd := exec.Command("conntrack", args...) stdout, err := cmd.StdoutPipe() if err != nil {