-4

My server is witnessing a sudden increase in traffic. Consistently there is a 200mb outgoing traffic every hour. This is not my web traffic. I am running centos OS and completely new to server administration. Can some one help me to figure out what is causing the traffic. I tried all possible netstat lsof etc. But couldnt really figure out what is causing this. Since my bandwidth is limited this is causing a real headache. Any help on this front will be useful.

1 Answers1

3

Tcpdump is indicated here. As root:

sudo tcpdump -i eth0 -w /tmp/weirdstuff.cap -s 1500 -c 5000

That'll create file called /tmp/weirdstuff.cap. Sftp that down to your own workstation, and load that file into Wireshark. That should give you a solid hint about what's going on.

sysadmin1138
  • 133,124
  • 18
  • 176
  • 300