<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.29 (Ruby 2.6.10) -->


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

]>


<rfc ipr="trust200902" docName="draft-kompella-teas-mpte-01" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="MPTE">Multipath Traffic Engineering</title>

    <author initials="K." surname="Kompella" fullname="Kireeti Kompella">
      <organization>Juniper Networks</organization>
      <address>
        <postal>
          <city>Sunnyvale</city>
          <region>California</region>
          <code>94089</code>
          <country>United States of America</country>
        </postal>
        <email>kireeti.ietf@gmail.com</email>
      </address>
    </author>
    <author initials="L." surname="Jalil" fullname="Luay Jalil">
      <organization>Verizon</organization>
      <address>
        <postal>
          <city>Richardson</city>
          <region>Texas</region>
          <code>75081</code>
          <country>United States of America</country>
        </postal>
        <email>luay.jalil@verizon.com</email>
      </address>
    </author>
    <author initials="M." surname="Khaddam" fullname="Mazen Khaddam">
      <organization>Cox Communications</organization>
      <address>
        <postal>
          <city>Atlanta</city>
          <region>Georgia</region>
          <code>30328</code>
          <country>United States of America</country>
        </postal>
        <email>mazen.khaddam@cox.com</email>
      </address>
    </author>
    <author initials="A." surname="Smith" fullname="Andy Smith">
      <organization>Oracle Cloud Infrastructure</organization>
      <address>
        <postal>
          <city>Austin</city>
          <region>Texas</region>
          <code>78741</code>
          <country>United States of America</country>
        </postal>
        <email>andy.j.smith@oracle.com</email>
      </address>
    </author>

    <date year="2025"/>

    <area>Routing</area>
    <workgroup>TEAS WG</workgroup>
    <keyword>multipath, traffic engineering</keyword>

    <abstract>


<?line 65?>

<t>Shortest path routing offers an easy-to-understand, easy-to-implement method of establishing loop-free connectivity in a network, but offers few other features. Equal-cost multipath (ECMP), a simple extension, uses multiple equal-cost paths between any two points in a network: at any node in a path (really, Directed Acyclic Graph), traffic can be (typically equally) load-balanced among the next hops. ECMP is easy to add on to shortest path routing, and offers a few more features, such as resiliency and load distribution, but the feature set is still quite limited.</t>

<t>Traffic Engineering (TE), on the other hand, offers a very rich toolkit for managing traffic flows and the paths they take in a network. A TE network can have link attributes such as bandwidth, colors, risk groups and alternate metrics. A TE path can use these attributes to include or avoid certain links, increase path diversity, manage bandwidth reservations, improve service experience, and offer protection paths. However, TE typically doesn't offer multipathing as the tunnels used to implement TE usually take a single path.</t>

<t>This memo proposes multipath traffic-engineering (MPTE), combining the best of ECMP and TE. The multipathing proposed here need not be strictly equal-cost, nor the load balancing equally weighted to each next hop. Moreover, the desired destination may be reachable via multiple egresses. The proposal includes a protocol for signaling MPTE paths using various types of tunnels, some of which are better suited to multipathing.</t>



    </abstract>



  </front>

  <middle>


<?line 73?>

<section anchor="intro"><name>Introduction</name>

<t>Operators managing traffic within their networks have several tools, among them:</t>

<t><list style="numbers" type="1">
  <t>Equal-cost Multipath (ECMP): balance traffic along multiple paths. This yields some resilience and some traffic management, as traffic can be load-balanced across multiple paths. To use ECMP effectively, one may have to adjust link metrics to allow multiple paths to have the same overall distance.</t>
  <t>Traffic Engineering (TE): state constraints for a path from an ingress router to an egress router, and let a path computation engine compute it. This gives much greater control over the nodes and links traversed, but is usually limited to finding a single path from ingress to egress <xref target="RFC2702"/>.</t>
  <t>Multi-egress: allow traffic from an ingress router to a destination dst to use several egress routers, all of which have routes to that destination. dst may be an Internet prefix <xref target="RFC4271"/>, a VPN prefix <xref target="RFC4364"/>, an EVPN address <xref target="RFC7432"/>, a VPLS site <xref target="RFC4761"/>, <xref target="RFC4762"/> or some other service destination. For BGP-signaled destinations, this requires that the BGP tie-breaking algorithm yield multiple results (rather than a single one), all of which become candidates for egress.</t>
  <t>Multi-ingress: consider multiple ingress routers as "equivalent" with respect to some of the traffic they sent to one or more egress routers. For example, an eBGP peer router or a VPN site may be multi-homed to several ingress routers, all of which would send such traffic to the same set of egress routers.</t>
</list></t>

<t><xref target="RFC2702"/> describes requirements for MPLS-based TE, and thus is relevant to this memo. At the same time, the authors appear to believe that one can either have TE or multipathing, but not both. This is further emphasized by the notion of a Label Switched Path, which is used to implement MPLS-based TE. RSVP-TE (<xref target="RFC3209"/>), the protocol designed to meet the requirements of <xref target="RFC2702"/>, builds a single path from one ingress to one egress (for unicast traffic).</t>

<t>In order to satisfy the constraints, TE often uses non-shortest paths. To do so without looplng packets, a tunnel is used. Such tunnels have to be signaled. RSVP-TE is a signaling protocol for MPLS-based tunnels.</t>

<t>In this memo, we introduce a new tool: multipath TE (MPTE). This allows an operator to specify constraints for paths (as in TE), specify multiple ingresses and egresses, and use multiple paths from ingress to egress. Effectively, MPTE combines the advantages of the four tools above. The resulting set of paths from ingresses to egresses is a Directed Acyclic Graph (DAG), here called an MPTE DAG or MPTED. Finally, this memo allows the use of multiple types of tunnels. The main contribution of this memo is the notion of a (multipath) unicast tunnel across an MPTED, called an MPTE tunnel or MPTET, and an overview of how they are created. Protocols for provisioning such tunnels will be specified in companion documents. Another companion document defines how to distribute MPTE capabilities in an IGP so that entities computing MPTEDs can know which nodes to include in the DAG.</t>

<section anchor="terminology"><name>Terminology</name>

<t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" 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.
<?line -6?></t>

<section anchor="definition-of-commonly-used-terms"><name>Definition of Commonly Used Terms</name>

<t>This section provides definitions for terms and abbreviations that have a specific meaning to the MPTE protocol and that are used throughout this memo.</t>

<dl>
  <dt>constraints:</dt>
  <dd>
    <t>desired properties of paths between ingresses and egresses.</t>
  </dd>
  <dt>constrained shortest path first (CSPF):</dt>
  <dd>
    <t>A modification to SPF to take into account TE constraints.</t>
  </dd>
  <dt>directed acyclic graph (DAG):</dt>
  <dd>
    <t>a directed graph that has no cycles. The result of a multipath SPF or CSPF computation is a DAG.</t>
  </dd>
  <dt>directed graph:</dt>
  <dd>
    <t>a set of nodes and directed links. A network is represented by a directed graph.</t>
  </dd>
  <dt>egress:</dt>
  <dd>
    <t>an end node of an MPTE DAG.</t>
  </dd>
  <dt>equal-cost multipath (ECMP):</dt>
  <dd>
    <t>a DAG consisting of shortest paths from an ingress to an egress.</t>
  </dd>
  <dt>flow-aware load balancing (FALB):</dt>
  <dd>
    <t>load balancing that maps packets that belong to a given flow onto the same path. What consitutes a flow depends on the type of traffic; for IP traffic, a flow is typically defined by the 5-tuple &lt;source IP, dest IP, protocol type, source port, dest port&gt;.</t>
  </dd>
  <dt>ingress:</dt>
  <dd>
    <t>a starting node of an MPTE DAG.</t>
  </dd>
  <dt>label-switched path (LSP):</dt>
  <dd>
    <t>an MPLS tunnel from an ingress to one or more egresses.</t>
  </dd>
  <dt>link:</dt>
  <dd>
    <t>A (directed) edge between two nodes. A pair of nodes may have 0 or more links between them. A link between nodes u and v will be denoted by (u, v, i), where i is u's oif for the link. A link may have associated attributes, in particular, a metric.</t>
  </dd>
  <dt>load balancing (LB):</dt>
  <dd>
    <t>a method whereby traffic to an egress is distributed among multiple next hops at each node along the DAG.</t>
  </dd>
  <dt>metric:</dt>
  <dd>
    <t>a positive number describing the contribution of a link to the oveall path length.</t>
  </dd>
  <dt>MC:</dt>
  <dd>
    <t>MPTED computer: the entity computing the MPTED, typically the ingress (if there is a single ingress) or a Path Computation Element</t>
  </dd>
  <dt>MPTE:</dt>
  <dd>
    <t>multipath TE with path constraints (including a slack) using nECMP paths from an ingress to one or more egresses.</t>
  </dd>
  <dt>MPTED:</dt>
  <dd>
    <t>an MPTE DAG resulting from CSPF-type computation on MPTE constraints.</t>
  </dd>
  <dt>MPTEP:</dt>
  <dd>
    <t>MPTE protocol: the protocol used to signal MPTEDs.</t>
  </dd>
  <dt>MPTET:</dt>
  <dd>
    <t>MPTE tunnel: the forwarding entity associated with an MPTED over which traffic is sent.</t>
  </dd>
  <dt>non-equal-cost multipath (nECMP) (generally qualified by "with slack s"):</dt>
  <dd>
    <t>a DAG of paths from an ingress u to an egress v that are within s of min(u, v).</t>
  </dd>
  <dt>node:</dt>
  <dd>
    <t>a vertex of a graph. A node may have associated attributes.</t>
  </dd>
  <dt>outgoing interface (oif):</dt>
  <dd>
    <t>a unique number (oif) assigned by a node for each outgoing link it has.</t>
  </dd>
  <dt>Path Computation Element (PCE):</dt>
  <dd>
    <t>an entity that capable of performing CSPF on behalf of another node, the path computation client.</t>
  </dd>
  <dt>path length:</dt>
  <dd>
    <t>the sum of the metrics of the links that constitute path p, denoted by len(p)</t>
  </dd>
  <dt>shared risk group (SRG):</dt>
  <dd>
    <t>nodes and/or links that share "risk" (e.g., have a common power feed, or use a common fiber conduit)</t>
  </dd>
  <dt>shortest path:</dt>
  <dd>
    <t>a path between a pair of nodes u, v with minimum length. The set of shortest paths between u and v is a DAG, denoted by sp(u, v). The length of a shortest path from u to v is denoted by min(u, v)</t>
  </dd>
</dl>

<t>shortest path first (SPF):
an algorithm for computing the shortest path DAG from an ingress to an egress; typically refers to Dijkstra's algorithm for computing shortest paths between a given pair of nodes, or pairwise between all nodes.</t>

<dl>
  <dt>signaling source (SS):</dt>
  <dd>
    <t>an entity responsible for signaling an MPTET</t>
  </dd>
  <dt>slack:</dt>
  <dd>
    <t>a path p from u to v has slack s if len(p) = min(u, v) + s.</t>
  </dd>
</dl>

<t>traffic engineering (TE):
a methodology for mapping traffic trunks to given paths or DAGs across a network.</t>

<dl>
  <dt>traffic trunk:</dt>
  <dd>
    <t>a unidirectional aggregate of traffic flows from an ingress to a set of egresses that is treated identically in the forwarding plane.</t>
  </dd>
  <dt>tunnel originator (TO):</dt>
  <dd>
    <t>entity having the specifications of the MPTET</t>
  </dd>
</dl>

</section>
</section>
</section>
<section anchor="overview"><name>Overview</name>

<t>Consider <xref target="nw-1"/>:</t>

<figure title="Network 1" anchor="nw-1"><artwork><![CDATA[
    2 == 3         Link Metrics (symm): 0-2: 100; 0-4: 200; 0-6: 110
 r/ r\  r\\        1-2 (not shown): 110; 1-4 (not sh): 100; 1-6: 100
 0 -- 4 -- 5       2-3: (100, 100); 2-4: 100; 3-5: (100, 110)
  \  / \  / \      4-5: 100; 4-6: 110; 4-7: 50
1 - 6 = 7 -- 8     5-7: 100; 5-8: 10; 6-7: (100, 110); 7-8: 50
      r            Node pairs 2-3, 4-5 and 6-7 each have two links.
                   Links marked with 'r' have color red.
]]></artwork></figure>

<section anchor="multipathing"><name>Multipathing</name>

<section anchor="ecmp-slack-0-from-node-0-to-node-5"><name>ECMP (slack 0) from node 0 to node 5</name>

<t>There are 4 ECMP paths from node 0 to node 5:</t>

<t><list style="numbers" type="1">
  <t>0-2=3-5 (2 paths)</t>
  <t>0-2-4-5</t>
  <t>0-4-5</t>
</list></t>

<t>These 4 distinct paths all have length 300.</t>

</section>
<section anchor="necmp-from-node-0-to-node-5-with-slack-10"><name>nECMP from node 0 to node 5 with slack 10</name>

<t>There are 7 nECMP paths with slack 10 to node 5:</t>

<t><list style="numbers" type="1">
  <t>0-2=3=5 (4 paths)</t>
  <t>0-2-4-5</t>
  <t>0-4-5</t>
  <t>0-6-7-5</t>
</list></t>

<t>These 7 paths have lengths 300 or 310. Thus, allowing nECMP paths a slack of 10 has yielded 3 additional paths, which provide increased diversity and load balancing, and possibly decreased congestion.</t>

</section>
<section anchor="multipathing-from-node-0-to-egresses-5-8"><name>Multipathing from node 0 to egresses {5, 8}</name>

<t>If, for some traffic trunk that starts at node 0, nodes 5 and 8 are equally good as egresses, then one can compute an ECMP DAG from 0 to {5, 8}; this yields 4 paths to 5 and 6 paths to 8, for a total of 10 paths this traffic trunk can take. Similarly, a nECMP DAG to {5, 8} with slack 10 has 15 paths, whereas one with slack 5 has the same 10 paths as with slack 0.</t>

</section>
<section anchor="mpted-from-ingresses-0-1-to-egresses-5-8"><name>MPTED from ingresses {0, 1} to egresses {5, 8}</name>

<t>If traffic from node 0 to nodes {5, 8} and from node 1 to nodes {5, 8} have common characteristics, it may make sense to compute a single DAG from {0, 1} to {5, 8}. Doing so allows the operator to view this entire DAG as one logical entity; a nice side benifit is reduced control and data plane state due to state sharing.</t>

</section>
</section>
<section anchor="load-balancing"><name>Load balancing</name>

<t>Nodes in a netword have a Forwarding Information Base (FIB). A FIB maps a packet's destination address da to one or more "next hops". When a packet with address da arrives at n, n sends the packet to one of the next hops. n typically will distribute packets in a given ratio among the next hops. This is load balancing.</t>

<t>The main goal of ECMP/nECMP is to supply as many nodes as possible in the MPTED with multiple next hops on which to forward the traffic trunk. At such nodes, traffic belonging to the trunk can be distributed among the next hops instead of going to a single next hop. This has the potential to reduce congestion and provide better utilization of available links.</t>

<section anchor="flow-aware-load-balancing"><name>Flow-aware load balancing</name>

<t>When load balancing packets from a traffic trunk, it is often required that packets from a given flow be sent to the same next hop. This improves the probability of in-order delivery of packets in that flow, which is important for certain types of traffic. This is called flow-aware load balancing (FALB). The most common flow in IP traffic is defined by a 5-tuple consisting of the source IP address, the destination IP address, the protocol, the source port and the destination port. A 16- or 20-bit hash of this 5-tuple is called the packet's entropy.</t>

<t>There are two common ways to achieve FALB of IP traffic. One is to do a "deepish" packet inspection (dPI), find the relevant 5-tuple, and use that to compute the packet's entropy. The entropy is then used to ensure that packets in the flow are sent to the same next hop. This memo suggests sending TE traffic over a tunnel (see {tunnels}); this makes the identification of IP flows expensive and error-prone.</t>

<t>Another way of accomplishing this is to insert the entropy in the tunnel header. Many of the tunnels suggested in this memo have such a field. The ingress is in a good position to identify flows, and, when encapsulating the packet into the tunnel, can insert the entropy in the header. The heavy lifting of identifying flows is thus placed on the ingress. Transit nodes can simply use the entropy field to correctly map packets in a flow to the same next hop, thus ensuring FALB.</t>

</section>
<section anchor="per-packet-load-balancing"><name>Per-packet load balancing</name>

<t>FALB is often required and is a good default behavior, especially as end applications may be expecting packets in a flow to be delivered in order. However, FALB has the issue that it attempts (statistically) to place roughly the number of flows in the given ratio on the outgoing links; that may not place traffic in the same ratio, as flows need not carry the same traffic. In some cases (typically when configured to), one can do per-packet load balancing (PPLB), meaning that load balancing is no longer flow aware. This can be done when the end applications do not require packets in a flow to be in order, or if some (bookended) devices outside the network put the packets back in order before delivering them to the applications (typically by addind a sequence number). When feasible, PPLB gives much better load distribution, and is currently the subject of investigation, implementation and standardization.</t>

<t>One can achieve this by configuring each router in the DAG to do PPLB for the traffic trunks in the DAG, or more simply by the ingress router assigning entropy at random to the traffic it places in the DAG. The latter approach keeps the decision of which DAGs (and corresponding traffic trunks) should be flow-aware and which not at the ingress; all other nodes simply do what the entropy fields tells them to do.</t>

</section>
</section>
<section anchor="constraints"><name>Constraints</name>

<t>Constraints are an intent-based specification of acceptable paths that a traffic trunk may take from ingress to egress(es). Constraints are thus an abstract way to control the resources that a particular traffic trunk uses.</t>

<t>One way to do this is to add "resource class attributes" or "colors" <xref target="RFC2702"/> to links, and then specify "include" and "exclude" sets. An include set means that all links that a path traverses must contain at least one element of the include set. An exclude set means that no link in the path can contain any color from the exclude set.</t>

<t>Another way is to specify a (maximum) bandwidth that a traffic trunk can carry. This means that all links in the path must have that much available capacity. Packets exceending the bandwidth can forwarded normally, marked as droppable, or dropped.</t>

<t>Let's add some simple constraints to our DAG. We associate the color red to one of the links from B to C, and to the shorter of the links from F to G. Then, we constrain the paths to "exclude red", meaning avoid links with color red. This yields the following:</t>

<t><list style="symbols">
  <t>ECMP from node 0 to node 5 with constraints "include red or blue" yields a single path.</t>
</list></t>

</section>
<section anchor="protection"><name>Protection</name>

<t>One very useful aspect of TE is the ability to specify that a path must be link- or node- or shared-risk-disjoint from another path. That means that the two paths do not have links or nodes or "shared risk groups". Additionally, one can build protection paths for an existing path to protect against link or node failures <xref target="RFC4090"/>. This is especially important as TE currently takes a single path through the network, meaning that a link or node failure will result in dropped traffic until the TE path is restored.</t>

<t>While not quite as crucial in the case of an MPTED, since ideally, there will be multiple nexthops at each node, there will be cases where a node has a single next hop, or all next hops share a common failure mode. Identifying these cases and building protection paths for such nodes will be described in a future version of this memo.</t>

</section>
<section anchor="tunnels"><name>Tunnels</name>

<t>The shortest path first algorithm <xref target="SPF"/> is an easy-to-implement and very efficient algorithm whereby all routers in a network can agree on the path that a packet to a particular destination should take. That means, if all routers are agreed (roughly) on the topology and metrics of the network, they will forward packets in a loop-free manner to all destinations -- without the need for signaling or tunnels. However, an MPTED will not contain the same paths -- some paths may be rejected as they don't conform to the constraints; other paths may be used even though they are not shortest paths. Thus, to route packets in a traffic trunk over a computed MPTED, a tunnel is typically used. This tunnel will have to be signaled to the MPTED nodes. The tunnel may be MPLS- or IP-based.</t>

<t>A few things are important about tunnels: whether they carry an entropy field (EF), whether they have a "discriminator" (D) that allows multiple tunnels between an ingress-egress pair, whether they allow multiple egresses (ME), and whether they allow multiple ingresses (MI). These will be discussed in the description of the tunnels below.</t>

<t>In the memo, we consider the following tunnel types:</t>

<t><list style="numbers" type="1">
  <t>IP-in-IP: <xref target="RFC2003"/> encapsulation allows the creation of an "outer" IP header to carry a payload packet (which is typically an IP payload). The outer IP header's protocol field indicates the "protocol" of the inner payload packet. The outer header of IP-in-IP tunnel doesn't contain an EF; transit nodes can either spray packets across outgoing next hops, attempt to do dPI, or use the same next hop for all packets. To accommodate ME, the egresses have to have the same (anycast) IP address which would be used as the destination IP of the tunnel. MI is not possible.</t>
  <t>GRE: Generic Routing Encapsulation. We include in this definition <xref target="RFC2784"/> and <xref target="RFC2890"/> with the Key Present (bit 2) set to 0. This is similar to IP-in-IP; however, the payload is not required to be IP. There is no EF in the header. D, ME and MI same as for IP-in-IP.</t>
  <t>GRE-E: GRE with Key Present; the Key value is the EF. D, ME and MI same as for IP-in-IP.</t>
  <t>GRE6: GRE with IPv6 addresses. The entropy is carried in the Flow Label field of the IPv6 header. D, ME and MI same as for IP-in-IP.</t>
  <t>G-in-U: GRE-in-UDP <xref target="RFC8086"/>. The UDP source port is the EF; the GRE Key, if present, can be ignored from a load balancing point of view. D, ME and MI as in IP-in-IP.</t>
  <t>MPLS-in-UDP <xref target="RFC7510"/>. The UDP source port is the EF; D, ME and MI as in IP-in-IP.</t>
  <t>SigLab (signaled label switching). The labels to be used are signaled. Signaling proceeds from egress(es) to ingress(es). An entropy label can be used as the EF. At each node, a different label is used for each MPTED; this is the discriminator. ME and MI are both allowed.</t>
  <t>StatLab (static label). A single statically-assigned label defines the tunnel throughout the MPTED. Here, a block of MPLS labels is given to a label allocator; these labels MUST NOT be allocated by any node in the network. EF, D, ME and MI are as for SigLab. The MPTED computer (MC) must interact with the allocator when creating or deleting an MPTED.</t>
</list></t>

</section>
<section anchor="backward-compatibility"><name>Backward Compatibility</name>

<t>Introducing a new idea to the network (and thus new protocols, new extenstion and new software) is typically done incrementally. Thus, in a network transitioning to MPTE, there will be some nodes that are MPTE-capable, and others that are not.</t>

<t>In <xref target="nw-1"/> above, if node 4 is not MPTE-capable, it can either be left out of the MPTED, or a "classical" tunnel can be constructed from (say) node 2 to node 5, allowing hybrid paths 0-2-(4)-5 and 0-2-(4)-5-8 for a DAG from {0} to {5, 8}. The signaling specs will say whether this is possible, and if so, how it can be achieved.</t>

</section>
</section>
<section anchor="operation"><name>Operation</name>

<t>The starting point in building an MPTE DAG is to define the properties of a traffic trunk from ingress to egress. Examples include "BGP destinations with community xyz" or "gold class traffic belonging to VPN foo". Next, define a set of constraints that capture the types of paths permissible for this traffic trunk. These include a metric to minimize (perhaps with slack); this could capture delay or fiber length, link colors, shared risk groups (SRGs) and bandwidth. The desired outcome is an MPTED into which the traffic trunk can be mapped.</t>

<t>An MPTED is specified by defining:</t>

<t><list style="numbers" type="1">
  <t>a (non-empty) set of ingresses</t>
  <t>a (non-empty) set of egresses</t>
  <t>the metric to use and the slack</t>
  <t>path constraints</t>
  <t>whether or not the MPTED is "strict".</t>
</list></t>

<t>An MPTED is strict if all paths from all ingresses to all egresses are within slack of the shortest path. An MPTED is loose if all paths from a given ingress I to a given egress E are within slack of each other, but paths from I to a different egress F may not be within slack of the paths to I.</t>

<t>Computation (possibly using a variant of CSPF) of an MPTED is done by the MC, which is either an ingress or a PCE <xref target="RFC4655"/>. (This memo does not specify such an algorithm.) Signaling primarily occurs between the MC and each junction node. Auxiliary signaling may occur between a junction node and its phops.</t>

<section anchor="mpted"><name>MPTED</name>

<t>In this memo, a node is identified by its (16-octet) IPv6 loopback address. A link from node u to node v is identified by u's loopback address and its (4-octet) outgoing interface index (oif), a unique identifier for the link allocated by u. oifs are usually exchanged in the TE extensions of an IGP. (A link also has a (4-octet) incoming interface index, the iif. For neighbors u and v, the correlation between u's oif and v's iif is typically done by the IGP. iifs are not used in this memo.) For now, this memo only deals with point-to-point links; a future revision will describe the use of multi-access links.</t>

<t>An MPTED is identified by a unique (4-octet) ID (the MID) assigned to the MPTED by the MC. As an MPTED can change over its lifetime, it is assigned a version number starting at 0 and incremented every time the MPTED is recomputed. Thus, a full MPTED ID (the FID) consists of &lt;MC, MID, version&gt;.</t>

<t>An MPTED consists two or more "junction nodes". A junction node can have one of five types:</t>

<t><list style="numbers" type="1">
  <t>a pure ingress node has zero incoming links and one or more outgoing links in the MPTED. Traffic routed on a MPTED enters at the ingress.</t>
  <t>a pure egress node has one or more incoming links and zero outgoing links in the MPTED. Traffic routed on a MPTED leaves at an egress.</t>
  <t>a transit ingress node where traffic can either enter the MPTED or arrive from another ingress node to continue on in the MPTED.</t>
  <t>a transit egress node where traffic can either exit the MPTED or go on to another egress node.</t>
  <t>a "regular" junction node has one or more incoming links and one or more outgoing links. Traffic does not enter or leave at such a node: it comes from a phop and goes to an nhop.</t>
</list></t>

<t>A junction node v consists of v, its previous hops (phops) and its next hops (nhops). A phop is specified by an incoming link of v: (u, v, oif1); an nhop by an outgoing link of v: (v, w, oif2). Note that, since links are point-to-point, it is sufficient to specify (u, oif1) ((v, oif2)) for a phop (nhop, respectively). The nodes u (and w) are loosely referred to as a phop (and nhop) of v, although strictly speaking the link should be included. A pure ingress has no phops and a pure egress has no nhops.</t>

<t>The MPTED is broken down into a set of junction nodes. A junction node v is specified by:</t>

<t><list style="numbers" type="1">
  <t>bandwidth (coming in to and going out of v)</t>
  <t>a list of phops of v</t>
  <t>a list of nhops of v, with corresponding load balancing shares</t>
</list></t>

</section>
<section anchor="tunnel-provisioning"><name>Tunnel Provisioning</name>

<t>A designated entity, the Tunnel Originator (TO), is given the specifications of the MPTET: the ingresses, the egresses and the constraints. The TO is typically one of the tunnel ingresses or a PCE. The TO sends the tunnel specification to the MC. The MC computes the MPTED (as a list of junctions) and returns this to the TO. The TO then sends the list of junctions to the Signaling Source (SS) which provisions the tunnel.</t>

<t>Note that TO, MC and SS are functional blocks; they may reside on separate nodes or co-reside on the same node. For example, a single node may be the TO and SS but decide to delegate computation to a (remote) PCE. This node then gets the results via PCEP and signals the tunnel. Other permutations are possible.</t>

</section>
<section anchor="signaling-overview"><name>Signaling Overview</name>

<t>The SS signals the creation or update of an MPTE tunnnel by sending to each junction node v a JUNCTION message consisting of:</t>

<t><list style="numbers" type="1">
  <t>the MPTET ID</t>
  <t>the junction node specification</t>
  <t>the tunnel type</t>
  <t>some flags</t>
</list></t>

<t>After v parses this specification, for all tunnel types other than SigLab, it installs FIB state for the junction.</t>

<t>For tunnel type SigLab, v allocates an incoming MPLS label L_u for each phop u, and sends a LABEL message to u containing:</t>

<t><list style="numbers" type="1">
  <t>the MPTET ID</t>
  <t>the phop (u's loopback + u's oif for the link)</t>
  <t>the allocated label L_u</t>
</list></t>

<t>u records label L_u as part of its own junction state.</t>

<t>When v receives a LABEL message from all its nhops, it installs swap state in its LFIB.</t>

</section>
<section anchor="forwarding-state"><name>Forwarding State</name>

<t>For a non-ingress node v, forwarding state generally consists of a set of routes which identify the tunnel from its phops, and a set of weighted nexthops, i.e., a set of nexthops whereby the relative proportion of traffic sent over each is decide by the MC and specified by the SS in the JUNCTION message.</t>

<t>For IP tunnels, the route consists of a destination-source pair, possibly with a tunnel discriminator (which allows multiple tunnels between an ingress-egress pair); the nexthops are a set of interfaces over which the packet is forwarded.</t>

<t>For a MPTET with a "statically assigned" label (typically by a PCE), the route consists of the assigned label, and the nexthops are a set of interfaces. In the simplest case, the entire DAG has a single label; if so, the label operation is null. A variant allows for different controller-assigned labels for each junction node; in this case, the forwarding state is as for "signaled" labels, where the incoming label is swapped to the correct outgoing label.</t>

<t>For signaled labels, the routes for node v are the labels v sent to its phops. Each nexthop is a swap of the incoming label to the label sent by v's nhops.</t>

</section>
</section>
<section anchor="signaling-protocol"><name>Signaling Protocol</name>

<t>Several signaling protocols are being extended to provision MPTETs: RSVP-TE, PCEP and BGP, among others. The details of each will be specified in companion documents; this memo restricts itself to an overview of the common elements.</t>

<section anchor="message-flow"><name>Message Flow</name>

<t>Provisioning messages (to create, update and delete a tunnel) are sent from the Signaling Source (SS) to each junction node (including possibly other ingresses). Notifications are sent from each junction node to the SS to send updates on the state of that node with respect to the MPTET. Label messages (when needed) are sent hop-by-hop from egresses to their phops and further upstream in an ordered fashion.</t>

<t>In special scenarios, a node may send a messages to one or more of its nhops.</t>

</section>
<section anchor="message-types"><name>Message Types</name>

<section anchor="junction"><name>JUNCTION</name>

<t>A JUNCTION message contains the following information elements:</t>

<dl>
  <dt>MPTET ID:</dt>
  <dd>
    <t>a unique identifier for an MPTE tunnel. This usually consists of the TO ID and a unique ID in the namespace of the TO. It also includes a version number to distinguish among instances of a tunnel as it is undergoes updates. The companion signaling documents will describe the MPTET ID in more detail.</t>
  </dd>
  <dt>Tunnel Type:</dt>
  <dd>
    <t>various types of tunnels are used, so each node must be told which type of tunnel this MPTET consists of.</t>
  </dd>
  <dt>Tunnel Information:</dt>
  <dd>
    <t>provides details for the MPTET. For example, for an MPLS tunnel with a statically assigned label, the Tunnel Information is the label. For IP-based tunnels, the Tunnel Information is the source and destination IP addresses (plus optional other information).</t>
  </dd>
  <dt>Junction Bandwidth:</dt>
  <dd>
    <t>specifies the bandwidth incoming to the junction in Megabits per second (Mbps).</t>
  </dd>
  <dt>nhop share:</dt>
  <dd>
    <t>a 2-octet share of the outgoing bandwidth per nhop. A Junction should attempt to send a ratio of (share n)/(sum (share i)) of the incoming bandwidth to nhop #n.</t>
  </dd>
</dl>

</section>
<section anchor="label"><name>LABEL</name>

<t>A LABEL message MUST only be used for MPTEDs of type SigLab. A LABEL message is sent from an egress junction node to each of its phops. Any other junction node MUST only send a LABEL message when it has received a LABEL message from all of its nhops (cf "Ordered Label Distribution Control" <xref section="2.6.1.2" sectionFormat="comma" target="RFC3036"/>). A pure ingress node never sends a LABEL message as it has no phops. The LABEL message carries the MPTET ID and a label.</t>

</section>
<section anchor="notify"><name>NOTIFY</name>

<t>A NOTIFY is sent from a junction node to the SS to let the SS know the state of the MPTET at that node. This could be the labels it assigned to its phops, or error conditions.</t>

</section>
</section>
</section>
<section anchor="GR"><name>Graceful Restart</name>

<t>A node N is capable of Graceful Restart if a) it can maintain control plane state across restarts; and b) it can maintain forwarding state across restarts. If N is capable of Graceful Restart, an MPTE DAG going through N can continue functioning while N restarts. While N is restarting, new JUNCTION/LABEL messages will be dropped or ignored; new MPTE DAGs passing through N will not be established. Once restart is complete, N will send an OPEN message and re-establish connections will all its peers (or all the MPTEP Reflectors). Thereafter, N can participate in new DAGs passing through it by processing received JUNCTION messages.</t>

<t>More details will be described in a future version.</t>

</section>
<section anchor="iana-considerations"><name>IANA Considerations</name>

<t>TBD</t>

</section>
<section anchor="security-considerations"><name>Security Considerations</name>

<t>TBD</t>

</section>


  </middle>

  <back>


<references title='References' anchor="sec-combined-references">

    <references title='Normative References' anchor="sec-normative-references">



<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>

<reference anchor="RFC2003">
  <front>
    <title>IP Encapsulation within IP</title>
    <author fullname="C. Perkins" initials="C." surname="Perkins"/>
    <date month="October" year="1996"/>
    <abstract>
      <t>This document specifies a method by which an IP datagram may be encapsulated (carried as payload) within an IP datagram. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="2003"/>
  <seriesInfo name="DOI" value="10.17487/RFC2003"/>
</reference>

<reference anchor="RFC2784">
  <front>
    <title>Generic Routing Encapsulation (GRE)</title>
    <author fullname="D. Farinacci" initials="D." surname="Farinacci"/>
    <author fullname="T. Li" initials="T." surname="Li"/>
    <author fullname="S. Hanks" initials="S." surname="Hanks"/>
    <author fullname="D. Meyer" initials="D." surname="Meyer"/>
    <author fullname="P. Traina" initials="P." surname="Traina"/>
    <date month="March" year="2000"/>
    <abstract>
      <t>This document specifies a protocol for encapsulation of an arbitrary network layer protocol over another arbitrary network layer protocol. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="2784"/>
  <seriesInfo name="DOI" value="10.17487/RFC2784"/>
</reference>

<reference anchor="RFC2890">
  <front>
    <title>Key and Sequence Number Extensions to GRE</title>
    <author fullname="G. Dommety" initials="G." surname="Dommety"/>
    <date month="September" year="2000"/>
    <abstract>
      <t>This document describes extensions by which two fields, Key and Sequence Number, can be optionally carried in the GRE Header. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="2890"/>
  <seriesInfo name="DOI" value="10.17487/RFC2890"/>
</reference>

<reference anchor="RFC8086">
  <front>
    <title>GRE-in-UDP Encapsulation</title>
    <author fullname="L. Yong" initials="L." role="editor" surname="Yong"/>
    <author fullname="E. Crabbe" initials="E." surname="Crabbe"/>
    <author fullname="X. Xu" initials="X." surname="Xu"/>
    <author fullname="T. Herbert" initials="T." surname="Herbert"/>
    <date month="March" year="2017"/>
    <abstract>
      <t>This document specifies a method of encapsulating network protocol packets within GRE and UDP headers. This GRE-in-UDP encapsulation allows the UDP source port field to be used as an entropy field. This may be used for load-balancing of GRE traffic in transit networks using existing Equal-Cost Multipath (ECMP) mechanisms. There are two applicability scenarios for GRE-in-UDP with different requirements: (1) general Internet and (2) a traffic-managed controlled environment. The controlled environment has less restrictive requirements than the general Internet.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8086"/>
  <seriesInfo name="DOI" value="10.17487/RFC8086"/>
</reference>

<reference anchor="RFC7510">
  <front>
    <title>Encapsulating MPLS in UDP</title>
    <author fullname="X. Xu" initials="X." surname="Xu"/>
    <author fullname="N. Sheth" initials="N." surname="Sheth"/>
    <author fullname="L. Yong" initials="L." surname="Yong"/>
    <author fullname="R. Callon" initials="R." surname="Callon"/>
    <author fullname="D. Black" initials="D." surname="Black"/>
    <date month="April" year="2015"/>
    <abstract>
      <t>This document specifies an IP-based encapsulation for MPLS, called MPLS-in-UDP for situations where UDP (User Datagram Protocol) encapsulation is preferred to direct use of MPLS, e.g., to enable UDP-based ECMP (Equal-Cost Multipath) or link aggregation. The MPLS- in-UDP encapsulation technology must only be deployed within a single network (with a single network operator) or networks of an adjacent set of cooperating network operators where traffic is managed to avoid congestion, rather than over the Internet where congestion control is required. Usage restrictions apply to MPLS-in-UDP usage for traffic that is not congestion controlled and to UDP zero checksum usage with IPv6.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="7510"/>
  <seriesInfo name="DOI" value="10.17487/RFC7510"/>
</reference>




    </references>

    <references title='Informative References' anchor="sec-informative-references">

<reference anchor="SPF" target="https://doi.org/10.1007/BF01386390">
  <front>
    <title>A note on two problems in connexion with graphs</title>
    <author initials="E. W." surname="Dijkstra" fullname="Dijkstra, E. W.">
      <organization></organization>
    </author>
    <date year="1959" month="December" day="01"/>
  </front>
</reference>


<reference anchor="RFC2702">
  <front>
    <title>Requirements for Traffic Engineering Over MPLS</title>
    <author fullname="D. Awduche" initials="D." surname="Awduche"/>
    <author fullname="J. Malcolm" initials="J." surname="Malcolm"/>
    <author fullname="J. Agogbua" initials="J." surname="Agogbua"/>
    <author fullname="M. O'Dell" initials="M." surname="O'Dell"/>
    <author fullname="J. McManus" initials="J." surname="McManus"/>
    <date month="September" year="1999"/>
    <abstract>
      <t>This document presents a set of requirements for Traffic Engineering over Multiprotocol Label Switching (MPLS). It identifies the functional capabilities required to implement policies that facilitate efficient and reliable network operations in an MPLS domain. This memo provides information for the Internet community.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="2702"/>
  <seriesInfo name="DOI" value="10.17487/RFC2702"/>
</reference>

<reference anchor="RFC4271">
  <front>
    <title>A Border Gateway Protocol 4 (BGP-4)</title>
    <author fullname="Y. Rekhter" initials="Y." role="editor" surname="Rekhter"/>
    <author fullname="T. Li" initials="T." role="editor" surname="Li"/>
    <author fullname="S. Hares" initials="S." role="editor" surname="Hares"/>
    <date month="January" year="2006"/>
    <abstract>
      <t>This document discusses the Border Gateway Protocol (BGP), which is an inter-Autonomous System routing protocol.</t>
      <t>The primary function of a BGP speaking system is to exchange network reachability information with other BGP systems. This network reachability information includes information on the list of Autonomous Systems (ASes) that reachability information traverses. This information is sufficient for constructing a graph of AS connectivity for this reachability from which routing loops may be pruned, and, at the AS level, some policy decisions may be enforced.</t>
      <t>BGP-4 provides a set of mechanisms for supporting Classless Inter-Domain Routing (CIDR). These mechanisms include support for advertising a set of destinations as an IP prefix, and eliminating the concept of network "class" within BGP. BGP-4 also introduces mechanisms that allow aggregation of routes, including aggregation of AS paths.</t>
      <t>This document obsoletes RFC 1771. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="4271"/>
  <seriesInfo name="DOI" value="10.17487/RFC4271"/>
</reference>

<reference anchor="RFC4364">
  <front>
    <title>BGP/MPLS IP Virtual Private Networks (VPNs)</title>
    <author fullname="E. Rosen" initials="E." surname="Rosen"/>
    <author fullname="Y. Rekhter" initials="Y." surname="Rekhter"/>
    <date month="February" year="2006"/>
    <abstract>
      <t>This document describes a method by which a Service Provider may use an IP backbone to provide IP Virtual Private Networks (VPNs) for its customers. This method uses a "peer model", in which the customers' edge routers (CE routers) send their routes to the Service Provider's edge routers (PE routers); there is no "overlay" visible to the customer's routing algorithm, and CE routers at different sites do not peer with each other. Data packets are tunneled through the backbone, so that the core routers do not need to know the VPN routes. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="4364"/>
  <seriesInfo name="DOI" value="10.17487/RFC4364"/>
</reference>

<reference anchor="RFC7432">
  <front>
    <title>BGP MPLS-Based Ethernet VPN</title>
    <author fullname="A. Sajassi" initials="A." role="editor" surname="Sajassi"/>
    <author fullname="R. Aggarwal" initials="R." surname="Aggarwal"/>
    <author fullname="N. Bitar" initials="N." surname="Bitar"/>
    <author fullname="A. Isaac" initials="A." surname="Isaac"/>
    <author fullname="J. Uttaro" initials="J." surname="Uttaro"/>
    <author fullname="J. Drake" initials="J." surname="Drake"/>
    <author fullname="W. Henderickx" initials="W." surname="Henderickx"/>
    <date month="February" year="2015"/>
    <abstract>
      <t>This document describes procedures for BGP MPLS-based Ethernet VPNs (EVPN). The procedures described here meet the requirements specified in RFC 7209 -- "Requirements for Ethernet VPN (EVPN)".</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="7432"/>
  <seriesInfo name="DOI" value="10.17487/RFC7432"/>
</reference>

<reference anchor="RFC4761">
  <front>
    <title>Virtual Private LAN Service (VPLS) Using BGP for Auto-Discovery and Signaling</title>
    <author fullname="K. Kompella" initials="K." role="editor" surname="Kompella"/>
    <author fullname="Y. Rekhter" initials="Y." role="editor" surname="Rekhter"/>
    <date month="January" year="2007"/>
    <abstract>
      <t>Virtual Private LAN Service (VPLS), also known as Transparent LAN Service and Virtual Private Switched Network service, is a useful Service Provider offering. The service offers a Layer 2 Virtual Private Network (VPN); however, in the case of VPLS, the customers in the VPN are connected by a multipoint Ethernet LAN, in contrast to the usual Layer 2 VPNs, which are point-to-point in nature.</t>
      <t>This document describes the functions required to offer VPLS, a mechanism for signaling a VPLS, and rules for forwarding VPLS frames across a packet switched network. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="4761"/>
  <seriesInfo name="DOI" value="10.17487/RFC4761"/>
</reference>

<reference anchor="RFC4762">
  <front>
    <title>Virtual Private LAN Service (VPLS) Using Label Distribution Protocol (LDP) Signaling</title>
    <author fullname="M. Lasserre" initials="M." role="editor" surname="Lasserre"/>
    <author fullname="V. Kompella" initials="V." role="editor" surname="Kompella"/>
    <date month="January" year="2007"/>
    <abstract>
      <t>This document describes a Virtual Private LAN Service (VPLS) solution using pseudowires, a service previously implemented over other tunneling technologies and known as Transparent LAN Services (TLS). A VPLS creates an emulated LAN segment for a given set of users; i.e., it creates a Layer 2 broadcast domain that is fully capable of learning and forwarding on Ethernet MAC addresses and that is closed to a given set of users. Multiple VPLS services can be supported from a single Provider Edge (PE) node.</t>
      <t>This document describes the control plane functions of signaling pseudowire labels using Label Distribution Protocol (LDP), extending RFC 4447. It is agnostic to discovery protocols. The data plane functions of forwarding are also described, focusing in particular on the learning of MAC addresses. The encapsulation of VPLS packets is described by RFC 4448. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="4762"/>
  <seriesInfo name="DOI" value="10.17487/RFC4762"/>
</reference>

<reference anchor="RFC3209">
  <front>
    <title>RSVP-TE: Extensions to RSVP for LSP Tunnels</title>
    <author fullname="D. Awduche" initials="D." surname="Awduche"/>
    <author fullname="L. Berger" initials="L." surname="Berger"/>
    <author fullname="D. Gan" initials="D." surname="Gan"/>
    <author fullname="T. Li" initials="T." surname="Li"/>
    <author fullname="V. Srinivasan" initials="V." surname="Srinivasan"/>
    <author fullname="G. Swallow" initials="G." surname="Swallow"/>
    <date month="December" year="2001"/>
    <abstract>
      <t>This document describes the use of RSVP (Resource Reservation Protocol), including all the necessary extensions, to establish label-switched paths (LSPs) in MPLS (Multi-Protocol Label Switching). Since the flow along an LSP is completely identified by the label applied at the ingress node of the path, these paths may be treated as tunnels. A key application of LSP tunnels is traffic engineering with MPLS as specified in RFC 2702. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="3209"/>
  <seriesInfo name="DOI" value="10.17487/RFC3209"/>
</reference>

<reference anchor="RFC4090">
  <front>
    <title>Fast Reroute Extensions to RSVP-TE for LSP Tunnels</title>
    <author fullname="P. Pan" initials="P." role="editor" surname="Pan"/>
    <author fullname="G. Swallow" initials="G." role="editor" surname="Swallow"/>
    <author fullname="A. Atlas" initials="A." role="editor" surname="Atlas"/>
    <date month="May" year="2005"/>
    <abstract>
      <t>This document defines RSVP-TE extensions to establish backup label-switched path (LSP) tunnels for local repair of LSP tunnels. These mechanisms enable the re-direction of traffic onto backup LSP tunnels in 10s of milliseconds, in the event of a failure.</t>
      <t>Two methods are defined here. The one-to-one backup method creates detour LSPs for each protected LSP at each potential point of local repair. The facility backup method creates a bypass tunnel to protect a potential failure point; by taking advantage of MPLS label stacking, this bypass tunnel can protect a set of LSPs that have similar backup constraints. Both methods can be used to protect links and nodes during network failure. The described behavior and extensions to RSVP allow nodes to implement either method or both and to interoperate in a mixed network. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="4090"/>
  <seriesInfo name="DOI" value="10.17487/RFC4090"/>
</reference>

<reference anchor="RFC4655">
  <front>
    <title>A Path Computation Element (PCE)-Based Architecture</title>
    <author fullname="A. Farrel" initials="A." surname="Farrel"/>
    <author fullname="J.-P. Vasseur" initials="J.-P." surname="Vasseur"/>
    <author fullname="J. Ash" initials="J." surname="Ash"/>
    <date month="August" year="2006"/>
    <abstract>
      <t>Constraint-based path computation is a fundamental building block for traffic engineering systems such as Multiprotocol Label Switching (MPLS) and Generalized Multiprotocol Label Switching (GMPLS) networks. Path computation in large, multi-domain, multi-region, or multi-layer networks is complex and may require special computational components and cooperation between the different network domains.</t>
      <t>This document specifies the architecture for a Path Computation Element (PCE)-based model to address this problem space. This document does not attempt to provide a detailed description of all the architectural components, but rather it describes a set of building blocks for the PCE architecture from which solutions may be constructed. This memo provides information for the Internet community.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="4655"/>
  <seriesInfo name="DOI" value="10.17487/RFC4655"/>
</reference>

<reference anchor="RFC3036">
  <front>
    <title>LDP Specification</title>
    <author fullname="L. Andersson" initials="L." surname="Andersson"/>
    <author fullname="P. Doolan" initials="P." surname="Doolan"/>
    <author fullname="N. Feldman" initials="N." surname="Feldman"/>
    <author fullname="A. Fredette" initials="A." surname="Fredette"/>
    <author fullname="B. Thomas" initials="B." surname="Thomas"/>
    <date month="January" year="2001"/>
    <abstract>
      <t>A fundamental concept in MPLS is that two Label Switching Routers (LSRs) must agree on the meaning of the labels used to forward traffic between and through them. This common understanding is achieved by using a set of procedures, called a label distribution protocol, by which one LSR informs another of label bindings it has made. This document defines a set of such procedures called LDP (for Label Distribution Protocol) by which LSRs distribute labels to support MPLS forwarding along normally routed paths. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="3036"/>
  <seriesInfo name="DOI" value="10.17487/RFC3036"/>
</reference>




    </references>

</references>



  </back>

<!-- ##markdown-source:
H4sIAOk+a2gAA51963Ibx7XufzxFH+iHgdoARFJXk3ESSiQVxqLELdJx7do5
tWsADICxBjPIzIAUrNJ5lvMs58nO+talu2cIxk5ciQ1ierpXr173S2M8Hvea
rMnTY3e1zZtskzQrd1sli0U2c+fFMivStMqKZS+ZTqv0jkZd35735uWsSNb0
zpxGNuPP5XqT5nkybtKkHq83TTo+OOzNk4ZGHB0cvejN6OOyrHbHrm7mvd4T
V07rMk+btD7uZZvq2DXVtm6ODg6+Pzjq1U2VJutjd3l+e9FL6POx+1RuGwBx
X1afl1W53Ry72/PTG/fzu97n+2O3NshHNJGAnkag04xJMf+fJC8LAmiX1r1N
duz+uylnI1eXFS23qOnTbo0P/7vXS7bNqqyOe86NXVbUx+7HiftRt0hfOid7
/zGr0rTJ2o/KapkU2a9Jk5XFsfvrtsg2aeU+pA1Ar3nILGsIETfbotjdJXnK
31Xpkl94m+TZoqyKTGablXNa6PvnB6+/17+3RQM0/lRkTTp3Nw0htnblwp2u
aa8zeStdJ1l+7D4LfJMsbRZ/XuK7yaxch11FW3m/TXbur7R2vmcTf6OZfy2L
CPZP2WyVVPNavzTgb9MvSR3B/erFwevDfx3unICZ/AJg/nwnS7fgjsC+Sn5N
C/fjKpnPk/UeyN+WX+j/6zWdwoy/ig/gtMmToklaO3iX0gQt3D87eHb0+l/f
wxqQTT4LZH+elV8e28JpMd+5m3XWrPbA/7FKZnnq3ubldu4ui0WVEG9sZ822
SuONEOtkv3ESr189/zdOgriGTmJSA7w/lwwM76NXlNWaYLxLj3u9rFiEv5y7
ub6Q/TVJtUybY7dqmk19/PTpvMwmtL2nhweTw4ODV0/fXBwcPnv98tn3BzJc
hNCpK8omdWXhiGPcpiqnebquCWsEeVGkX2h77p7Accsq2axkj4FfA17Psl8+
E7KSkTufuJ8n+ozp/nzy88Q/5wciqQ6/f/H9+PAIoqs3JrGIf7lkilGzpte7
oTUIVY1jEVmJRCLELdKqJkw5En27cVOOt8WcvoHEGfnvsvWGtpEWjVunBOsc
+Kapkmme1StMk5flZrwgfpVtzgibdLbYduIKER4jN902tt4ivXdlsyLRskgT
0EM9cef/2Cb5eFYSiF4gusH526vr4YimqRkIl35p0qImNI7ctqaTl6F4EF7H
m7Wb0rop8VdS7OQwyqxo6hZMRCINPy+IzOSJrEpSO893I0JzRZshOjud7WY5
yeV3OLZhkNMzwtw0dYNmtyHio3cEjnw3JJwk8/E0IS6d0QTJuiQ80ZZp7S+N
W5UbbJk257Ka8eya0hG7MemUrt53WiNQtD8yRuK6rFKPQ1IC29nKJTUxUp3l
WVrMdvwKQHHzjEgho0Ng5OEwAI2+6+q0ASTEinnu/rEl5nJ5tgaPTXq9PQrV
DW7PCQ+AlmaRs1wx0Xj4SPrtHPHkijZU5p+zxhGnkWgpkiUmMBQu8vK+ZjAx
k5wdfSKEJJ/T1nFNiL1uz+0vxv0quQOgxWc6Sdkd0YRhYUqT3mdz6NVZmZcV
IajK6s+OVbAsmeRNWhXEP6BsgrXWNRjtWICIDNDQv6MF6ICyYpZviWhoR8ld
mc3dLK2ahKAFMLQQPSciqmVDhHtCRk0sMZL9pwE2nFVa3Yl8p/fWJDTucB7V
XTYDvZMCxkmm0elDsDTgMkI/I2zi/lLep7TGCMAHYpyXaV18p2wX2AroTxjL
riE9nuY19jnnfXlWp4m2NdOynARYsFjmsiMQxYroZZ2uWcxtysCM2LAe7jiN
KQa21xBnsZ5mRabsMAWVkzxhXsAOb0ni3dKDFrS6xNwRnYGF6BMJWrAeiHrW
GOOxABjRs4onZ8IXHsQsypvuPs2Wq0Y2nCZELMaTE3dFDFUyIvH+nPioonH0
X2JAPiM6wB3WrfAiScDU3WVJJIaWdJ415Bn2IGAnuZEL2AJnVxI9MjfU2bIg
U4FgA3KU+rdAtLtLqqzc1jhN0XB6VDD61im+uF+BucjEhKwjOibCz3RXMfIm
ogrW2XxO5hpZr5ekQsv5Vujn65MMf37r9T4SpSUNsclDHoXKypjVs8r4rxbm
q0F2tEPwOMHm5dyadOthS6pfdaT6sZ5M6peBibsMuFTSZkLbZWk+r2XrXrql
TDD8nU0h7AUCHjGJt+V0RybPqrKuH65XMtczQabEONBmKbQB2d98+rxvFte/
kO0i4kfFB3+dk0TrzIrv5TWiijrB+THachbLAGfC6HpM0sLzgJQi9QqFzpoM
9KMKa1GVayhxGg7yY4VB9ABgCiVJ/U6kCPku9ipx42bbCGkLt+pXJHsbRf6S
EAA8zWC3kMKgqQkQopqctyFqrWTyxuSQgMA8ZF46F12T1V6aqF4BdIusmLMw
imWL7Ma2AhaVT1+//unTxdujVwdH374JtpiixvL4WPHu1crjKGmx85xOsJET
N1JuIQw0Tcfk2Y1PkR8xbM2KTIhovglPqDKClideIwVD6N6Qd5Z90U08P3p1
+O0bzJq/XX/oPHr28jk/Ktw5HpJNEO3+1fNnR/bi+xvCGh2TvvfqJU/p/6Jx
0E4iLFg/m05pgXtBY968ux6LJGrLuhpSMIM5QRZBhQ1jtzhteoNM3nRMTnXy
mU8wJweZpMRaODWQP71GH2uyqRIGgqYownkTSw07CJ6mM4BMHDvP5mzdg9Dl
TOJj14M9Zp7I5l6/5WnnzGsIgj62AH+1aPpigdOIDfE2W1sqUFkhKv2wCVJD
EdIAcD5sF1hbbeoQBJK/Ar3Jp5YCNxviXSM5ZlMcJZ+WkgbDOl7RwswIRnod
yDuouS+3hFoCai42joe1DHIFhhzM8zaUvV7MPTjjGRkzqT9aCExB9BXRFYlI
6Nrb85HaZaSGmAzy9C4RjDSm/clgasLqTbZORXWKV0O432zShPlumpLQZhFI
RASMQiinmZqO9IAUYNm2UkR2sKYnElZpRP9bbCt+LV1vVkmd/UrATncqhpir
CQOJe5/Qku6GTnu2ohHXHGERTGb7LJ7W1ifu083frscE00BQ9+zo4Ptv34ay
O6/EYSEsC1W6aSqoaCGVQIlxjy1lUGV7ZB6QEsk9/KnnOMDRcBwA4kqOfUin
eklbreYi12ri2XohaIj0BJuE5YLcJvGYirIYt9wLUXlzsAFzBpEMO3Q57K5k
9jnFHImaH4a5ibthClTz0VQiDDIVJAGBmWzWLJ2WARThXOeSXXn6ohMDUsRi
SdkZuGdjI4qbYYdiXSqJsCpgt7ZUo4YRRPyeEYK6SlQ09CBh55BNVBvZlSiq
4czIE/aA6uho+/0ajKyh2Jxgi0+M4VSM8WQO9iL7pTZptCi3lZhW5MqTrhWz
UmQqcKnc/nDVNFo3reUI9nuzbnB2+o72zJY13AZYRoVAR08cH9Lt+RlJOlIL
7Bb7wzFEA1SggUDxmOjarWrVJxIL8a6o7NTmy+oHXDzwxzwMHCC0qAacQns2
6oKvw3QHt3JcIIo7aELEIBZk9d+LrIcdPWPrhkj3WmlUCYRcsgxBB0Z5TPf3
cJdB9EwwGa3N21tvkoKNi3K2ZSlAUrIQJfzwIcmQBZMAg1IGRz1VEkk2yZQM
XtK3Er4gq4JUTK3GB80gj8RsM1/irGb5+rmgSUXmiYUW+a5i0eOQieeePHG3
abXOCvKUlzu4d6n7TGghU5+EVf/qp5vb/kj+6z585M+fzv/zp8tP52f4fPOX
0/fv/Yeejrj5y8ef3p+FT+HNtx+vrs4/nMnL9K1rfdXrX53+V1/Oq//x+vby
44fT930BmEjEYw5nJlIng51FhhTIO6l7puD4PN68vf5///fwOYnh/wUxfHhI
clz/eH34iqwtQlBaqH9dwD/kP0EVPVVfQDudNB1F1iTs59SI0dwXzDaT3h/+
lMNyHr/80x97wOUTd4ZDzYyMEcblqX9i7UKIrtWDrs2PB43hgOb+RSG+BoOF
cjmHkYlpJofPcjcx8iP3J03EsxaLQJxKk7eiyxNBm6i/FRkIS5b4QaH3epGA
PO4dey8Y3mxaMa15mWNRtv0CMp6LJmhHtRZZRR8Hb2+uL4ZY5pTsqzl2IYY5
bYGe8E4kEATTfcYBYMeC08NIq8xNtCUq2pZBtGFusvlthDxR7EEdOrxiHruI
VpE8Qb8AEDoKgNpymESsMv+055c1VToH18gPYh8JsSYLZrF5tUEsqGjEmumC
TGuop4O54azNJW4JWIO8xrDHI6kCF8Q6W821BoHbJ1M/cJ5iR5IWQMhunNyD
jDoRlsHF6fs3vErnAeN7nWxqMynkGzLQSiHXhL3MgsOBxIWxScsBJ/czxjPU
DTtfiQydpxvCRG2RSGgdViliI50wC11e298jey2r4zAZC2BvQ74YN1tosL//
oSb1S0bH5fWI3SL+4NkJSyEYw0M2hD8dhI9/nCCzEI4L7nvFyN5/ZDlM1XFt
pqqc2PsbPbCCzSRTZ3sO56F/wrwHKhPOGhgtDV06X6aebREYZ/IELW6SrAr0
6iMdB35q8ez9u6t0jdc4/mFfyrtbpvY7rx7nKdIijODBduTuRi4bwhSHyZGx
SfkdnWC2EIG3kpX83B6SpK7LWZYwn/toLGKtBDphd7bNEwQ4NBgDBHSoU2kz
sTwGQ4BTD45UCJhA0XhVbBF8b974MD5yCBJExMlKCCuoVQFFFt2URLtE5K7Y
rqdkCqiSskho1ypKZPfKCWSzQAMxZZAXu+QY7NVbzMzq3qI2yEbTcLYKdpFN
YOqArKRA+PjSyGiQscmJE4mcE306FC8WLhR0mReA5+I6ESQ0NWBp2eTsZ2uU
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

-->

</rfc>

