1e100.net is a Google-owned domain name used to identify the servers in our network.
...
Most typical Internet users will never see 1e100.net, but we picked a Googley name for it just in case (1e100 is scientific notation for 1 googol).
--
--
Chromium Discussion mailing list: chromium...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-discuss
A search for 1e100.net returns https://support.google.com/faqs/answer/174717:1e100.net is a Google-owned domain name used to identify the servers in our network.
...
Most typical Internet users will never see 1e100.net, but we picked a Googley name for it just in case (1e100 is scientific notation for 1 googol).
Many of the connections from Chrome will of course be created from web pages, but there are some hard-coded in the source to connect to Google servers, like search and sync as you say. All of those should be documented with NetworkTrafficAnnotation tags, which are documented here: https://chromium.googlesource.com/chromium/src.git/+/HEAD/docs/network_traffic_annotations.mdnetwork_time_tracker.cc is a good example of how this works (https://source.chromium.org/chromium/chromium/src/+/main:components/network_time/network_time_tracker.cc): the time server that responds to network time requests is defined in a constant as "http://clients2.google.com/time/1/current". That's stored in a variable "server_url_", so it can be overridden in tests, and then farther down where `server_url_` is used to create a request object, there's a block of text inside "net::DefineNetworkTrafficAnnotation" that describes exactly what this request is for.I'm not sure how the 1e100.net names work, but I think they're aliases for the same servers that have names like "clients2.google.com" publicly. So when chrome connects to clients2.google.com, DNS is converting the hostname to an IP address, and the your "lsof" command is converting the IP address back to a hostname and choosing something.1e100.net instead of clients2.google.com for some reason.
A search for 1e100.net returns https://support.google.com/faqs/answer/174717:1e100.net is a Google-owned domain name used to identify the servers in our network.
...