<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.6.2 (Ruby 3.0.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-chroboczek-int-v4-via-v6-00" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.3 -->
  <front>
    <title abbrev="v4-via-v6">IPv4 routes with an IPv6 next hop</title>
    <seriesInfo name="Internet-Draft" value="draft-chroboczek-int-v4-via-v6-00"/>
    <author fullname="Juliusz Chroboczek">
      <organization>IRIF, University of Paris</organization>
      <address>
        <postal>
          <street>Case 7014</street>
          <street>75205 Paris Cedex 13</street>
          <street>France</street>
        </postal>
        <email>jch@irif.fr</email>
      </address>
    </author>
    <author initials="W." surname="Kumari" fullname="Warren Kumari">
      <organization>Google, LLC</organization>
      <address>
        <email>warren@kumari.net</email>
      </address>
    </author>
    <author initials="T." surname="Høiland-Jørgensen" fullname="Toke Høiland-Jørgensen">
      <organization/>
      <address>
        <email>toke@toke.dk</email>
      </address>
    </author>
    <date year="2022" month="March" day="07"/>
    <area>Internet Engineering Steering Group</area>
    <workgroup>Internet Area</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>We propose "v4-via-v6" routing, a technique that uses IPv6 next-hop
addresses for routing IPv4 packets, thus making it possible to route IPv4
packets across a network where routers have not been assigned IPv4
addresses.  We describe the technique, and discuss its operational
implications.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://wkumari.github.io/draft-chroboczek-int-v4-via-v6/draft-chroboczek-int-v4-via-v6.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-chroboczek-int-v4-via-v6/"/>.
      </t>
      <t>
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/wkumari/draft-chroboczek-int-v4-via-v6"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>The dominant form of routing in the Internet is next-hop routing, where
a routing protocol constructs a routing table which is used by
a forwarding process to forward packets.  The routing table is a data
structure that maps network prefixes in a given family (IPv4 or IPv6) to
next hops, pairs of an outgoing interface and a neighbor's network
address, for example:</t>
      <artwork><![CDATA[
    destination                      next hop
  2001:db8:0:1::/64               eth0, fe80::1234:5678
  203.0.113.0/24                  eth0, 192.0.2.1
]]></artwork>
      <t>When a packet is routed according to a given routing table entry, the
forwarding plane uses a neighbor discovery protocol (the Neighbor
Discovery protocol (ND) <xref target="rfc4861"/> in the case of IPv6, the Address
Resolution Protocol (ARP) <xref target="rfc0826"/> in the case of IPv4) to map the
next-hop address to a link-layer address (a "MAC address"), which is then
used to construct the link-layer frames that encapsulate forwarded
packets.</t>
      <t>It is apparent from the description above that there is no fundamental
reason why the destination prefix and the next-hop address should be in
the same address family: there is nothing preventing an IPv6 packet from
being routed through a next hop with an IPv4 address (in which case the
next hop's MAC address will be obtained using ARP), or, conversely, an
IPv4 packet from being routed through a next hop with an IPv6 address.
(In fact, it is even possible to store link-layer addresses directly in
the next-hop entry of the routing table, thus avoiding the use of an
address resolution protocol altogether, which is commonly done in networks
using the OSI protocol suite).</t>
      <t>The case of routing IPv4 packets through an IPv6 next hop is
particularly interesting, since it makes it possible to build
networks that have no IPv4 addresses except at the edges and still
provide IPv4 connectivity to edge hosts.  In addition, since an IPv6
next hop can use a link-local address that is autonomously
configured, the use of such routes enables a mode of operation where
the network core has no statically assigned IP addresses of either
family, which significantly reduces the amount of manual
configuration required.  (See also <xref target="rfc7404"/> for a discussion of the
issues involved with such an approach.)</t>
      <t>We call a route towards an IPv4 prefix that uses an IPv6 next hop a
"v4-via-v6" route.</t>
      <t>This document discusses the protocol design and operations implications
of such routes and is designed to be used as a reference for future
documents.</t>
      <t>{ Editor note, to be removed before publication. This document is heavily based
on draft-ietf-babel-v4viav6. When draft-ietf-babel-v4viav6 was
going through IESG eval, Warren raised concerns that something this
fundamental deserved to be documented in a separate, standalone document, so
that it can be more fully discussed, and, more importantly, referenced
cleanly in the future. }</t>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
    </section>
    <section anchor="operation">
      <name>Operation</name>
      <t>Next-hop routing is implemented by two separate components, the routing
protocol and the forwarding plane, that communicate through a shared
data structure, the routing table.</t>
      <section anchor="structure-of-the-routing-table">
        <name>Structure of the routing table</name>
        <t>The routing table is a data structure that maps address prefixes to
next-hops, pairs of the form (interface, address).  In traditional
next-hop routing, the routing table maps IPv4 prefixes to IPv4 next hops,
and IPv6 addresses to IPv6 next hops.  With v4-via-v6 routing, the routing
table is extended so that an IPv4 prefix may map to either an IPv4 or an
IPv6 next hop.</t>
      </section>
      <section anchor="operation-of-the-forwarding-plane">
        <name>Operation of the forwarding plane</name>
        <t>The forwarding plane is the part of the routing implementation that is
executed for every forwarded packet.  As a packet arrives, the forwarding
plane consults the routing table, selects a single route matching the
packet, determines the next-hop address, and forwards the packet to the
next-hop address.</t>
        <t>With v4-via-v6 routing, the address family of the next-hop address is no
longer dermined by the address family of the prefix: since the routing
table may map an IPv4 prefix to either an IPv4 or an IPv6 next-hop, the
forwarding plane must be able to determine, on a per-packet basis, whether
the next-hop address is an IPv4 or an IPv6 address, and to use that
information in order to choose the right address resolution protocol to
use (ARP for IP4, ND for IPv6).</t>
      </section>
      <section anchor="operation-of-routing-protocols">
        <name>Operation of routing protocols</name>
        <t>The routing protocol is the part of the routing implementation that is
executed asynchronously from the forwarding plane, and whose role is to
build the routing table.  Since v4-via-v6 routing is a generalisation of
traditional next-hop routing, v4-via-v6 can interoperate with existing
routing protocols: a traditional routing protocol produces a traditional
next-hop routing table, which can be used by an implementation supporting
v4-via-v6 routing.</t>
        <t>However, in order to use the additional flexibility provided by v4-via-v6
routing, routing protocols will need to be extended with the ability to
populate the routing table with v4-via-v6 routes when an IPv4 address is
not available or when the available IPv4 addresses are not suitable for
use as a next-hop (e.g., not stable enough).</t>
        <section anchor="distance-vector-routing-protocols">
          <name>Distance-vector routing protocols</name>
        </section>
        <section anchor="link-state-routing-protocols">
          <name>Link-state routing protocols</name>
        </section>
      </section>
    </section>
    <section anchor="icmp-considerations">
      <name>ICMP Considerations</name>
      <t>The Internet Control Message Protocol (ICMPv4, or simply ICMP)
<xref target="rfc0792"/> is a protocol related to IPv4 that is primarily used to
carry diagnostic and debugging information.  ICMPv4 packets may be
originated by end hosts (e.g., the "destination unreachable, port
unreachable" ICMPv4 packet), but they may also be originated by
intermediate routers (e.g., most other kinds of "destination
unreachable" packets).</t>
      <t>Some protocols deployed in the Internet rely on ICMPv4 packets sent
by intermediate routers.  Most notably, path MTU Discovery (PMTUd)
<xref target="rfc1191"/> is an algorithm executed by end hosts to discover the
maximum packet size that a route is able to carry.  While there exist
variants of PMTUd that are purely end-to-end <xref target="rfc4821"/>, the variant
most commonly deployed in the Internet has a hard dependency on
ICMPv4 packets originated by intermediate routers: if intermediate
routers are unable to send ICMPv4 packets, PMTUd may lead to
persistent black-holing of IPv4 traffic.</t>
      <t>Due to this kind of dependency, every router that is able to
forward IPv4 traffic <bcp14>SHOULD</bcp14> be able originate ICMPv4 traffic.  Since
the extension described in this document enables routers to forward
IPv4 traffic received over an interface that has not been assigned an
IPv4 address, a router implementing this extension <bcp14>MUST</bcp14> be able to
originate ICMPv4 packets even when the outgoing interface has not
been assigned an IPv4 address.</t>
      <t>In such a situation, if the router has an interface that has been
assigned an IPv4 address (other than the loopback address), or if an
IPv4 address has been assigned to the router itself (to the "loopback
interface"), then that IPv4 address may be used as the source of
originated ICMPv4 packets.  If no IPv4 address is available, the
router could use the experimental mechanism described in Requirement
R-22 of Section 4.8 <xref target="rfc7600"/>, which consists of using the dummy
address 192.0.0.8 as the source address of originated ICMPv4 packets.
Note however that using the same address on multiple routers may
hamper debugging and fault isolation, e.g., when using the
"traceroute" utility.</t>
      <t>{Editor note: It would be surprising to many operators to see something like:</t>
      <artwork><![CDATA[
> $ traceroute -n 8.8.8.8
traceroute to 8.8.8.8 (8.8.8.8), 64 hops max, 52 byte packets
 1  192.168.0.1  1.894 ms  1.953 ms  1.463 ms
 2  192.0.0.8  9.012 ms  8.852 ms  12.211 ms
 3  192.0.0.8  8.445 ms  9.426 ms  9.781 ms
 4  192.0.0.8  9.984 ms  10.282 ms  10.763 ms
 5  192.0.0.8  13.994 ms  13.031 ms  12.948 ms
 6  192.0.0.8  27.502 ms  26.895 ms
 7  8.8.8.8  26.509 ms
]]></artwork>
      <t>Is this a problem though? If this becomes common practice, will operators
just come to understand that the repeated 192.0.0.8 is not actually a looping
packet, but rather that the packet is (probably!) making forward progress?
What if it goes:
<tt>192.168.0.1 -&gt; 192.0.0.8 -&gt; 10.10.10.10 -&gt; 192.0.0.8 -&gt; 172.16.14.2 -&gt; dest?</tt>
}</t>
      <t>{ Editor note / question:
192.0.0.8 is assigned in the <xref target="IANA-IPV4-REGISTRY"/> as the "IPv4 dummy address".
It may be used as a Source Address, and was requested in <xref target="rfc7600"/> to be used
as the IPv4 source address when synthesizing an ICMPv4 packet to mirror an
ICMPv6 error message.  This is all fine and good - but, 192.0.0.0/24 is
commonly considered a bogon or martian</t>
      <t>Example (from a Juniper router):</t>
      <artwork><![CDATA[
wkumari@rtr2.pao> show route martians

inet.0:
             0.0.0.0/0 exact -- allowed
             0.0.0.0/8 orlonger -- disallowed
             127.0.0.0/8 orlonger -- disallowed
             192.0.0.0/24 orlonger -- disallowed
             240.0.0.0/4 orlonger -- disallowed
             224.0.0.0/4 exact -- disallowed
             224.0.0.0/24 exact -- disallowed
]]></artwork>
      <t>This means that these packets are likely to be filtered in many places, and
so ICMP packets with this source address are likely to be dropped. Is this a
major issue? Would requesting another address be a better solution? Would it help? If it were to be allocated from some more global pool, it would still
likely require "magic" to allow it to pass BCP38 filters.
}</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The techniques described in this document make routing more flexible by
allowing IPv4 routes to propagate across a section of a network that has
only been assigned IPv6 addresses.  This additional flexibility might
invalidate otherwise reasonable assumptions made by network
administrators, which could potentially cause security issues.</t>
      <t>For example, if an island of IPv4-only hosts is separated from the IPv4
Internet by routers that have not been assigned IPv4 addresses, a network
administrator might reasonably assume that the IPv4-only hosts are
unreachable from the IPv4 Internet.  This assumption is broken if the
intermediary routers implement v4-via-v6 routing, which might make the
IPv4-only hosts reachable from the IPv4 Internet.  If this is not
desirable, then the network administrator must filter out the undesirable
traffic in the forwarding plane by implementing suitable packet filtering
rules.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="rfc7600">
          <front>
            <title>IPv4 Residual Deployment via IPv6 - A Stateless Solution (4rd)</title>
            <author fullname="R. Despres" initials="R." surname="Despres">
              <organization/>
            </author>
            <author fullname="S. Jiang" initials="S." role="editor" surname="Jiang">
              <organization/>
            </author>
            <author fullname="R. Penno" initials="R." surname="Penno">
              <organization/>
            </author>
            <author fullname="Y. Lee" initials="Y." surname="Lee">
              <organization/>
            </author>
            <author fullname="G. Chen" initials="G." surname="Chen">
              <organization/>
            </author>
            <author fullname="M. Chen" initials="M." surname="Chen">
              <organization/>
            </author>
            <date month="July" year="2015"/>
            <abstract>
              <t>This document specifies a stateless solution for service providers to progressively deploy IPv6-only network domains while still offering IPv4 service to customers.  The solution's distinctive properties are that TCP/UDP IPv4 packets are valid TCP/UDP IPv6 packets during domain traversal and that IPv4 fragmentation rules are fully preserved end to end.  Each customer can be assigned one public IPv4 address, several public IPv4 addresses, or a shared address with a restricted port set.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7600"/>
          <seriesInfo name="DOI" value="10.17487/RFC7600"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="rfc4861">
          <front>
            <title>Neighbor Discovery for IP version 6 (IPv6)</title>
            <author fullname="T. Narten" initials="T." surname="Narten">
              <organization/>
            </author>
            <author fullname="E. Nordmark" initials="E." surname="Nordmark">
              <organization/>
            </author>
            <author fullname="W. Simpson" initials="W." surname="Simpson">
              <organization/>
            </author>
            <author fullname="H. Soliman" initials="H." surname="Soliman">
              <organization/>
            </author>
            <date month="September" year="2007"/>
            <abstract>
              <t>This document specifies the Neighbor Discovery protocol for IP Version 6.  IPv6 nodes on the same link use Neighbor Discovery to discover each other's presence, to determine each other's link-layer addresses, to find routers, and to maintain reachability information about the paths to active neighbors.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4861"/>
          <seriesInfo name="DOI" value="10.17487/RFC4861"/>
        </reference>
        <reference anchor="rfc0826">
          <front>
            <title>An Ethernet Address Resolution Protocol: Or Converting Network Protocol Addresses to 48.bit Ethernet Address for Transmission on Ethernet Hardware</title>
            <author fullname="D. Plummer" initials="D." surname="Plummer">
              <organization/>
            </author>
            <date month="November" year="1982"/>
            <abstract>
              <t>The purpose of this RFC is to present a method of Converting Protocol Addresses (e.g., IP addresses) to Local Network Addresses (e.g., Ethernet addresses).  This is an issue of general concern in the ARPA Internet Community at this time.  The method proposed here is presented for your consideration and comment.  This is not the specification of an Internet Standard.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="37"/>
          <seriesInfo name="RFC" value="826"/>
          <seriesInfo name="DOI" value="10.17487/RFC0826"/>
        </reference>
        <reference anchor="rfc7404">
          <front>
            <title>Using Only Link-Local Addressing inside an IPv6 Network</title>
            <author fullname="M. Behringer" initials="M." surname="Behringer">
              <organization/>
            </author>
            <author fullname="E. Vyncke" initials="E." surname="Vyncke">
              <organization/>
            </author>
            <date month="November" year="2014"/>
            <abstract>
              <t>In an IPv6 network, it is possible to use only link-local addresses on infrastructure links between routers.  This document discusses the advantages and disadvantages of this approach to facilitate the decision process for a given network.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7404"/>
          <seriesInfo name="DOI" value="10.17487/RFC7404"/>
        </reference>
        <reference anchor="rfc0792">
          <front>
            <title>Internet Control Message Protocol</title>
            <author fullname="J. Postel" initials="J." surname="Postel">
              <organization/>
            </author>
            <date month="September" year="1981"/>
          </front>
          <seriesInfo name="STD" value="5"/>
          <seriesInfo name="RFC" value="792"/>
          <seriesInfo name="DOI" value="10.17487/RFC0792"/>
        </reference>
        <reference anchor="rfc1191">
          <front>
            <title>Path MTU discovery</title>
            <author fullname="J.C. Mogul" initials="J.C." surname="Mogul">
              <organization/>
            </author>
            <author fullname="S.E. Deering" initials="S.E." surname="Deering">
              <organization/>
            </author>
            <date month="November" year="1990"/>
            <abstract>
              <t>This memo describes a technique for dynamically discovering the maximum transmission unit (MTU) of an arbitrary internet path.  It specifies a small change to the way routers generate one type of ICMP message.  For a path that passes through a router that has not been so changed, this technique might not discover the correct Path MTU, but it will always choose a Path MTU as accurate as, and in many cases more accurate than, the Path MTU that would be chosen by current practice.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="1191"/>
          <seriesInfo name="DOI" value="10.17487/RFC1191"/>
        </reference>
        <reference anchor="rfc4821">
          <front>
            <title>Packetization Layer Path MTU Discovery</title>
            <author fullname="M. Mathis" initials="M." surname="Mathis">
              <organization/>
            </author>
            <author fullname="J. Heffner" initials="J." surname="Heffner">
              <organization/>
            </author>
            <date month="March" year="2007"/>
            <abstract>
              <t>This document describes a robust method for Path MTU Discovery (PMTUD) that relies on TCP or some other Packetization Layer to probe an Internet path with progressively larger packets.  This method is described as an extension to RFC 1191 and RFC 1981, which specify ICMP-based Path MTU Discovery for IP versions 4 and 6, respectively.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4821"/>
          <seriesInfo name="DOI" value="10.17487/RFC4821"/>
        </reference>
        <reference anchor="IANA-IPV4-REGISTRY">
          <front>
            <title>IANA IPv4 Address Registry</title>
            <author>
              <organization/>
            </author>
            <date/>
          </front>
          <seriesInfo name="Web" value="https://www.iana.org/assignments/iana-ipv4-special-registry/"/>
        </reference>
      </references>
    </references>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>TODO acknowledge.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
D5cq7TE5MAAA

-->

</rfc>
