Netstat shows many times deploy.akamaitechnologies.com connected to the server

httpnetstattcp

Many times, after running netstat on my server, I find one of IP addresses belonging to deploy.akamaitechnologies.com connected to my server, do someone has an idea on what is happening on my server ?

this is a case:

TCP xxx.xxx.xxx.xxx:49189 a184-25-107-184:http ESTABLISHED

To what could serve the port: 49189 when the source machine is running http ?

Best Answer

Your server is connecting to HTTP on the deploy.akamaitechnologies.com server, not the other way around. Run netstat -a -n -o on your server and see what PID (process ID) is responsible for the connection and investigate from there.

Related Topic