I have small server with IIS and windows server 2008 hosting one page. Sometimes my bandwidth is completely overloaded. How can I check what files are being downloaded from my server that is killing my network connection?
Tell me more
×
Server Fault is a question and answer site for
professional system and network administrators. It's 100% free, no registration required.
|
migrated from stackoverflow.com Mar 14 '11 at 12:01
|
Look at your IIS logfiles. By default they're stored in
You should see an entry for every file that's been downloaded from your website (along with IP addresses and other information) You can configure which fields are logged in the IIS Manager application. |
|||
|
|
|
Check your IIS logs. In some instances you will need to have pre-selected the option for logs to be written. If you are watching an actively flooded server, try sysinternals tools available on the web. Specifically "Process Explorer" to monitor what files are being opened and closed by what processes, and "TCP view" to see what addresses are requesting files. |
|||
|
|