Does this make any sense, I typed the 'dig flickr.com' in terminal and get this.
SARAH:~ grahammorgan$ dig flickr.com
;; reply from unexpected source: 192.168.1.254#53, expected 10.0.0.138#53
;; reply from unexpected source: 192.168.1.254#53, expected 10.0.0.138#53
;; reply from unexpected source: 192.168.1.254#53, expected 10.0.0.138#53
; <<>> DiG 9.4.3-P3 <<>> flickr.com
;; global options: printcmd
;; connection timed out; no servers could be reached
You appear to be having some sort of DNS (Domain Name Server) problem and it looks like you can't even get out of your local network. You should get something more like this:
kbaker$ dig flickr.com
; <<>> DiG 9.3.6-APPLE-P2 <<>> flickr.com
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 15722
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 5, ADDITIONAL: 5
;; QUESTION SECTION:
;flickr.com. IN A
;; ANSWER SECTION:
flickr.com. 300 IN A 68.142.214.24
;; AUTHORITY SECTION:
flickr.com. 262 IN NS ns3.yahoo.com.
flickr.com. 262 IN NS ns7.yahoo.com.
flickr.com. 262 IN NS ns1.yahoo.com.
flickr.com. 262 IN NS ns5.yahoo.com.
flickr.com. 262 IN NS ns2.yahoo.com.
;; ADDITIONAL SECTION:
ns1.yahoo.com. 490 IN A 68.180.131.16
ns2.yahoo.com. 490 IN A 68.142.255.16
ns3.yahoo.com. 490 IN A 121.101.152.99
ns5.yahoo.com. 490 IN A 119.160.247.124
ns7.yahoo.com. 571 IN A 68.142.226.82
;; Query time: 33 msec
;; SERVER: 192.168.2.1#53(192.168.2.1)
;; WHEN: Thu Mar 4 06:36:31 2010
;; MSG SIZE rcvd: 220
If you have an IT department, contact them. If you just have an ISP (Internet Service Provider) try contacting them.
Can you connect to flickr via your web browser? If you issue this command in the Terminal application:
dscacheutil -flushcache
can you still connect to flickr via your web browser?
-Kirk