Please back-up first as Jeff suggested.
First things first
Have you tried updating your bios and drivers, especially chipset/network/raid?
Easy things to do, might remedy the problem and more. :-)
Have you checked the event log?
If it does show a moment in time, you could skip the video recording I suggest later. Still have a ping to your gateway running so the detection is done as fast as possible and not seconds later. Apart from that, it might even give you the cause and solve the problem altogether.
Have you tried generating I/O to see if that does cause a drop?
Try disk benchmarking software, especially those that list stability tests to see if it drops your connection. Try an error scan with HDTune for example, it should trigger any bad sections on your disk...
Introduction to troubleshooting
First of all, you need to be sure that the server is the issue and not the router dropping your lease. Also, when the problem is so frequent that you can monitor it live, you probably want to see what happens at that moment. You can do this either by monitoring live or by logging it and troubleshooting afterwards.
If not, your best bet is to set up video recording to know the moment it occured so you can look back.
For the logging tools, logging for a long time (30 mins) will fill up either disk or memory. So to have sufficient detail this might not be feasible if you are going to let it run unattended for a long time...
Monitoring
Ping? Pong! Ping? Pong?
start ping -t GATEWAY && ping -t DOMAIN
Replace GATEWAY by your Router IP and DOMAIN by an internet Domain, eg. Google.com.
This will continuously ping both addresses and you will immediately be able to see when your connection drops which allows you to see what exactly happens at that moment.
What are my processes doing?
You can use Process Explorer to:
- Check what Processes are active at that moment, include as much useful detail columns as you can.
- Check if a Driver acts weird by 100% CPU spikes in the Interrupts, DPC or System process.
- Check what I/O usage is being done, shows both Disk and Network.
- Check for memory and handle leaks.
- Does not log anything, apart from usage graphs.
What I/O is happening?
You can use Process Monitor to:
- Log Process, Thread and I/O (Disk + Network) activity.
- Filter away things that might not be cause to decrease data usage, make sure to drop events.
- Has useful tables and graphs you could look too, but might not help as your issue is a specific time.
What else is happening?
You can use XPerf from the Windows Performance Toolkit in the Windows SDK can do this too.
Please note that this will use a cycled buffer in memory to prevent full memory, if you want your disk to fill instead you can replace the profile in the command by perf!GeneralProfiles.InSequentialFile. Word of caution is that you might not want to run this unattended with such amount of details as your disk will fill very fast, and configuruing it for less detail might leave the cause out...
Troubleshooting can be done like this:
- Download the setup from Windows Performance Analysis Tools for your Windows version.
- Install the software on your system.
Open a command prompt as administrator, and copy paste the next command:
xperf -start perf!GeneralProfiles.InBuffer && timeout -1 && xperf -stop perf!GeneralProfiles.InBuffer myTrace.etl
Press ENTER once to start the command, now you will have to wait until the connection drops.
- Right after your connection drops you go to the console and press ENTER.
- After waiting some time a log file myTrace.etl will be produced.
Run the following command to show the file:
xperf myTrace.etl
If you want to upload it so we can look into it:
- Compress myTrace.etl to a zip file.
- Put this compressed version of the file somewhere online (perhaps 2shared).
- Share the link here, I will do an attempt to find and show you the cause of your problem.