Search code examples
linuxporttrafficnetwork-traffic

How to know traffic to a specific port in linux


I am looking to find the traffic through a specific port for a time frame. For example, traffic through 3306 port for 10 seconds. Is there a way to find this information?

I see that "/sbin/ifconfig eth0 05" can be used to get information on total bytes but I am looking to find information about specific port's traffic.

Thanks in advance,


Solution

  • tcpdump -i eth0 -s 1500 port 3306