[Doh] Implementations

Stephane Bortzmeyer <bortzmeyer@nic.fr> Sun, 01 October 2017 12:08 UTC

Return-Path: <bortzmeyer@nic.fr>
X-Original-To: doh@ietfa.amsl.com
Delivered-To: doh@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 09E381348F7 for <doh@ietfa.amsl.com>; Sun, 1 Oct 2017 05:08:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: 0.8
X-Spam-Level:
X-Spam-Status: No, score=0.8 tagged_above=-999 required=5 tests=[BAYES_50=0.8] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id c4wCXtMeMsxe for <doh@ietfa.amsl.com>; Sun, 1 Oct 2017 05:08:09 -0700 (PDT)
Received: from mail.bortzmeyer.org (aetius.bortzmeyer.org [217.70.190.232]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EF2E31348F2 for <doh@ietf.org>; Sun, 1 Oct 2017 05:08:08 -0700 (PDT)
Received: by mail.bortzmeyer.org (Postfix, from userid 10) id 4789731D12; Sun, 1 Oct 2017 14:08:06 +0200 (CEST)
Received: by mail.sources.org (Postfix, from userid 1000) id BA6AB19000B; Sun, 1 Oct 2017 14:05:11 +0200 (CEST)
Date: Sun, 01 Oct 2017 14:05:11 +0200
From: Stephane Bortzmeyer <bortzmeyer@nic.fr>
To: doh@ietf.org
Message-ID: <20171001120511.gbu6izjoundhr7xr@sources.org>
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Disposition: inline
X-Transport: UUCP rules
X-Operating-System: Debian GNU/Linux 9.1
X-Charlie: Je suis Charlie
User-Agent: NeoMutt/20170113 (1.7.2)
Archived-At: <https://mailarchive.ietf.org/arch/msg/doh/wK6bZ8GwSnZLu-_h8g7DCP76V8A>
Subject: [Doh] Implementations
X-BeenThere: doh@ietf.org
X-Mailman-Version: 2.1.22
Precedence: list
List-Id: DNS Over HTTPS <doh.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/doh>, <mailto:doh-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/doh/>
List-Post: <mailto:doh@ietf.org>
List-Help: <mailto:doh-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/doh>, <mailto:doh-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 01 Oct 2017 12:08:11 -0000

What are the public implementations of the DNS-over-HTTPS concept? I
know Google's one:

% curl -s 'https://dns.google.com/resolve?name=ietf.org&type=MX' | jq . 
{
  "Status": 0,
  "TC": false,
  "RD": true,
  "RA": true,
  "AD": true,
  "CD": false,
  "Question": [
    {
      "name": "ietf.org.",
      "type": 15
    }
  ],
  "Answer": [
    {
      "name": "ietf.org.",
      "type": 15,
      "TTL": 700,
      "data": "0 mail.ietf.org."
    }
  ]
}

Or mine <http://www.bortzmeyer.org/dns-lg-usage.html>:

%  curl -s -H 'Accept: application/json' https://dns.bortzmeyer.org/ietf.org/MX
{
...
"AnswerSection": [
  {
   "MailExchanger": "mail.ietf.org.", 
   "Name": "ietf.org.", 
   "Type": "MX", 
   "Preference": 0, 
   "TTL": 1800
  }
 ], 
 "ReturnCode": "NOERROR", 
...

Any others?