| Internet-Draft | Dynamic Flooding Algorithm | August 2026 |
| Chen & Li | Expires 24 February 2027 | [Page] |
Link-state routing protocols suffer from excessive flooding in dense network topologies. Dynamic flooding alleviates the problem by decoupling the flooding topology from the base topology. Link-state protocol updates are flooded only on the sparse flooding topology while data traffic is still forwarded on the base topology.¶
This document describes an algorithm to obtain a sparse subgraph from a dense graph. The resulting subgraph has certain desirable properties and can be used by a centralized Area Leader to compute a flooding topology for dynamic flooding.¶
This document discloses the algorithm that the authors have developed in order to make it easier for other developers to implement similar algorithms. The authors do not claim that our algorithm is optimal, rather, it is a pragmatic effort and the authors expect that further research and refinement can improve the results.¶
The authors are not currently proposing that this algorithm be standardized, nor that the working group use this as a basis for further standardization work; however, the authors have no objections if the working group chooses to do so. This document is published as an Experimental RFC to gain operational and implementation experience with the specified dynamic flooding algorithm. The intent is to assess the suitability of this algorithm for advancement to the Standards Track as a Proposed Standard, pending sufficient deployment experience and feedback from the community.¶
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."¶
This Internet-Draft will expire on 24 February 2027.¶
Copyright (c) 2026 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Revised BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Revised BSD License.¶
In [RFC9667], dynamic flooding is proposed to reduce the flooding of link-state protocol packets in the network. The basic idea is to find a sparse flooding topology from the base topology and flood link-state updates, i.e., IS-IS Link-State Protocol Data Units (LSPDUs or LSPs) and OSPF Link-State Advertisements (LSAs), only on the flooding topology. The flooding topology should have the following properties:¶
More discussion of these properties can be found in [RFC9667].¶
With the above properties in mind, this document describes an iterative algorithm to compute the flooding topology. This is a centralized algorithm and does not require its own IGP algorithm code point.¶
This specification is published with Experimental status to allow the Internet community to gain experience with this dynamic flooding algorithm prior to considering it for advancement to the Standards Track. The experiment is intended to determine:¶
Implementors and operators who deploy this specification are encouraged to document their experiences and share feedback with the LSR Working Group at lsr@ietf.org. Such feedback will be instrumental in evaluating whether this specification should be advanced to Proposed Standard status.¶
The LSR WG may review reported implementation and deployment experience periodically and decide whether to revise, retire, or advance the specification. A report on the outcomes of the experiment will be produced prior to any decision to advance or retire this specification.¶
Advancement of this specification to Proposed Standard will be considered if the following criteria are met:¶
This algorithm models the base topology as an undirected connected graph. Each system or pseudonode in the area is represented by a node in the graph. An edge connects two nodes when the LSDB indicates two-way connectivity between them, consistent with the [RFC9667] connected-network-graph construction. Given the set of the nodes and the set of edges, this document describes an algorithm to compute a biconnected (if possible) subgraph that covers all nodes. The subgraph is computed with consideration of diameter and node degree.¶
The input to the algorithm is the contents of the Area Leader's LSDB. This may include:¶
This section presents an overview of the algorithm. More details can be found in Section 4.¶
A simple cycle that covers all nodes is a biconnected subgraph with balanced node degrees. While it has some desirable properties, a simple cycle is not suitable as a flooding topology at large scale. With N nodes in the area, a link-state update has to take N/2 hops to reach all nodes. The undue propagation delay causes a long convergence time.¶
The proposed algorithm constructs a subgraph composed of small overlapping cycles. The base graph is denoted by G(V, E), where V is the set of all nodes in this area, and E is the set of edges. The subgraph to be computed is denoted by G', which starts as an empty set of nodes and an empty set of edges, G'({}, {}).¶
The subgraph constructed by this algorithm has the following properties:¶
Together with the encoding scheme in [RFC9667], this algorithm can be used to implement centralized dynamic flooding. The area leader can build the base graph from its link-state database (LSDB), apply this algorithm to compute the flooding topology, and then encode it into the IS-IS Area Node IDs TLV and the IS-IS Flooding Path TLV, the OSPF Area Router IDs TLV or the OSPF Flooding Path TLV, defined by [RFC9667], depending on the protocol. In a topology change event, the area leader can repeat the above process and send out the new flooding topology.¶
The outlined algorithm allows for different approaches to find the initial cycle and subsequent arc paths. The algorithm does not provide the theoretically optimal solution. Rather, the aim is to find a practical approach that works for any connected base graph, and is also easy to implement.¶
Since this algorithm is intended for centralized computation, choices such as depth-first search (DFS) depth limit, tie-breaking, neighbor ordering, and endpoint selection are implementation specific and do not affect protocol interoperability, provided the resulting topology is correctly encoded using [RFC9667].¶
The initial cycle forms a base of the subgraph computation. Intuitively, the initial cycle should be around the centroid of the base graph, and the algorithm gradually expands outward. Complicated graph analysis can help, but is not desired.¶
The algorithm starts by selecting a starting node and then finding a path that ends at this node. The node with the highest degree seems to be a logical choice for the starting node. The degree of each node can be easily determined when the base graph is constructed from the LSDB. Starting from this node, the algorithm performs a DFS for a limited number of steps, and then a breadth-first search (BFS) to find the shortest path back to the starting node. The restriction of the DFS depths and the use of BFS effectively help limit the diameter of the initial cycle. Below is a summary of the procedure. The details of the well-known DFS and BFS algorithms are omitted for brevity.¶
If the selected DFS path and the subsequent BFS search find a return path to the starting node, the resulting path forms a cycle. If no such path is found, the exception handling in Section 4.3 is used.¶
After obtaining an initial cycle, the algorithm recursively adds arc paths to the subgraph until all nodes are included. Each arc path's two endpoints are chosen from the current subgraph. This ensures that the resulting subgraph remains biconnected. To limit the diameter of the resulting subgraph, the algorithm selects an arc path with limited length and attaches it closer to the initial cycle.¶
In each iteration, there is a starting subgraph, which includes the initial cycle and the arc paths obtained in earlier iterations. The algorithm first selects a node from the starting subgraph that has at least one neighbor that is not in the starting subgraph. To balance the degree distribution, the algorithm selects a node that has the least degree in the starting subgraph. Meanwhile, the algorithm tries to place the new arc path closer to the initial cycle, which will help reduce the diameter of the resulting subgraph. As the number of iterations increases, it becomes hard to find such nodes that meet both conditions. A tradeoff between the node degree and the node distance to the initial cycle has to be made. This tradeoff is implementation specific.¶
Starting from the selected node, the algorithm performs a DFS for a limited number of steps in the base graph to include nodes and edges that do not belong to the starting subgraph. Then BFS is performed to find the shortest path back to any node in the starting subgraph except the starting node of this iteration. The resulting path is combined with the starting subgraph to generate a new subgraph, which serves as the starting subgraph in the next iteration. The iteration is repeated until all nodes in the base graph are included in the subgraph.¶
The procedure in each iteration is very similar to the one used to find the initial cycle, except that the two endpoints of the new path do not match:¶
By correctly marking the visited nodes before DFS and BFS, the algorithm ensures that the obtained arc path (if it exists) has two endpoints and only these two points in the starting subgraph.¶
If the base graph is biconnected, there exists a simple cycle between any two nodes. This ensures that the algorithm finds one arc path in each iteration and yields a biconnected subgraph that covers all nodes in the base graph. Otherwise, the algorithm may not be able to find an arc path with both endpoints belonging to the starting subgraph in that iteration. When this happens, the edge between the last node found by DFS and its parent is a cut edge in the base graph. For connectivity, this edge must be included in the resulting subgraph. Hence, when step 4 (the BFS stage in earlier procedures) fails, the above algorithm is amended with the following:¶
Similarly, the same problem may occur when selecting the initial cycle. Step 6 can be repeated until a cycle is found. However, if a cut edge is found, select a different first neighbor of the starting node to be visited by the DFS and repeat the procedure. If all edges connecting to the starting node are cut edges, select a different starting node. If an initial cycle is not found after all the above efforts, indicating that the base graph does not have a cycle, then return the base graph as the result.¶
A pseudonode is modeled as a node in the base graph. The proposed algorithm can be applied as-is. There are, however, possible optimizations for the pseudonode case. First, a pseudonode is not required to be on the flooding topology in this centralized algorithm, as pseudonodes do not actually participate in flooding. The algorithm can thus be terminated as soon as all real nodes are included in the subgraph. Second, if a pseudonode is included on the flooding topology, all nodes connecting to this LAN will have to flood their LSPs to this LAN (see [RFC9667] Section 6.6). Hence, if a pseudonode is included in the subgraph, it will automatically provide uni-connectivity to all of its neighbors that are not yet included. Other edges may still be required to provide biconnectivity. The algorithm can take advantage of this LAN property to reduce the edges in the subgraph.¶
The proposed algorithm can be applied to any connected base graph. For ease of explanation, consider a complete graph of 10 nodes and 45 edges. To limit the diameter of the resulting subgraph, the maximum steps in the DFS is set to 3.¶
Find an initial cycle.¶
Find the first arc path.¶
Find the second arc path.¶
The subgraph found by the proposed algorithm can be represented by three paths:¶
The subgraph has 12 edges, significantly reduced from 45 in the base graph. The highest node degree is 3 and the lowest node degree is 2. The diameter of the subgraph is 4, increased, as expected, from that of the base graph.¶
The operational considerations for this algorithm are the same as for any centralized algorithm as described in [RFC9667], and are all derived from that document.¶
The Area Leader election mechanism must be operating correctly and elect a single leader that all area nodes must converge on eventually. If there is no agreement on the Area Leader, there will be inconsistency throughout the area. As the Area Leader election algorithm is taken directly from the well-proven Designated Intermediate System election algorithm, no operational issues are anticipated in this function. An implementation SHOULD provide an indication of its Area Leader.¶
The Area Leader then must advertise the Area Leader sub-TLV and specify that it is using a centralized algorithm. This seems like this is very low operational risk as this is a constant value.¶
Only the Area Leader executes the algorithm found in this document. The Area Leader then advertises its results in the Flooding Path TLV and Area Node IDs TLV. If there are operational issues with any centralized algorithm, they can be detected by comparing these results to the actual physical topology.¶
Each node in the area is responsible for parsing these results and understanding its role in the flooding topology. An implementation SHOULD provide an indication of which adjacencies are on the flooding topology via some management plane mechanism. The details of this mechanism and implementation dependent and out of scope for this document.¶
Partial deployment of Dynamic Flooding is fully supported. If a node does not support Dynamic Flooding, then it is a legacy node and supports standard flooding, which implies that it floods on all interfaces. Thus, it is satisfying the expectations of the algorithm and flooding on the flooding topology. Of course, it will also flood on adjacencies that are not part of the flooding topology, and it will not help to reduce the flooding in the area.¶
The largest operational risk for Dynamic Flooding comes from topological changes, as detailed in [RFC9667], Section 6.8. If an implementation does not handle the partition of the flooding topology and temporary flooding correctly, it will result in partial flooding and inconsistent routing.¶
This document introduces no new security issues. Security issues within dynamic flooding are already discussed in [RFC9667].¶
This document makes no requests of IANA.¶
This document does not define a distributed-mode IGP algorithm for computing the flooding topology and therefore does not request an allocation from the IGP Algorithm Type For Computing Flooding Topology registry.¶