Solved google-analytics

Hi!

I did run as user netstat -ar and I got:
Code:
Routing tables

Internet:
Destination        Gateway            Flags     Netif Expire
default            192.168.1.1        UGS        bge0
localhost          link#2             UH          lo0
192.168.1.0/24     link#1             U          bge0
192.168.1.5        link#1             UHS         lo0

Internet6:
Destination        Gateway            Flags     Netif Expire
::/96              localhost          UGRS        lo0
localhost          link#2             UH          lo0
www.google-analyti localhost          UGRS        lo0
fe80::/10          localhost          UGRS        lo0
fe80::%lo0/64      link#2             U           lo0
fe80::1%lo0        link#2             UHS         lo0
ff02::/16          localhost          UGRS        lo0

Where google-analytics came frm to my localhost, please?

Thank you.
 
You probably have a misconfigured DNS server somewhere, or you have edited /etc/hosts wrong. The offending line should have been:
::ffff:0.0.0.0/96 localhost UGRS lo0

The netstat command took the address ::ffff:0.0.0.0, performed a reverse DNS lookup, and got the answer "www.google..." from somewhere. If I remember right, reverse DNS lookups first go to the hosts file, and then to the DNS service. First, check your /etc/hosts file, and then manually perform the command "host ::ffff:0.0.0.0". If you get a DNS answer to that query, you need to drill down which broken DNS server told you that.

In the future, to prevent the output of netstat being reverse DNS translated, you can use "netstat -arn" instead.
 
You probably have a misconfigured DNS server somewhere, or you have edited /etc/hosts wrong. The offending line should have been:
::ffff:0.0.0.0/96 localhost UGRS lo0
Thank you very much. I forgot that once I put in etc/hosts:
Code:
0.0.0.0 www.google-analytics.com                                                                  
0.0.0.0 google-analytics.com                                                                      
0.0.0.0 ssl.google-analytics.com
 
Back
Top