The Web browser does not make a very good troubleshooting tool. Go to the command prompt and enter "ipconfig /all". The Ethernet adapter should look something like this:
C:\Users\couttsj>ipconfig /all
Ethernet adapter Local Area Connection:
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Intel(R) 82562V-2 10/100 Network Connection
Physical Address. . . . . . . . . : 00-1D-09-7E-44-A2
DHCP Enabled. . . . . . . . . . . : No
Autoconfiguration Enabled . . . . : Yes
IPv4 Address. . . . . . . . . . . : 192.168.1.4(Preferred)
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.1.254
DNS Servers . . . . . . . . . . . : 192.168.1.254
NetBIOS over Tcpip. . . . . . . . : Enabled
If you do not have an IP/Mask/Gateway, then TCP/IP is not functional. Your system may be set to use DHCP, and therefore you have to establish a connection to either your router (if you have one) or your ISP's network in order to be assigned one. Once you have an IP/Mask/GW, you should then be able to ping your gateway:
C:\>ping 192.168.1.254
Pinging 192.168.1.254 with 32 bytes of data:
Reply from 192.168.1.254: bytes=32 time<1ms TTL=64
Reply from 192.168.1.254: bytes=32 time<1ms TTL=64
Reply from 192.168.1.254: bytes=32 time<1ms TTL=64
Reply from 192.168.1.254: bytes=32 time<1ms TTL=64
Ping statistics for 192.168.1.254:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
If that works, then you should be able to ping something on your ISP's network. I use my ISP's SMTP server (outbound mail) because it is reliable and consistent and close:
C:\>ping smtp.xxxxx.net
Pinging smtp.svc.xxxxx.net [204.209.205.51] with 32 bytes of data:
Reply from 204.209.205.51: bytes=32 time=30ms TTL=249
Reply from 204.209.205.51: bytes=32 time=30ms TTL=249
Reply from 204.209.205.51: bytes=32 time=30ms TTL=249
Reply from 204.209.205.51: bytes=32 time=30ms TTL=249
Ping statistics for 204.209.205.51:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 30ms, Maximum = 30ms, Average = 30ms
This actually checks 2 things. It will verify that you have DNS service that translates domain names into IP adresses, and it will verify that you can access the Internet.
J.A. Coutts