I’ve talked here before about some of Google’s initiatives to make the Web easier to use and to attract a wider audience, including the Chrome OS, the Chrome Frame plug-in for Internet Explorer, and the proposed new SPDY protocol. Google, of course, makes its money from selling Internet advertising, so getting more people to use the Web more often is very much in its interest.
This past Thursday, Google announced another initiative to improve the Web browsing experience, the introduction of a Public DNS service. DNS, the Domain Name System, is one of the fundamental building blocks of the Internet. It translates a human-readable domain name into the numeric IP address that is actually understood by routers and other parts of the Internet’s “plumbing”. Here is a simple example of using the DNS with the Linux host(1)
command:
rgibbs@rich90:~$ host glassmile.net glassmile.net has address 216.251.32.98 glassmile.net mail is handled by 20 mx2.pangia.biz. glassmile.net mail is handled by 10 mx1.pangia.biz.
The DNS database also contains other information used for message routing; for example, it specifies where E-mail for a given domain should be sent, as in the last two lines above. Every time you access a Web page, or send an E-mail via the Internet, you are making use of the DNS.
Access to DNS servers is generally provided by your ISP, and is, more or less, a “set and forget” bit of configuration data. However, there are a few problems that users sometimes experience:
- DNS is just a piece of necessary infrastructure from the ISP’s point of view. Although most ISPs seem to do a pretty good job of maintaining their DNS servers, in a few cases those servers can get bogged down as traffic grows, or can have odd configuration glitches.
- Some ISPs (names will be omitted to protect the guilty) have tried to use the DNS as a source of revenue, by redirecting users who mistype a domain name to (sometimes sleazy) advertising pages.
- The DNS, like many of the other original Internet protocols, was not designed with an emphasis on security. So it is susceptible to various attacks, notably DNS cache poisoning, which the Bad Guys can use to direct the user to a bogus version of a real domain.
The load on the DNS has also been steadily increasing, both because more and more people are using the Internet, and because Web pages are becoming more complicated, with external links for things like images, advertisements, and embedded video. As Google says,
The average Internet user ends up performing hundreds of DNS lookups each day, and some complex pages require multiple DNS lookups before they start loading. This can slow down the browsing experience
Some people have expressed concern that this service gives Google another way to capture data about users’ browsing habits. The company says it will only gather aggregate statistical data that cannot be linked to individuals. Google’s public DNS service will compete with some similar existing services; the best known is OpenDNS, which has gained some popularity because it allows its offering to be customized (e.g., to block porn sites). From a technical point of view, it will be interesting to see if the Google service really can produce a meaningful increase in performance.
There are other articles on Google’s new Public DNS in the New York Times, Wired, and Ars Technica.