-1

I am looking for help with capturing all incoming/outgoing traffic on a host using eBPF across all containers. Need to identify from/to which container is the traffic coming. The filter should run on in a privileged docker container.

Don't need to receive the content, just the TCP/UDP headers are sufficient.

rubenhak
  • 830
  • 2
  • 10
  • 28

1 Answers1

-1

you can perform

tcpdump -i yourinterface

where yourinterface is the interface you need to monitor, as shown by ifconfig command

rai
  • 449
  • 3
  • 10