Are there any programs to log/ display connections from every application?

jmk396

Gawd
Joined
Jul 22, 2004
Messages
787
I'm trying to tweak my router's quality of service (QoS) configuration and I'd like to know what ports that certain applications use (source ports, destination ports, and destination ip addresses).

Do any programs like this exist? I'm just looking for something really simple that logs each connection. I don't need to know anything about the traffic itself.

For example, when I start playing Team Fortress 2 then I'd like to log which ports are being used so I can add them to my router, etc.
 
from the command prompt, run "netstat -n" however this wont tell you which app is which, just the open sessions, but will tell you source ip/port dest ip/port.

EDIT: If you add a "-o" it will add the process ID also, which can then be matched to a particular app in the task manager if you click "View, Select Colomns" and add the PID.
 
Back
Top