jayna wallace wrote:
I've tried typing "ping -c 4 8.8.8.8" into Terminal and hit return. I saw the following:
PING 8.8.8.8 (8.8.8.8): 56 data bytes
64 bytes from 8.8.8.8: icmp_seq=0 ttl=48 time=29.165 ms
64 bytes from 8.8.8.8: icmp_seq=1 ttl=48 time=29.548 ms
64 bytes from 8.8.8.8: icmp_seq=2 ttl=48 time=29.976 ms
64 bytes from 8.8.8.8: icmp_seq=3 ttl=48 time=33.200 ms
According to an earlier post on this forum: "Then your wireless connection IS WORKING, but "DNS" or some other packets are being dropped by your ISP."
I then attempted typing "dig @8.8.8.8 www.apple.com" and hitting return.
; <<>> DiG 9.7.3-P3 <<>> @8.8.8.8 www.apple.com
; (1 server found)
;; global options: +cmd
;; connection timed out; no servers could be reached
So the ping demonstrates that packets of network traffic (ICMP Echo packets) can travel from your computer to the network, and be returned. So the "network" part is working.
The fact that you can not get a DNS lookup of www.apple.com from the google DNS servers, says that there is something not working with TCP routing. TCP is a higher level protocol and needs more functions of the network to work.
Let's try some additional things. What does
traceroute -w 1 -n 8.8.8.8
printout? This will show the path, on the internet, from your machine, to the 8.8.8.8 machine (googles public server for DNS and other services).
Also, please open SystemPreferences and double click on "Network" preferences, and then select your Wi-Fi entry from the list on the left. Next, click "Advanced" in the bottom right. At the top, click on the DNS "tab". What entries are in the "DNS Servers" list?
For each entry in that DNS list, do you get any different results from doing
dig @DNSSERVER www.apple.com
where DNSSERVER is one of those addresses in the DNS list?