Quote Originally Posted by Hoosier View Post
Are you on wireless? Wireless connections will drop out, it's just a fact of life. You can try keep alive by start>run>cmd>ping -t 192.168.1.1 then minimize that window. that will have your machine sending ICMP ping requests to your router constantly. If you get an error you might need to do ping -t 192.168.0.1, depends on the make of your router. This will mean the machine always sees that the connection has been active recently and should keep it up. It'll at least help you diagnose the problem.

H.
you can easily determine your router's internal Int IP by going to Start>Run type CMD then press enter
type: ipconfig /all
you will see something like this:

C:\Users\USER>ipconfig /all

Windows IP Configuration

Host Name . . . . . . . . . . . . : USER
Primary Dns Suffix . . . . . . . :
Node Type . . . . . . . . . . . . : Hybrid
IP Routing Enabled. . . . . . . . : No
WINS Proxy Enabled. . . . . . . . : No

(Wireless adapter name here)
Connection:

Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Wireless Adapter name
Physical Address. . . . . . . . . : 00-00-00-00-00-00
DHCP Enabled. . . . . . . . . . . : Yes
Autoconfiguration Enabled . . . . : Yes
Link-local IPv6 Address . . . . . : (removed for security(Preferred)
IPv4 Address. . . . . . . . . . . : 192.168.0.86(Preferred)
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Lease Obtained. . . . . . . . . . : Thursday, March 03, 2011 5:15:41 AM
Lease Expires . . . . . . . . . . : Thursday, March 03, 2011 1:15:55 PM
Default Gateway . . . . . . . . . : 192.168.0.1
DHCP Server . . . . . . . . . . . : 192.168.0.1
DHCPv6 IAID . . . . . . . . . . . : 234888544
DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-13-A7-62-4C-00-1D-60-49-84-C4
C:\Users\USER>
Now the part you are concerned about is the areas highlighted in RED

If the first 4 "groups" of Numbers(Called Octets) of the IP address do not match your first four of your Default gateway address you have a network problem.
If they do match, try the Ping as Hoosier stated above Using the address of the Default Gateway.
it will look something like this:
C:\Users\USER>ping -t 192.168.0.1

Pinging 192.168.0.1 with 32 bytes of data:
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64
Reply from 192.168.0.1: bytes=32 time<1ms TTL=64

Ping statistics for 192.168.0.1:
Packets: Sent = 19, Received = 19, Lost = 0 (0&#37; loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
Control-C
^C
C:\Users\USER>
Press ctrl-C to stop the ping



let us know
Ohh, to copy in the CMD wndow it is called "MARK"
right Click, "MARK" the Selected text and PASTE into the reply window.