tags:

views:

19

answers:

2

Hi,

I want track all outgoing HTTP requests from my server. Is there any easy way to do this?

A: 

Yes: tcpdump or wireshark (GUI).

Pablo Santa Cruz
+1  A: 

Using tcpdump it will look something like this: tcpdump -i eth0 port 80

Vladimir Volodin