Skip to main content

ACME IP Identifier Validation Extension
draft-ietf-acme-ip-02

The information below is for an old version of the document.
Document Type
This is an older version of an Internet-Draft that was ultimately published as RFC 8738.
Author Roland Bracewell Shoemaker
Last updated 2018-07-25 (Latest revision 2018-05-18)
RFC stream Internet Engineering Task Force (IETF)
Formats
Reviews
Additional resources Mailing list discussion
Stream WG state In WG Last Call
Document shepherd (None)
IESG IESG state Became RFC 8738 (Proposed Standard)
Consensus boilerplate Unknown
Telechat date (None)
Responsible AD (None)
Send notices to (None)
draft-ietf-acme-ip-02
ACME Working Group                                          R. Shoemaker
Internet-Draft                                                      ISRG
Intended status: Standards Track                            May 18, 2018
Expires: November 19, 2018

                ACME IP Identifier Validation Extension
                         draft-ietf-acme-ip-02

Abstract

   This document specifies identifiers and challenges required to enable
   the Automated Certificate Management Environment (ACME) to issue
   certificates for IP addresses.

Status of This Memo

   This Internet-Draft is submitted in full conformance with the
   provisions of BCP 78 and BCP 79.

   Internet-Drafts are working documents of the Internet Engineering
   Task Force (IETF).  Note that other groups may also distribute
   working documents as Internet-Drafts.  The list of current Internet-
   Drafts is at https://datatracker.ietf.org/drafts/current/.

   Internet-Drafts are draft documents valid for a maximum of six months
   and may be updated, replaced, or obsoleted by other documents at any
   time.  It is inappropriate to use Internet-Drafts as reference
   material or to cite them other than as "work in progress."

   This Internet-Draft will expire on November 19, 2018.

Copyright Notice

   Copyright (c) 2018 IETF Trust and the persons identified as the
   document authors.  All rights reserved.

   This document is subject to BCP 78 and the IETF Trust's Legal
   Provisions Relating to IETF Documents
   (https://trustee.ietf.org/license-info) in effect on the date of
   publication of this document.  Please review these documents
   carefully, as they describe your rights and restrictions with respect
   to this document.  Code Components extracted from this document must
   include Simplified BSD License text as described in Section 4.e of
   the Trust Legal Provisions and are provided without warranty as
   described in the Simplified BSD License.

Shoemaker               Expires November 19, 2018               [Page 1]
Internet-Draft                   ACME-IP                        May 2018

Table of Contents

   1.  Introduction  . . . . . . . . . . . . . . . . . . . . . . . .   2
   2.  Terminology . . . . . . . . . . . . . . . . . . . . . . . . .   2
   3.  IP Identifier . . . . . . . . . . . . . . . . . . . . . . . .   2
   4.  Identifier Validation Challenges  . . . . . . . . . . . . . .   3
   5.  IANA Considerations . . . . . . . . . . . . . . . . . . . . .   3
     5.1.  Identifier Types  . . . . . . . . . . . . . . . . . . . .   3
     5.2.  Challenge Types . . . . . . . . . . . . . . . . . . . . .   3
   6.  Security Considerations . . . . . . . . . . . . . . . . . . .   3
   7.  Acknowledgments . . . . . . . . . . . . . . . . . . . . . . .   3
   8.  Normative References  . . . . . . . . . . . . . . . . . . . .   3
   Author's Address  . . . . . . . . . . . . . . . . . . . . . . . .   4

1.  Introduction

   The Automatic Certificate Management Environment (ACME)
   [I-D.ietf-acme-acme] only defines challenges for validating control
   of DNS host name identifiers which limits its use to being used for
   issuing certificates for DNS identifiers.  In order to allow
   validation of IPv4 and IPv6 identifiers for inclusion in X.509
   certificates this document specifies how challenges defined in the
   original ACME specification can be used to validate IP identifiers.

2.  Terminology

   In this document, the key words "MUST", "MUST NOT", "REQUIRED",
   "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY",
   and "OPTIONAL" are to be interpreted as described in BCP 14,
   [RFC2119].

3.  IP Identifier

   [I-D.ietf-acme-acme] only defines the identifier type "dns" which is
   used to refer to fully qualified domain names.  If a ACME server
   wishes to request proof that a user controls a IPv4 or IPv6 address
   it MUST create an authorization with the identifier type "ip".  The
   value field of the identifier MUST contain the textual form of the
   address as defined in [RFC1123] Section 2.1 for IPv4 and in [RFC4291]
   Section 2.2 for IPv6.

   An identifier for the IPv6 address 2001:db8::1 would be formatted
   like so:

   {"type": "ip", "value": "2001:db8::1"}

Shoemaker               Expires November 19, 2018               [Page 2]
Internet-Draft                   ACME-IP                        May 2018

4.  Identifier Validation Challenges

   IP identifiers MAY be used with the existing "http-01" and "tls-sni-
   02" challenges from [I-D.ietf-acme-acme] Sections 8.3 and 8.4
   respectively.  To use IP identifiers with these challenges their
   initial DNS resolution step MUST be skipped and the IP address used
   for validation MUST be the value of the identifier.  For the "http-
   01" challenge the Host header MUST be set to the IP address being
   used for validation per [RFC7230].

   The existing "dns-01" challenge MUST NOT be used to validate IP
   identifiers.

5.  IANA Considerations

5.1.  Identifier Types

   Adds a new type to the Identifier list defined in Section 9.7.5 of
   [I-D.ietf-acme-acme] with the label "ip" and reference I-D.ietf-acme-
   ip.

5.2.  Challenge Types

   Add the value "ip" to the identifier type column for the "http-01"
   and "tls-sni-02" challenges.

6.  Security Considerations

   Given the often short delegation periods for IP addresses provided by
   various service providers CAs MAY want to impose shorter lifetimes
   for certificates which contain IP identifiers.  They MAY also impose
   restrictions on IP identifiers which are in CIDRs known to be
   assigned to service providers who dynamically assign addresses to
   users for indeterminate periods of time.

7.  Acknowledgments

   The author would like to thank those who contributed to this document
   and offered editorial and technical input, especially Jacob Hoffman-
   Andrews and Daniel McCarney.

8.  Normative References

   [FIPS180-4]
              Department of Commerce, National., "NIST FIPS 180-4,
              Secure Hash Standard", March 2012,
              <http://csrc.nist.gov/publications/fips/fips180-4/
              fips-180-4.pdf>.

Shoemaker               Expires November 19, 2018               [Page 3]
Internet-Draft                   ACME-IP                        May 2018

   [I-D.ietf-acme-acme]
              Barnes, R., Hoffman-Andrews, J., McCarney, D., and J.
              Kasten, "Automatic Certificate Management Environment
              (ACME)", draft-ietf-acme-acme-12 (work in progress), April
              2018.

   [RFC1034]  Mockapetris, P., "Domain names - concepts and facilities",
              STD 13, RFC 1034, DOI 10.17487/RFC1034, November 1987,
              <https://www.rfc-editor.org/info/rfc1034>.

   [RFC1123]  Braden, R., Ed., "Requirements for Internet Hosts -
              Application and Support", STD 3, RFC 1123,
              DOI 10.17487/RFC1123, October 1989,
              <https://www.rfc-editor.org/info/rfc1123>.

   [RFC2119]  Bradner, S., "Key words for use in RFCs to Indicate
              Requirement Levels", BCP 14, RFC 2119,
              DOI 10.17487/RFC2119, March 1997,
              <https://www.rfc-editor.org/info/rfc2119>.

   [RFC3596]  Thomson, S., Huitema, C., Ksinant, V., and M. Souissi,
              "DNS Extensions to Support IP Version 6", STD 88,
              RFC 3596, DOI 10.17487/RFC3596, October 2003,
              <https://www.rfc-editor.org/info/rfc3596>.

   [RFC4291]  Hinden, R. and S. Deering, "IP Version 6 Addressing
              Architecture", RFC 4291, DOI 10.17487/RFC4291, February
              2006, <https://www.rfc-editor.org/info/rfc4291>.

   [RFC4648]  Josefsson, S., "The Base16, Base32, and Base64 Data
              Encodings", RFC 4648, DOI 10.17487/RFC4648, October 2006,
              <https://www.rfc-editor.org/info/rfc4648>.

   [RFC7230]  Fielding, R., Ed. and J. Reschke, Ed., "Hypertext Transfer
              Protocol (HTTP/1.1): Message Syntax and Routing",
              RFC 7230, DOI 10.17487/RFC7230, June 2014,
              <https://www.rfc-editor.org/info/rfc7230>.

Author's Address

   Roland Bracewell Shoemaker
   Internet Security Research Group

   Email: roland@letsencrypt.org

Shoemaker               Expires November 19, 2018               [Page 4]