Slashdot Mirror


ICANN Considers Using '127.0.53.53' To Tackle DNS Namespace Collisions

angry tapir writes "As the number of top-level domains undergoes explosive growth, the Internet Corporation for Assigned Names and Numbers (ICANN) is studying ways to reduce the risk of traffic intended for internal network destinations ending up on the Internet via the Domain Name System. Proposals in a report produced on behalf of ICANN include preventing .mail, .home and .corp ever being Internet TLDs; allowing the forcible de-delegation of some second-level domains in emergencies; and returning 127.0.53.53 as an IP address in the hopes that sysadmins will flag and Google it."

41 of 164 comments (clear)

  1. hacky by dmitrygr · · Score: 4, Insightful

    Seems like a very hacky solution...

    --
    -------
    1. Enjoy your job
    2. Make lots of money
    3. Work within the law

    Choose any two.
    1. Re:hacky by DrPBacon · · Score: 5, Funny

      ICANT think of anything better.

      --
      Spent All My Mod Points
    2. Re:hacky by Anonymous Coward · · Score: 5, Funny

      ICANT think of anything better.

      ICANN!

    3. Re:hacky by hcs_$reboot · · Score: 3, Interesting

      That solution is indeed hacky. But if the LAN is correctly setup, the collisions should be minimal. I.e. on a "home" workstation, named something like "linux.home", that very station identifies itself and if the other LAN members communicate with "linux.home" an entry is supposed to be already present in "hosts" (like) files - and, usually, "hosts" file resolution takes precedence over DNS. For bigger implementations a DNS server or equivalent should be in place, and forward the unknown domains to external (Internet) DNS - again, their local config should contain an entry for the ".home" zone, preventing an external resolution.

      Is returning 127.0.53.53 instead of NOT FOUND a good idea? Not sure about that, since, for instance, a browser will say "Cannot connect to..." instead of "Domain not found" - which is actually the correct error message. The real problem is when the domain+subdomain exist on the Internet, users will process information from the wrong site instead of the intranet one

      Of course all IT teams will have to be DNS competent - which is currently not (always) the case ...

      --
      Slashdot, fix the reply notifications... You won't get away with it...
    4. Re:hacky by Anonymous Coward · · Score: 2, Insightful

      What makes you think that a browser getting a 127.0.53.53 won't return a meaningful and very descriptive error? It is a special case worth flagging if ever their was one.

    5. Re:hacky by fuzzyfuzzyfungus · · Score: 4, Insightful

      Once you start down the dark path... Forever will it dominate your destiny.

      It's not as though TLDs were ever a particularly shining moment in the history of information classification; but, after the remnant factions of the Ontology wars (remember when URLs were totally going to express useful data about the world and whatnot by being insufferably long and hierarchical?) retired or were driven into hiding, they mostly slumped, if more by erosion than sound structural engineering, into a vaguely safe and predictable structure.

      And then they decided that it was just sickeningly adequate as it was and they started grafting on... things... things that should not be...in places that out not to have things there. Nothing could possibly go wrong. And oh boy, does it look like it will, good and hard.

    6. Re:hacky by Anonymous Coward · · Score: 4, Interesting

      It may not even say "Cannot connect to". 127.0.53.53 is in the 127/8 range, reserved for localhost. On some systems, only 127.0.0.1 works for localhost, but nothing prevents a system from using the entire range for localhost.

      So rather than getting an error, when server1.here lacks a host file entry for server2.here, you will be connecting to server1.here. So, from server1.here, "ping server2.here" will show that the network works. Browsing to "http://server2.here/" will show the start page of server1.here. If that's the default page, or the two servers are being setup to run some kind of load balancing - thus having the same content - the resulting confusion can be very hard to figure out.

    7. Re:hacky by hcs_$reboot · · Score: 4, Insightful

      I'm sorry the Internet is a production network. Time for amateur hour expired with the 20th century

      I'm sorry, I feel the time for amateur hours exploded in the 21th century. Competency was diluted among the many so-called experts answering the huge demand of engineers. It seems in bigger companies IT management is confined to ensure IT services work fine - meaning in most cases implement the fewer changes as possible - "don't fix what isn't broken". Most teams are not used anymore to hacking, customizing, improving, innovating. When something a bit trickier than usual rears its nose on the horizon, they're lost. DNS implementation is one of these trickier thing.

      --
      Slashdot, fix the reply notifications... You won't get away with it...
    8. Re:hacky by DarkOx · · Score: 5, Interesting

      The problem really isn't so much not being able to reach some.home, on the internal network or even something.home on the Internet when you already have a local .home. zone.

      The problem is all the uncounted config files out there with unqualified or partially qualified names in them. The RFCs are not entirely clear on what the correct behavior is, and worse the web browser folks have decided to implement the behavior differently themselves in some cases, rather than use the system nss services/apis.

      So if you imagine an environment where DHCP configures a list of DNS search suffixes, and one of those is something like us.example.com or something. How the Windows boxes interpret a query mobile.mail (note no trailing dot) will possibly be different than the way the Linux machines do, and different than what the OS X machines do, etc and what Chrome or Firefox decide to do might be different than what nslookup does even on the same machine!

      Its going to be nightmarish from a support and troubleshooting perspective, and lets face it nobody on your PC tech team really understands DNS, your network admins probably have a good handle but some major blind spots, and your developers are accustomed to making what are now dangerous assumptions. I am not sure I fully understand DNS on most days.

      This is going to be a support nightmare at least at some sites, even some places where the ONLY sin was not using FQDNs everywhere all the time. Which might have deliberate, perhaps not the best way to have gone about it but knowing how search domains operate, and being able to set them with DHCP is entirely possible and like someone architect-ed mobile systems getting a local resource by depending on that behavior.

      There are all kinds of potential security problems too. The gTLD expansion is making the Internet both less reliable and less safe.

      --
      Repeal the 17th Amendment TODAY! Also Please Read http://www.gnu.org/philosophy/right-to-read.html
    9. Re:hacky by DarkOx · · Score: 4, Interesting

      Right its a good idea to expect every application developer everywhere to put a special case test into their code see if the value in the buffer after a call to gethostbyname is 127.0.53.53 rather than just checking the return code and using the value directly or not based on the return code. Doing this means a new branch in every new app, for no real reason; It means odd behavior in old/not updated code that expects to either successfully resolve and address or not.

      Case in point someone introduced a hostname into our DNS recently that caused a major application to break. Turned out there was a stale config entry for a hostname that no longer existed. As long as it had been getting back NXDOMIN things hummed along nicely, it just tried the next host in its list from a config file. When someone added that name back it, it started trying to connect to the new server ( which did not run the application it was expecting and did not listen on that port ) this would cause long timeouts on login while it tried and retried the other server. I grant this was a configuration error, someone should have cleaned that old config file, but there are situations like laptops where this might not be the case. Inside your organization .mail might exist as a zone, take the machine home and CustomAPP might work fine today getting NXDOMIN and switching to a local database or trying a different public hostname etc, now its going get back 127.0.53.53 and quite likely not know what to do; when the service isn't there.

      No its patently stupid for the name resolution system to return BAD data. If something like .mail is not allocated or de-alocated than it does not exist, and NXDOMIN is what a public DNS system should return. The meaning is clear.

      --
      Repeal the 17th Amendment TODAY! Also Please Read http://www.gnu.org/philosophy/right-to-read.html
    10. Re:hacky by Antique+Geekmeister · · Score: 2

      It's spelled NXDOMAIN, by the way.

      NXDOMAIN has not been a reliable response for invalid DNS queries for roughly 15 years. Look into the history of the "*.com" DNS entry in Verisign's root servers for the .com domain, which were returning valid Verisign owned hosts. And look carefully at the DNS proxy setups of major home network services, which often return their domain sales web pages instead of "NXDOMAIN" for invalid DNS entries.

      Given that the data has _already_ been corrupted, this seems a reasonable attempt to broaden what is now done with "example.com". It also has the benefit that it's not auto-activated in default Kerberos configurations, a bit of behavior that genuinely alarms me in most default Kerberos setups and which few configuration tools have the ability to remove.

    11. Re:hacky by Stalks · · Score: 3, Insightful

      How do you put up a parking page that listens on loopback?

    12. Re:hacky by janeuner · · Score: 2

      How do you put up a parking page that listens on loopback?

      By sitting in a board room without any clue where your money comes from.

    13. Re:hacky by Anonymous Coward · · Score: 2, Insightful

      Here's a better solution
      Refuse to resolve any of the new gTLDs. Start petitions and stuff get you isps to refuse to resolves them. Get distros to patch their networking code to refuse to resolve them. Make them worthless.

    14. Re:hacky by skids · · Score: 3, Informative

      Good summary. FWIW, People were using e.g. ".site" for local domain
      for a long time. It was in the only draft RFC that addressed the issue,
      and lacking any approved RFC people tend to follow the drafts. It was
      noted on Wikipedia and many forums as to be used for this
      purpose and along with some other TLDs had become a de-facto standard.
      Then draft-ietf-dnsind-test-tlds-08 came along and removed it. Reserved
      domains names continued to disappear from this draft document until they
      were nearly all gone by the time RFC2606 was certified.

      Then they started accepting and seriously considering applications for .site as a TLD and it looks like they are set to approve it. Boneheads.
      So yes, in addition to unqualified names, there will be lots of problems with
      software and configuration written when several TLDs were presumed safe.

      RFC2606/RFC6761 have proper domains to use for test setups and documentation.
      Unless/until they get suddenly ammended, which at this point, I wouldn't want
      to wager on.

    15. Re:hacky by marcosdumay · · Score: 2

      Yep, because those DNS servers that refused to reply NXDOMAIN will totally send you that IP code for the domains they don't know.

      I mean, now it's a secret code, not some boring documented answer type. Nobody will hijack it.

  2. emergency response options by Anonymous Coward · · Score: 4, Insightful

    In addition the report recommends emergency response options, which will be employed only in situations "where there is a reasonable belief that the DNS namespace collision presents a clear and present danger to human life".

    In other words, the DNS will be used for political oppression.

  3. Re:resolv.conf by Anonymous Coward · · Score: 2, Funny

    I'm using MSDOS, you insensitive clod!

  4. Why bother? by fuzzyfuzzyfungus · · Score: 4, Insightful

    Surely something as visible, and rife with opportunity for outrageous comedies of error, as DNS namespace collisions can simply be allowed to work itself out, through the time tested, enjoyable(for spectators), and reliable methods of endless risible fuckups followed by stilted non-denials from people who should have known better and vicious mockery from everybody else? Have we lost all sense of tradition? Taste? Humor?

    (Perhaps more importantly: wouldn't it be neat if there were some sort of super cool, totally futuristic, security mechanism? One that used a secret number, that the server never told anyone, but still managed to prove that it knew, because number theory, instead of just relying on the URL being right? I bet that I'd have to go, like -25 years into the future to see a system that advanced...)

    1. Re:Why bother? by fuzzyfuzzyfungus · · Score: 2

      HELO is one of the words in the Language of The Unclean. He was probably freaked out enough at the mere implication that there are mailservers that are not Exchange Servers, lurking beyond the LAN, beyond the guiding light of NETBIOS; babbling their blasphemies across the vile chaos of TCP/IP. That you wanted him to take an innocent little Exchange server that knew only goodness and MAPI/RPC, and corrupt it, that's just fucked up. You probably got reported to the cyber police.

  5. STOP by WaffleMonster · · Score: 5, Insightful

    The proliferation of TLDs has no positive effect on the Internet community whatsoever short of enriching ICANN and it's seedy network of bottom feeders.

    Well ok say it helps scamming phishers and enables organizations to part with even larger sums of cash in any efforts to protect their brands.

    Lighting up names with a loopback address like this "127.0.53.53" garbage is about the level of crap we can come to expect from the total idiots at ICANN. If you need to associate an A record pick an address guaranteed to be black holed not one that causes machines to resolve to thyself... extraordinarily moronic...

    In my view DNS operators should take responsibility to prevent damage to their customers by not blindly delegating * to root zone operators. Only delegate known TLDs and require manual blessing of all operators before admitting any new TLDs.

    1. Re:STOP by Z00L00K · · Score: 2

      Or 255.255.255.255 - broadcast to the whole internet - get spammed by replies!

      --
      If builders built buildings the way programmers wrote programs, then the first woodpecker would destroy civilization.
    2. Re:STOP by thogard · · Score: 4, Funny

      I know a few people who have conspired to tell others that the nontraditional domains are like 1-900 phone numbers and when you use them, you will get a bill from your ISP.

    3. Re:STOP by Zero__Kelvin · · Score: 2

      255.255.255.255. isn't the address of "the whole internet". It is the network address for your local intranet only. No packets will make it beyond your ISP and in most setups they won't get that far (i.e. with a wireless router, etc.)

      --
      Guns don't kill people; Physics kills people! - John Lithgow as Dick Solomon on Third Rock From The Sun
  6. Those wondering why 53.53 by hcs_$reboot · · Score: 4, Informative

    53 is usually the port number from which DNS servers answer DN requests (usually UDP).

    --
    Slashdot, fix the reply notifications... You won't get away with it...
    1. Re:Those wondering why 53.53 by davidhoude · · Score: 3, Funny

      What about those of us just wondering Why?

    2. Re:Those wondering why 53.53 by hcs_$reboot · · Score: 4, Informative

      TFA is confusing. The way I understand it is adding a TLD like '.home' may have some wrongly configured systems resolve something.home from the newly 'home' zone made available from the Internet DNS, instead of a local/intranet resolution. In order to help sysadmins to catch inappropriate Internet resolution of such TLD (in case that FQDN doesn't exist, I guess since not in TFA) is to return the 127.0.53.53 address, a particular loop-back address that allows particular settings to be implemented in order to log/show the user that the intranet domain is currently not available., e.g. for a user connected outside the company (guess 2).

      --
      Slashdot, fix the reply notifications... You won't get away with it...
  7. Re:Obsolete by Jesrad · · Score: 2

    Or maybe you don't understand this other AC's point ?

    For example, combining the addressing into the naming method, instead of externally tying 4-byte of IPv4 adressing with host/domain names with a ad-hoc protocol. See IPv6's capability to have addresses made of letters, and push it a little further ? Then maybe even nest some routing hints into that data. Eck, include some multicasting capability at that point too, if you can. Once you start reconsidering the whole IP addressing and routing, surely there are a few better ways to name and address machines and route data to those addresses, which would make more sense at the current scale and form of the Internet. Might as well question the principle of maintaining a shared namespace in the first place instead of letting nodes make up their own (and sharing these namespaces, or fractions of those namespaces, between each other), too.

    --
    Maybe we deserve this world ?
  8. When greed breaks stuff by trifish · · Score: 2

    All the people who warned them that they will cause permanent micro- and macro- disasters all over the world have been ignored. Due to greed. Let them be proud of their achievement.

  9. IPv6 should have been entrenched before TLD prolif by unixisc · · Score: 2

    It was always known that IPv4 was running short, and given that, I blame ICANN for proliferating TLDs before IPv6 got well adapted, entrenched & established.

    This is different from the question of whether there should be a gazillion TLDs worldwide (I disagree w/ the idea, but let's allow that for the sake of this discussion). Now, as it is, there are unlimited names and ways that websites can be formed, and to make things worse, TLDs are also mushrooming. So one needs an addressing scheme that could mathematically do the best job @ accommodating it.

    The only Layer 3 protocol that I can think of that would achieve this is IPv6. Before that gets universally implemented and established, what was ICANN thinking laying out TLDs nilly willy? Result of that is more pressure on IPv4. Let's face it - IPv4 has hit its limit already. We had that discussion the other day of how it's not run out in North America, but once that happens this year, things will only get uglier: multiple levels of NAT would make it a de facto Layer 4 or above communication. The only way to preserve Layer 3 is IPv6, which seems to have enough for everybody.

    Only good thing about this issue - if it forces the acceleration of adaption of IPv6 across the board - from infrastructure to last mile.

  10. Re:Obsolete by DarwinSurvivor · · Score: 3, Informative

    See IPv6's capability to have addresses made of letters, and push it a little further?

    You mean hex? That's just the way you type it, it has NOTHING to do with the actual packets. For instance, slashdot's IP (216.34.181.45) could just as easily be written as "d8.22.b5.2d", or even "d822:b52d".

    We just switched from decimal to hexidecimal for IPv6 notation because the addresses are so much longer now (IPv4 is up to 15 characters in decimal, IPv6 would be up to 63 characters if we used decimal (only 39 in quad-character hex).

  11. Re:resolv.conf by rvw · · Score: 2

    wattcp has been around for ages. Like, seriously, where have you been?

    http://www.vogons.org/viewtopi...

    He clearly needs to reconfigure his extended memory.

  12. 127.0.53.53.... why not 127.0.42.42? by Uzull · · Score: 4, Funny

    >ping answer.to.the.ultimate.question.of.life.the.universe.and.everything
    Pinging 127.0.42.42 with 32 bytes of data:
    Reply from 127.0.42.42: bytes=32 time=2ms TTL=249
    Reply from 127.0.42.42: bytes=32 time1ms TTL=249
    Reply from 127.0.42.42: bytes=32 time=1ms TTL=249
    Reply from 127.0.42.42: bytes=32 time1ms TTL=249

    Ping statistics for 127.0.42.42:
            Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
            Minimum = 0ms, Maximum = eternity, Average = ask Deep Thought

  13. Better yet, no new TLD by Anonymous Coward · · Score: 5, Insightful

    The best solution here is to simply stop this TLD madness because it provides no value at all. A new TLD can be created each time the UN recognizes a new country's existence, but for no other reason.

  14. Yay, applied spearfishing! by Opportunist · · Score: 2

    Let's face it, the whole craze around the new TLDs is a huge can of worms that serves no purpose (well, none but to make some people rich) while being a problem waiting to explode.

    Take Mike, the manager. Mike is a good manager (yes, they exist. No, really!) and he's pretty competent. Well, not in IT, of course, but in his field. In IT, he has to rely on his IT department (and, as I said he is a good manager, he actually does). Mike takes his laptop home, not to play but to actually do some meaningful work. So he creates a rather sensitive document and decides to save it. Now, in our current world, the internal name "documents.thecompanyheworksfor" won't resolve and the system falls back onto his documents folder. Which is pretty neat, because that's what gets sync'd automatically the next time Mike drops his laptop into the docking station at work. No fuss for him and also none for his IT department.

    In the new and improved world of TLDs at will, that server could well exist. And it does not necessarily belong to the company Mike works for.

    And that's just the tip of the ice berg, how about launching some program from a remote location? Undocked, it won't launch, and if it's just a script that provides network information, who cares? In our new world, it may well launch some malware.

    Now, of course one may say that IT should know that and IT should prevent it by ensuring that these things either resolve correctly or not at all. Fair enough. Now, who here can say that he knows of EVERY domain entry in his company's environment (provided you're not working for some mom'n'pop shop)? Who would put his job on the line for saying that there was never some self absorbed PHB who insisted in having the necessary rights to create what domains he thinks was funny without informing the IT department?

    TLDs are going to be a security nightmare. But hey, who am I to complain, it's job security for decades!

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  15. Re:is 10.0.0.0/8 really needed to be private? by squiggleslash · · Score: 5, Informative

    This isn't the problem. As I understand it (and I've read the article multiple times and it's early in the morning so I may be getting it wrong), the problem is this:

    1. ICANN is introducing new .TLDs (eg additions to .com, .net, .org) etc (we've known about this for a while, this isn't news.)
    2. Common practice on private networks is to create and use an unused .TLD for the private network, for example ".internal", ".corp", etc. For example, your employer might, right now, be calling your workstation "pc117.nyoffice.intranet"
    3. After analyzing global DNS hits, ICANN's researchers found that many/most of the new proposed .TLDs are already, apparently, in use by private entities for their private networks. You might ask how they know? Well, think in terms of a roaming laptop that upon connecting to a Wifi at Starbucks immediately, before the VPN is set up, tries to access "exchange-server.nyoffice.intranet". It makes the DNS lookup, and because the VPN isn't up yet, the DNS lookup goes to the global DNS servers, causing a bell to ring in ICANN's HQ (or something.)
    4. ICANN needs to "do something" to alert people with private networks to change their TLDs, or else those people will, unintentionally, find themselves locked out of sites with the new TLD. (Cynical PoV: and this will decrease the value of the .TLDs themselves. Kerching!)

    Now ICANN appears to believe that the best solution is to have the .TLDs return this odd 127.0.53.53 IP address instead of "domain not found" for all unknown domains, so that if a technie working for a company affected is roaming with their laptop, and they try to access "exchange-server.nyoffice.intranet" forgetting to put up the VPN, and ".intranet" is a new TLD, and they can't connect because the VPN isn't up, and they decide to check their Windows Event Logs to figure out why, then instead of "domain not found" which would immediately make them think "Oh wait, of course it can't be resolved, it's not a real domain and I'm not on the VPN", they'd see a weird IP address, and think "That's odd, let me Google that, there's obviously a problem with DNS."

    (I think they'd have more luck if they made it a pair of real IP addresses, one A, one AAAA, pointing at a website that tells the roaming user the answer that they can report to a sysadmin, rather than forcing a sysadmin to Google something they may never become aware of because they may not roam in the first place, but to be honest, even that sounds like a bad idea, I'd rather IP addresses not be returned for invalid domains to begin with.)

    --
    You are not alone. This is not normal. None of this is normal.
  16. Re:Obsolete by davidhoude · · Score: 2

    Maybe we should start hiding math equations in IPv4 addresses since they use numbers.

  17. I'm sorry by tom229 · · Score: 2

    But if this happens on a corporate network, ever, your IT team is incompetent and needs to be replaced.

    --
    If it ain't broke, don't fix it.
  18. Re:is 10.0.0.0/8 really needed to be private? by i.r.id10t · · Score: 3, Interesting

    So... what you are saying is that ICANN/IANA should've done something similar for names that has been done for the various "private" "non-routable" ip address pools (10.x.x.x, 192.168.x.x, etc) have done since The Beginning... there needed to be some TLD that would only work for local networks and queries.

    Of course, since that didn't happen all those years ago admins and amatures (and amature admins even) have been using a random mess of things, usually done by trying to ping or get a nslookup for some hopefully imaginary TLD and when it works (or rather, returns a NXDOMAIN error) they assume they can use it locally without repurcussion.

    Which means there are tens, hundreds, or maybe thousands (or more!) "fake" TLDs in use out there, some hard coded into applications that are no longer supported, etc. but are still in use. Which means to try and fix it now would be pretty much near impossible.

    --
    Don't blame me, I voted for Kodos
  19. Internal TLD? by PPH · · Score: 2

    Back when I used to work for Boeing, our internal TLD was .com. Anything looking for a .boeing .com domain would be resolved via our internal DNS system. All other .com (and any other TLDs) were forwarded to the public DNS services through a firewall.

    Were someone to take their laptop out of the company, .boeing.com requests would be resolved via their external DNS service. And they could deal with erroneous requests for internal services in a number of ways. Deny then, or divert them to some sort of error handling service (web page: "Aren't you supposed to be at work right now?") Hand them over to some sort of VPN login service or other firewall portal. Or obfuscate the response, keeping people outside from probing around and guessing at the internal company network structure.

    It all worked and it handled everything secure within the companies systems.

    --
    Have gnu, will travel.
  20. By being an ISP by tepples · · Score: 2

    By being an ISP and insisting that new residential Internet customers configure their modem through an EXE. This EXE ends up installing "ComWarner Connection Agent" that listens on localhost:80 and serves up 302 redirections to whatever shite-finder service paid ComWarner for ads.