<?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-rfc version 1.7.29 (Ruby 3.4.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-intarea-v4-via-v6-03" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.30.0 -->
  <front>
    <title abbrev="v4-via-v6">IPv4 routes with an IPv6 next hop</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-intarea-v4-via-v6-03"/>
    <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>Red Hat</organization>
      <address>
        <email>toke@toke.dk</email>
      </address>
    </author>
    <date year="2025" month="August" day="29"/>
    <area>Internet</area>
    <workgroup>Internet Area Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 68?>

<t>This document proposes "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.
The document both describes the technique, as well as discussing 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-intarea-v4-via-v6/draft-ietf-intarea-v4-via-v6.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-intarea-v4-via-v6/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Internet Area Working Group Working Group mailing list (<eref target="mailto:int-area@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/int-area/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/int-area/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/wkumari/draft-chroboczek-intarea-v4-via-v6"/>.</t>
    </note>
  </front>
  <middle>
    <?line 76?>

<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>This document focuses on the specific case of routing IPv4 packets through
an IPv6 next-hop.  This case 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.  V4-via-v6 routing is not restricted to routers, and
could usefully be applied to hosts, although doing so would require
solving the issue of host configuration, for example by extending either
DHCPv4 or DHCPv6 to publish an IPv4 default route with an IPv6 next hop.</t>
      <t><xref target="RFC8950"/> discusses advertising of IPv4 NLRI with a next-hop address that
belongs to the IPv6 protocol, but confines itself to how this is carried and
advertised in the BGP protocol. This document, on the other hand, discusses the
concept of v4-via-v6 routes independently of any specific routing protocol,
their design and operational considerations, and the implications of using
them.</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>
      <?line -18?>

</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 IPv6 or an
IPv4 next hop.</t>
        <t>Resolution may be recursive: the next-hop may itself be a prefix that
requires further resolution to map to the outgoing interface and L2
address.  V4-via-v6 routing does not prevent recursive resolution.</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, and forwards the packet through the outgoing interface to the
associated next-hop address.</t>
        <t>With v4-via-v6 routing, the address family of the next-hop address is no
longer determined 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, which
address resolution protocol (ARP for IPv4, ND for IPv6) to consult.</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 generalization 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 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.</t>
        <t>Some protocols already support the advertisement of IPv4 routes with an
IPv6 next-hop, including Babel <xref target="RFC8966"/> and BGP <xref target="RFC8950"/>.  Other
protocol advertise both IPv4 and IPv6 prefixes over a single neighbor;
these include:
  * Multi-Topology (MT) Routing in OSPF (<xref target="RFC4915"/>)
  * Multi-Topology (MT) Routing in IS-IS (<xref target="RFC5120"/>) While both of these
employ a common control plane, they use separate data planes, and
therefore don't implement v4-via-v6 routing.</t>
      </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>A router must therefore be able to generate ICMP Destination Unreachable
messages (<xref target="RFC1812"/> Section 5.2.7.1).  The source address of these
messages must be one of the addresses assigned to the outgoing interface;
if no such address has been assigned, then one of the other addresses
assigned to the router, known as the "router-id", must be used (<xref target="RFC1812"/>
Section 4.3.2.4).</t>
      <t>Routers implementing the mechanism described in this document do not need
to have any IPv4 addresses assigned to any of their interfaces, and RFC 1812
does not specify what happens if no router-id has been assigned.  If
a router does not have any IPv4 addresses assigned, the router <bcp14>MUST</bcp14> use
the dummy address 192.0.0.8 as the source address of outgoing ICMP packets
(<xref target="RFC7600"/>, Section 4.8, Requirement R-22).</t>
      <t>Using the dummy address as the source of ICMPv4 packet causes a number of
drawbacks:</t>
      <ul spacing="normal">
        <li>
          <t>using the same address on multiple routers may hamper debugging and
fault isolation, e.g., when using the "traceroute" utility (but see
{I-D.draft-ietf-intarea-extended-icmp-nodeid} for a possible solution
to this problem);</t>
        </li>
        <li>
          <t>packets originating from 192.0.0.8 might be considered as spoofed
traffic and dropped by firewalls at network boundaries.</t>
        </li>
      </ul>
      <t>For these reasons, even if a router performs v4-via-v6 routing on all
interfaces, it <bcp14>SHOULD</bcp14> be assigned at least one IPv4 address.</t>
    </section>
    <section anchor="implementation-status">
      <name>Implementation Status</name>
      <t>( This section to be removed before publication. )</t>
      <t>As this document does not really define a protocol, this implementation status
section is much less formal. Instead, it is being used as a place to list
implementations that are known to support this functionality, examples, notes,
etc. This information is provided as a guide to the reader, and is not intended
to be a complete list, nor endorsement, etc. If you know of an implementation
which is not listed, please let the authors know.</t>
      <section anchor="arista-eos">
        <name>Arista EOS</name>
        <t>Arista has supported static IPv4 routes with IPv6 nexthops since EOS-4.30.1.</t>
      </section>
      <section anchor="the-babel-routing-protocol">
        <name>The Babel routing protocol</name>
        <t>As noted above, this document is heavily based on RFC9229
(nee draft-ietf-babel-v4viav6), and this functionality is supported by babeld.</t>
        <t>Pasted below is email sent to the babel mailing list (archived
at https://mailarchive.ietf.org/arch/msg/babel/QtFi3F4TFfF7fXXlkHSpEnuT44Y/)</t>
        <t>A route across three IPv6-only nodes:</t>
        <artwork><![CDATA[
$ ip route show 10.0.0.2
10.0.0.2 via inet6 fe80::216:3eff:fe00:1 dev lxcbr0 proto babel onlink
]]></artwork>
        <t>Here's how it's logged by babeld:</t>
        <artwork><![CDATA[
10.0.0.2/32 from 0.0.0.0/0 metric 384 (384) refmetric 288 id
02:16:3e:ff:fe:9a:5e:22 seqno 36425 chan (255) age 15 via lxcbr0 neigh
fe80::216:3eff:fe00:1 (installed)
]]></artwork>
        <t>Traceroute is a little confusing:</t>
        <artwork><![CDATA[
$ traceroute 10.0.0.2
traceroute to 10.0.0.2 (10.0.0.2), 30 hops max, 60 byte packets
 1  192.0.0.8 (192.0.0.8)  0.079 ms  0.019 ms  0.014 ms
 2  192.0.0.8 (192.0.0.8)  0.040 ms  0.023 ms  0.042 ms
 3  192.0.0.8 (192.0.0.8)  0.061 ms  0.030 ms  0.030 ms
 4  10.0.0.2 (10.0.0.2)  0.060 ms  0.040 ms  0.039 ms
]]></artwork>
        <t>PMTUD works fine (thanks to Toke):</t>
        <artwork><![CDATA[
19:58:47.402871 IP 192.168.0.27.60046 > 10.0.0.2.22: Flags [.],\
seq 33:1481, ack 33, win 502, options [nop,nop,TS val 917354570\
ecr 1849974691], length 1448
19:58:47.402874 IP 192.168.0.27.60046 > 10.0.0.2.22: Flags [P.],\
seq 1481:1537, ack 33, win 502, options [nop,nop,TS val 917354570\
ecr 1849974691], length 56
19:58:47.402906 IP 192.0.0.8 > 192.168.0.27: ICMP 10.0.0.2 \
unreachable- need to frag (mtu 1420), length 556
19:58:47.402919 IP 10.0.0.2.22 > 192.168.0.27.60046: Flags [.],\
ack 33, win 509, options [nop,nop,TS val 1849974692 \
ecr 917354569,nop,nop,sac 1 {1481:1537}], length 0
19:58:47.402934 IP 192.168.0.27.60046 > 10.0.0.2.22: Flags [.], \
seq 33:1401, ack 33, win 502, options [nop,nop,TS val 917354570 \
ecr 1849974692], length 1368
]]></artwork>
        <t>-- Juliusz</t>
      </section>
      <section anchor="linux">
        <name>Linux</name>
        <t>Linux has supported v4-via-v6 routes since kernel version 5.2, released on
2019-07-07.</t>
        <section anchor="example">
          <name>Example:</name>
          <artwork><![CDATA[
rincewind ~ #
ip -4 r a 192.0.2.23/32 via inet6 2001:db8::2342

rincewind ~ # ip r s 192.0.2.23/32
192.0.2.23 via inet6 2001:db8::2342 dev wlp36s0.25
]]></artwork>
        </section>
      </section>
      <section anchor="mikrotik-routeros">
        <name>Mikrotik RouterOS</name>
        <t>Mikrotik RouterOS has supported v4-via-v6 routes since (at least) version
7.11beta2</t>
        <t>{Editor note: I'm not sure when support was added. I tested this in Version
7.11beta2, and it worked there, but I believe that this functionality has
existed for a while. I'll try to find out when it was added.}</t>
        <section anchor="example-1">
          <name>Example</name>
          <artwork><![CDATA[
[wkumari@Dulles-CCR] /ip/route> print
Flags: D - DYNAMIC; I - INACTIVE, A - ACTIVE; c - CONNECT, s - STATIC,
d -DHCP, v - VPN; H - HW-OFFLOADED
Columns: DST-ADDRESS, GATEWAY, DISTANCE
#      DST-ADDRESS       GATEWAY                             DISTANCE
0  As  192.0.2.0/24      fe80::201:5cff:feb2:1646%1_Comcast         1
]]></artwork>
        </section>
      </section>
      <section anchor="cisco-nx-os">
        <name>Cisco NX-OS</name>
        <t>Cisco NX-OS has supported v4-via-v6 routes "for more than 8 years"
  -- Krishnaswamy Ananthamurthy</t>
      </section>
    </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 anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-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"/>
            <author fullname="S. Jiang" initials="S." role="editor" surname="Jiang"/>
            <author fullname="R. Penno" initials="R." surname="Penno"/>
            <author fullname="Y. Lee" initials="Y." surname="Lee"/>
            <author fullname="G. Chen" initials="G." surname="Chen"/>
            <author fullname="M. Chen" initials="M." surname="Chen"/>
            <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="RFC1812">
          <front>
            <title>Requirements for IP Version 4 Routers</title>
            <author fullname="F. Baker" initials="F." role="editor" surname="Baker"/>
            <date month="June" year="1995"/>
            <abstract>
              <t>This memo defines and discusses requirements for devices that perform the network layer forwarding function of the Internet protocol suite. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="1812"/>
          <seriesInfo name="DOI" value="10.17487/RFC1812"/>
        </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"/>
            <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"/>
            <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 anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC0792">
          <front>
            <title>Internet Control Message Protocol</title>
            <author fullname="J. Postel" initials="J." surname="Postel"/>
            <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="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"/>
            <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="RFC1191">
          <front>
            <title>Path MTU discovery</title>
            <author fullname="J. Mogul" initials="J." surname="Mogul"/>
            <author fullname="S. Deering" initials="S." surname="Deering"/>
            <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"/>
            <author fullname="J. Heffner" initials="J." surname="Heffner"/>
            <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="RFC4861">
          <front>
            <title>Neighbor Discovery for IP version 6 (IPv6)</title>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <author fullname="E. Nordmark" initials="E." surname="Nordmark"/>
            <author fullname="W. Simpson" initials="W." surname="Simpson"/>
            <author fullname="H. Soliman" initials="H." surname="Soliman"/>
            <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="RFC4915">
          <front>
            <title>Multi-Topology (MT) Routing in OSPF</title>
            <author fullname="P. Psenak" initials="P." surname="Psenak"/>
            <author fullname="S. Mirtorabi" initials="S." surname="Mirtorabi"/>
            <author fullname="A. Roy" initials="A." surname="Roy"/>
            <author fullname="L. Nguyen" initials="L." surname="Nguyen"/>
            <author fullname="P. Pillay-Esnault" initials="P." surname="Pillay-Esnault"/>
            <date month="June" year="2007"/>
            <abstract>
              <t>This document describes an extension to Open Shortest Path First (OSPF) in order to define independent IP topologies called Multi- Topologies (MTs). The Multi-Topologies extension can be used for computing different paths for unicast traffic, multicast traffic, different classes of service based on flexible criteria, or an in- band network management topology.</t>
              <t>An optional extension to exclude selected links from the default topology is also described. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4915"/>
          <seriesInfo name="DOI" value="10.17487/RFC4915"/>
        </reference>
        <reference anchor="RFC5120">
          <front>
            <title>M-ISIS: Multi Topology (MT) Routing in Intermediate System to Intermediate Systems (IS-ISs)</title>
            <author fullname="T. Przygienda" initials="T." surname="Przygienda"/>
            <author fullname="N. Shen" initials="N." surname="Shen"/>
            <author fullname="N. Sheth" initials="N." surname="Sheth"/>
            <date month="February" year="2008"/>
            <abstract>
              <t>This document describes an optional mechanism within Intermediate System to Intermediate Systems (IS-ISs) used today by many ISPs for IGP routing within their clouds. This document describes how to run, within a single IS-IS domain, a set of independent IP topologies that we call Multi-Topologies (MTs). This MT extension can be used for a variety of purposes, such as an in-band management network "on top" of the original IGP topology, maintaining separate IGP routing domains for isolated multicast or IPv6 islands within the backbone, or forcing a subset of an address space to follow a different topology. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5120"/>
          <seriesInfo name="DOI" value="10.17487/RFC5120"/>
        </reference>
        <reference anchor="RFC7404">
          <front>
            <title>Using Only Link-Local Addressing inside an IPv6 Network</title>
            <author fullname="M. Behringer" initials="M." surname="Behringer"/>
            <author fullname="E. Vyncke" initials="E." surname="Vyncke"/>
            <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="RFC8950">
          <front>
            <title>Advertising IPv4 Network Layer Reachability Information (NLRI) with an IPv6 Next Hop</title>
            <author fullname="S. Litkowski" initials="S." surname="Litkowski"/>
            <author fullname="S. Agrawal" initials="S." surname="Agrawal"/>
            <author fullname="K. Ananthamurthy" initials="K." surname="Ananthamurthy"/>
            <author fullname="K. Patel" initials="K." surname="Patel"/>
            <date month="November" year="2020"/>
            <abstract>
              <t>Multiprotocol BGP (MP-BGP) specifies that the set of usable next-hop address families is determined by the Address Family Identifier (AFI) and the Subsequent Address Family Identifier (SAFI). The AFI/SAFI definitions for the IPv4 address family only have provisions for advertising a next-hop address that belongs to the IPv4 protocol when advertising IPv4 Network Layer Reachability Information (NLRI) or VPN-IPv4 NLRI.</t>
              <t>This document specifies the extensions necessary to allow the advertising of IPv4 NLRI or VPN-IPv4 NLRI with a next-hop address that belongs to the IPv6 protocol. This comprises an extension of the AFI/SAFI definitions to allow the address of the next hop for IPv4 NLRI or VPN-IPv4 NLRI to also belong to the IPv6 protocol, the encoding of the next hop to determine which of the protocols the address actually belongs to, and a BGP Capability allowing MP-BGP peers to dynamically discover whether they can exchange IPv4 NLRI and VPN-IPv4 NLRI with an IPv6 next hop. This document obsoletes RFC 5549.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8950"/>
          <seriesInfo name="DOI" value="10.17487/RFC8950"/>
        </reference>
        <reference anchor="RFC8966">
          <front>
            <title>The Babel Routing Protocol</title>
            <author fullname="J. Chroboczek" initials="J." surname="Chroboczek"/>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi"/>
            <date month="January" year="2021"/>
            <abstract>
              <t>Babel is a loop-avoiding, distance-vector routing protocol that is robust and efficient both in ordinary wired networks and in wireless mesh networks. This document describes the Babel routing protocol and obsoletes RFC 6126 and RFC 7557.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8966"/>
          <seriesInfo name="DOI" value="10.17487/RFC8966"/>
        </reference>
        <reference anchor="RFC9229">
          <front>
            <title>IPv4 Routes with an IPv6 Next Hop in the Babel Routing Protocol</title>
            <author fullname="J. Chroboczek" initials="J." surname="Chroboczek"/>
            <date month="May" year="2022"/>
            <abstract>
              <t>This document defines an extension to the Babel routing protocol that allows announcing routes to an IPv4 prefix with an IPv6 next hop, which makes it possible for IPv4 traffic to flow through interfaces that have not been assigned an IPv4 address.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9229"/>
          <seriesInfo name="DOI" value="10.17487/RFC9229"/>
        </reference>
        <reference anchor="I-D.draft-ietf-intarea-extended-icmp-nodeid">
          <front>
            <title>Adding Extensions to ICMP Errors for Originating Node Identification</title>
            <author fullname="Bill Fenner" initials="B." surname="Fenner">
              <organization>Arista Networks</organization>
            </author>
            <author fullname="Reji Thomas" initials="R." surname="Thomas">
              <organization>Arista Networks</organization>
            </author>
            <date day="19" month="August" year="2025"/>
            <abstract>
              <t>   RFC5837 describes a mechanism for Extending ICMP for Interface and
   Next-Hop Identification, which allows providing additional
   information in an ICMP error that helps identify interfaces
   participating in the path.  This is especially useful in environments
   where a given interface may not have a unique IP address to respond
   to, e.g., a traceroute.

   This document introduces a similar ICMP extension for Node
   Identification.  It allows providing a unique IP address and/or a
   textual name for the node, in the case where each node may not have a
   unique IP address (e.g., a deployment in which all interfaces have
   IPv6 addresses and all nexthops are IPv6 nexthops, even for IPv4
   routes).

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-intarea-extended-icmp-nodeid-04"/>
        </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>
    <?line 396?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>We are grateful to nnJoe Abley, Krishnaswamy Ananthamurthy, Bill Fenner,
Tobias Fiebig, John Gilmore, Bob Hinden, David Lamparter, Gyan Mishra, tom
petch, Herbie Robinson, Behcet Sarikaya, David Schinazi, Ole Troan, and
Éric Vyncke, for their helpful comments and suggestions on this document.
We are also indebted to the members of the Babel community for the
discussions that led to the creation of this document.</t>
    </section>
    <section numbered="false" anchor="changes">
      <name>Changes</name>
      <t>This section is to be removed before publication, and the primary change log is
the git repository. This is just a place to note some of the more substantive
changes.</t>
      <section numbered="false" anchor="version-00-01">
        <name>Version 00-01</name>
        <ul spacing="normal">
          <li>
            <t>Added note that this works just as well for IPv6 routes with an IPv4 next
hop. (Éric Vyncke)</t>
          </li>
          <li>
            <t>Cisco NX-OS has supported v4-via-v6 routes "for more than 8 years"
(Krishnaswamy Ananthamurthy)</t>
          </li>
          <li>
            <t>Mention recursive next hops, and that the next hop may be a prefix.
(Krishnaswamy Ananthamurthy)</t>
          </li>
          <li>
            <t>Hosts are routers too! (David Lamparter)</t>
          </li>
          <li>
            <t>Removed the claim that it's mainly a UI issue.</t>
          </li>
        </ul>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
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
pEiVfD22Jqwj/heQg96Yq0AAAA==

-->

</rfc>
