Babel Routing Protocol for Omnet++ More Than Just a New Simulation Module for INET Framework

Total Page:16

File Type:pdf, Size:1020Kb

Babel Routing Protocol for Omnet++ More Than Just a New Simulation Module for INET Framework Babel Routing Protocol for OMNeT++ More than just a new simulation module for INET framework Vladimír Veselý, Vít Rek, Ondřej Ryšavý Department of Information Systems, Faculty of Information Technology Brno University of Technology Brno, Czech Republic {ivesely, rysavy}@fit.vutbr.cz; [email protected] Abstract—Routing and switching capabilities of computer Device discovery protocols such as Cisco Discovery networks seem as the closed environment containing a limited set Protocol (CDP) and Link Layer Discovery Protocol of deployed protocols, which nobody dares to change. The (LLDP), which verify data-link layer operation. majority of wired network designs are stuck with OSPF (guaranteeing dynamic routing exchange on network layer) and In this paper, we only focus on a Babel simulation model. RSTP (securing loop-free data-link layer topology). Recently, Babel is increasingly more popular seen as the open-source more use-case specific routing protocols, such as Babel, have alternative to Cisco’s Enhanced Interior Gateway Routing appeared. These technologies claim to have better characteristic Protocol (EIGRP). Babel is also considered a better routing than current industry standards. Babel is a fresh contribution to protocol for mobile networks comparing to Destination- the family of distance-vector routing protocols, which is gaining its Sequenced Distance-Vector (DSDV) or Ad hoc On-Demand momentum for small double-stack (IPv6 and IPv4) networks. This Distance-Vector (AODV) routing protocols. Babel is a hybrid paper briefly describes Babel behavior and provides details on its distance vector routing protocol. Although it stems from a implementation in OMNeT++ discrete event simulator. classical distributed Bellman-Ford algorithm, it also adopts certain features from link-state protocols, such as proactive Keywords—Babel, OMNeT++, INET, Routing, Protocols, IPv6, neighbor discovery. It offers a great modularity of metric IPv4, dual-stack; calculation (currently four distinct techniques are specified) and I. INTRODUCTION pluggable best route selection policy. Babel employs a feasibility condition test to prevent route loops during Currently deployed routing protocols, e.g., OSPF, RIP, EIGRP, convergence phase. Babel protocol syntax employs type-length- have well-known characteristics. New proposals that address value (TLV) encoding, which for instance allow incorporating shortcomings of standard routing protocols need to be evaluated different address-family (currently both IPv4 and IPv6) for to reach the required level of maturity to be widely adopted by routing information. Babel has a built-in mechanism for the industry. Simulation approach can provide an initial duplicity prevention together with a data compression that evaluation of a new routing protocol and its comparison to reduces protocol overhead. existing protocols. Presented paper provides notes on development and evaluation of a simulation model for Babel This paper has the following structure. Section II covers a routing protocol. quick overview of existing implementations. Section III describes the operational theory and design supplemented with The newly developed Babel simulation model is a part of 1 implementation notes. Section IV contains validation and testing ANSAINET framework which aims at providing a variety of scenarios. The paper is summarized in Section V together with simulation models compatible with RFC specifications and outlines of our plans. reference implementations. These tools should allow for analysis of a near real network behavior. Results are freely II. CURRENT BABEL IMPLEMENTATIONS available and can be employed for further research initiatives, This section brings brief information about the availability such as simulation approach to proving (or disproving) certain of Babel for real network deployment. According to the main aspects of technologies and related protocols. The ANSAINET Babel project web page [3], there are three active (and one now supports: deprecated) implementations available: Babel dynamic unicast routing protocol; babeld – reference implementation maintained by the Proprietary first-hop redundancy protocols (FHRP) such author of Babel specification [4]; as Hot Standby Router Protocol (HSRP) and Gateway Pybabel – implementation in Python limited only to IPv6 Load Balancing Protocol (GLBP), which guarantee high- and no real cost recalculation [5]; availability of default gateway; Sbabeld – a limited implementation intended only for 1 ANSA is a long-term project carried by researchers and students at the Brno IPv6 stub-routers [6]; University of Technology aiming at extending IP network simulation framework with new simulation models. The framework is built on the original INET framework [1] shipped with OMNeT++ simulator. We have unsuccessfully searched for any Babel simulation reception (훽) and successful Hello transmission (훼). model. In particular, we are not aware of any Babel Aggregated link cost is computed as 256/(훼 ∙ 훽). implementation in the most used discrete event simulators, such as NS-2/3, OPNET, or OMNET++. Babel exchanges data as TLV records. Babel message consists of several TLVs records, which is controlled by a III. CONTRIBUTION buffering policy. Babel records are: The aim of this section is to overview the basic elements of AckReq and Ack – AckReq is the ack request, and Ack is Babel: 1) the best route selection, 2) message exchange the solicited acknowledgment response within specified mechanisms, and 3) state maintenance structures. Also, we interval using the same nonce; provide an explanation of how these elements are implemented in Babel’s simulation model of ANSAINET. Hello – Neighbor and link’s reception cost are discovered using Hello; A. Theory of Operation IHU – I Hear You is confirmation of mutual reachability Babel is codified withing IETF as experimental RFC 6126 of neighbors. Moreover, these TLVs carry link’s [7]. It leverages both unicast communication and also multicast transmission cost; address 224.0.0.111 for IPv4 and ff02::1:6 for IPv6 group communication. Babel operates over UDP on (both source and Router-Id – TLV contains unique (recommended is to destination) port 6696. use EUI-64) eight bytes long router identification within a given Babel routing domain; Babel is using feasibility condition (FC) when verifying incoming routing records. In particular, Babel employs FC NextHop – TLV carries next-hop IP address for variant called Source Node Condition [8] just as EIGRP: The subsequent Updates TLV; best known metric 푚퐴 together with a sequence number 푠퐴 (number reflecting age of metric, higher means younger and Update – It advertises or withdraws routes including more current) to a destination network N from a router 푨 denotes their prefix, two bytes long sequence number and metric; its feasible distance, 퐹퐷퐴(푵) = (푠퐴, 푚퐴). Routing information RouteReq – TLV prompts receiver to send Update received by router 푨 from router 푩 satisfies FC if and only if the regarding specified prefix; metric 퐷퐵(푵) to the destination network N advertised by router 푩 is strictly lower than 퐹퐷퐴(푵): SeqNoReq – It prompts receiver to send (or to delegate further) Update regarding specified prefix with a given 퐷퐵(푵) = (푠퐵, 푚퐵), 퐹퐷퐴(푵) = (푠퐴, 푚퐴): sequence number. 퐷퐵(푵) < 퐹퐷퐴(푵) ↔ (푠퐵 = 푠퐴 ∧ 푚퐵 < 푚퐴) ∨ 푠퐵 > 푠퐴 Pad1 and PadN – These two are padding TLVs without any meaningful content; Applying FC, we avoid counting-to-infinity problem known from original RIP implementation. However, the FC might Babel standard specifies multiple abstract data structures and cause starvation, when the only one route exists, and it cannot placeholders for information important for Babel functionality: be used because it does not satisfy FC. Therefore, Babel is Interface Table contains the list of interfaces through checking sequence numbers (just as DSDV) to recognize which Babel routing information are being sent and outdated 퐹퐷. Moreover, Babel equips routing updates also with accepted; advertising router identification to distinct between different routes to the same network prefix. Neighbor Table (NT) contains the list of all known neighbors including mutual interface (through which Babel employs the sum of links costs from the router to a neighbor is reachable), IP address, history of Hellos, given destination network as the metric. Babel evaluates metric transmission cost, sequence number (used by neighbor); on router 푨 as the route’s metric 푚퐵 announced by a neighbor 푩 plus link’s cost 푐 between 푨 and 푩: 푚퐴 = 푚퐵 + 푐 Babel Source Table (ST) is a placeholder for 퐹퐷s of different currently suggests two methods how link’s cost may be network prefixes. Each record is specific for a given calculated: advertising router and prefix (including prefix length) and contains (푠, 푚) tuple; k-out-of-j – This method is intended for wired networks using two parameters 푗 and 푘, where 0 < 푘 ≤ 푗 . A router Route Table (RT) contains Babel routes (tuples of prefix, remembers window of size 푗 containing last k Hello prefix length, next-hop, neighbor’s router-id and address, messages. If less than 푘 Hello messages have been metric, sequence number) known to this router; delivered, then cost is set to 0xFFFF, which means infinity (unreachable network), otherwise (푘 and more Pending Requests Table (PRT) maintains the list of sent Hellos have been successfully delivered) cost is set to a but not yet answered requests during network topology fixed value reflecting the link’s speed (by default 96 on convergence time; wired
Recommended publications
  • A Comprehensive Study of Routing Protocols Performance with Topological Changes in the Networks Mohsin Masood Mohamed Abuhelala Prof
    A comprehensive study of Routing Protocols Performance with Topological Changes in the Networks Mohsin Masood Mohamed Abuhelala Prof. Ivan Glesk Electronics & Electrical Electronics & Electrical Electronics & Electrical Engineering Department Engineering Department Engineering Department University of Strathclyde University of Strathclyde University of Strathclyde Glasgow, Scotland, UK Glasgow, Scotland, UK Glasgow, Scotland, UK mohsin.masood mohamed.abuhelala ivan.glesk @strath.ac.uk @strath.ac.uk @strath.ac.uk ABSTRACT different topologies and compare routing protocols, but no In the modern communication networks, where increasing work has been considered about the changing user demands and advance applications become a functionality of these routing protocols with the topology challenging task for handling user traffic. Routing with real-time network limitations. such as topological protocols have got a significant role not only to route user change, network congestions, and so on. Hence without data across the network but also to reduce congestion with considering the topology with different network scenarios less complexity. Dynamic routing protocols such as one cannot fully understand and make right comparison OSPF, RIP and EIGRP were introduced to handle among any routing protocols. different networks with various traffic environments. Each This paper will give a comprehensive literature review of of these protocols has its own routing process which each routing protocol. Such as how each protocol (OSPF, makes it different and versatile from the other. The paper RIP or EIGRP) does convergence activity with any change will focus on presenting the routing process of each in the network. Two experiments are conducted that are protocol and will compare its performance with the other.
    [Show full text]
  • Configurable Routing in Ad-Hoc Networks
    Configurable Routing in Ad-Hoc Networks Nadine Shillingford and Christian Poellabauer Department of Computer Science and Engineering University of Notre Dame Notre Dame, IN 46556 fnshillin, [email protected] Abstract— The actual use of a wireless ad-hoc network or run across the network, will be unknown a-priori. Further, ad- its operational parameters may be unknown before deployment hoc networks may be accessed by varying numbers of clients or they may change during the life time of a network. This (users), with different applications and differing expectations requires that an ad-hoc network be configurable to the unique needs of a client and that multiple clients can configure the on QoS. Therefore, it will be essential to make configurability network simultaneously. The QoS metric(s) used in the selection and customizability of future ad-hoc networks a key design of routes in an ad-hoc routing protocol can strongly affect the feature. network’s performance. Unfortunately, the majority of existing Toward this end, this work introduces the CMR (Con- routing protocols support only one or two fixed metrics in route figurable Mesh Routing) toolkit which provides an easy-to- selection. We conducted a survey of over 40 routing protocols published from 1994-2007 which indicated that 90% of the use API for ad-hoc networks, allowing applications or users protocols use one or two metrics and only 10% use three to to implement their own routing protocols and QoS metrics. four metrics in route selection. Toward this end, we propose a While our prototype implementation supports four of the most modular routing toolkit for ad-hoc networks, where users and popular QoS metrics, it is easily extensible and we expect that applications can initiate route discoveries that best suit their QoS future versions will cover a large variety of QoS metrics.
    [Show full text]
  • Openswitch OPX Configuration Guide Release 3.0.0 2018 - 9
    OpenSwitch OPX Configuration Guide Release 3.0.0 2018 - 9 Rev. A02 Contents 1 Network configuration....................................................................................................................................4 2 Interfaces...................................................................................................................................................... 5 Physical ports..................................................................................................................................................................... 5 Fan-out interfaces..............................................................................................................................................................6 Port-channel and bond interfaces....................................................................................................................................7 VLAN interfaces................................................................................................................................................................. 7 Port profiles.........................................................................................................................................................................8 3 Layer 2 bridging............................................................................................................................................10 VLAN bridging...................................................................................................................................................................10
    [Show full text]
  • RIP: Routing Information Protocol a Routing Protocol Based on the Distance-Vector Algorithm
    Laboratory 6 RIP: Routing Information Protocol A Routing Protocol Based on the Distance-Vector Algorithm Objective The objective of this lab is to configure and analyze the performance of the Routing Information Protocol (RIP) model. Overview A router in the network needs to be able to look at a packet’s destination address and then determine which of the output ports is the best choice to get the packet to that address. The router makes this decision by consulting a forwarding table. The fundamental problem of routing is: How do routers acquire the information in their forwarding tables? Routing algorithms are required to build the routing tables and hence forwarding tables. The basic problem of routing is to find the lowest-cost path between any two nodes, where the cost of a path equals the sum of the costs of all the edges that make up the path. Routing is achieved in most practical networks by running routing protocols among the nodes. The protocols provide a distributed, dynamic way to solve the problem of finding the lowest-cost path in the presence of link and node failures and changing edge costs. One of the main classes of routing algorithms is the distance-vector algorithm. Each node constructs a vector containing the distances (costs) to all other nodes and distributes that vector to its immediate neighbors. RIP is the canonical example of a routing protocol built on the distance-vector algorithm. Routers running RIP send their advertisements regularly (e.g., every 30 seconds). A router also sends an update message whenever a triggered update from another router causes it to change its routing table.
    [Show full text]
  • WMM - Wireless Mesh Monitoring
    WMM - Wireless Mesh Monitoring Ricardo Pinto [email protected] Instituto Superior T´ecnico Advisor: Professor Lu´ısRodrigues Abstract. Wireless Mesh Networks (WMN) have emerged as a poten- tial technology to quickly deploy a wireless infrastructure that is self- healing, self-configured, and self-organized. This report makes an in- troduction to WMNs, their protocols and some existing deployments. Then the problem of monitoring the operation of these networks, is ad- dressed by making a brief survey on some relevant network monitoring approaches and by pointing directions of future work in this area. 1 Introduction Within the short span of a decade, wireless networks have revolutionized the way we use our devices, bringing us cable-free mobility, always-on connectiv- ity, and reduced infrastructure costs. In the past few years, we have witnessed a tremendous growth of wireless LANs (WLANs) mainly due to their ease of deployment and maintenance. However, all wireless access points (APs) need to be connected to the wired backbone network and, therefore, WLANs still re- quire extensive infrastructure and careful planning in order to minimize their costs. Wireless Mesh Networks (WMNs) have emerged as a key technology to ease the deployment of wireless networks. Unlike traditional WiFi networks, in WMNs only a subset of APs are required to be connected to the wired network. As a result, only a subset of the nodes need wired infrastructure (these nodes serve as gateways) while the other mesh nodes have the ability to route mes- sages to the gateways, thus providing also access to the Internet. A WMN is a dynamically self-organized and self-configured network in which the nodes au- tomatically establish and maintain connectivity.
    [Show full text]
  • Open Source Software for Routing a Look at the Status of Open Source Software for Routing
    APNIC 34 Open Source Software for Routing A look at the status of Open Source Software for Routing Martin Winter OpenSourceRouting.org 1 Who is OpenSourceRouting Quick Overview of what we do and who we are www.opensourcerouting.org ‣ Started late summer 2011 ‣ Focus on improving Quagga ‣ Funded by Companies who like an Open Source Alternative ‣ Non-Profit Organization • Part of ISC (Internet System Consortium) 2 Important reminder: Quagga/Bird/… are not complete routers. They are only the Route Engine. You still need a forwarding plane 3 Why look at Open Source for routing, Why now? Reasons for Open Source Software in Routing 1 Popular Open Source Software Overview of Bird, Quagga, OpenBGPd, Xorp 2 Current Status of Quagga Details on where to consider Quagga, where to avoid it 3 What Open Source Routing is doing What we (OpenSourceRouting.org) do on Quagga 4 How you can help Open Source needs your help. And it will help you. 5 4 Reasons why the time is NOW A few reasons to at least start thinking about Open Source Could be much cheaper. You don’t need all the Money features and all the specialized hardware everywhere. All the current buzzwords. And most of it started SDN, with Open Source – and is designed for it. Does Cloud, .. your vendor provide you with the features for new requirements in time? Your Missing a feature? Need a special feature to distinguish from the competition? You have access Features to the source code. Not just one company is setting the schedule on Support what the fix and when you get the software fix.
    [Show full text]
  • What Is Administrative Distance?
    What Is Administrative Distance? Contents Introduction Prerequisites Requirements Components Used Conventions Select the Best Path Default Distance Value Table Other Applications of Administrative Distance Related Information Introduction Most routing protocols have metric structures and algorithms that are not compatible with other protocols. In a network with multiple routing protocols, the exchange of route information and the capability to select the best path across the multiple protocols are critical. Administrative distance is the feature that routers use in order to select the best path when there are two or more different routes to the same destination from two different routing protocols. Administrative distance defines the reliability of a routing protocol. Each routing protocol is prioritized in order of most to least reliable (believable) with the help of an administrative distance value. Prerequisites Requirements Cisco recommends that you have knowledge of these topics: ● Basics of the routing process. Refer to Routing Basics in Internetworking Technologies Handbook. Components Used This document is not restricted to specific software and hardware versions. Conventions Refer to Cisco Technical Tips Conventions for more information on document conventions. Select the Best Path Administrative distance is the first criterion that a router uses to determine which routing protocol to use if two protocols provide route information for the same destination. Administrative distance is a measure of the trustworthiness of the source of the routing information. Administrative distance has only local significance, and is not advertised in routing updates. Note: The smaller the administrative distance value, the more reliable the protocol. For example, if a router receives a route to a certain network from both Open Shortest Path First (OSPF) (default administrative distance - 110) and Interior Gateway Routing Protocol (IGRP) (default administrative distance - 100), the router chooses IGRP because IGRP is more reliable.
    [Show full text]
  • Bigp- a New Single Protocol That Can Work As an Igp (Interior Gateway Protocol) As Well As Egp (Exterior Gateway Protocol)
    Manuscript Number: IJV2435 BIGP- A NEW SINGLE PROTOCOL THAT CAN WORK AS AN IGP (INTERIOR GATEWAY PROTOCOL) AS WELL AS EGP (EXTERIOR GATEWAY PROTOCOL) Isha Gupta ASET/CSE Department, Noida, India [email protected] the now obsolete Exterior Gateway Protocol (EGP), as Abstract- EGP and IGP are the key components the standard exterior gateway-routing protocol used in the of the present internet infrastructure. Routers in global Internet. BGP solves serious problems with EGP a domain forward IP packet within and between and scales to Internet growth more efficiently [1,11]. domains. Each domain uses an intra-domain routing protocol known as Interior Gateway Protocol (IGP) like IS-IS, OSPF, RIP etc to populate the routing tables of its routers. Routing information must also be exchanged between domains to ensure that a host in one domain can reach another host in remote domain. This role is performed by inter-domain routing protocol called Exterior Gateway Protocol (EGP). Basically EGP used these days is Border Gateway Protocol (BGP). Basic difference between the both is that BGP has smaller convergence as compared to the IGP’s. And IGP’s on the other hand have lesser scalability as compared to the BGP. So in this paper a proposal to create a new protocol is given which can act as an IGP when we consider inter-domain transfer of traffic and acts as BGP when we consider intra-domain transfer of traffic. Figures 1: BGP topology In the above figure a simple BGP topology is shown. It consists of three autonomous systems which are linked together using serial cables.
    [Show full text]
  • Chapter 4 Network Layer
    Chapter 4 Network Layer A note on the use of these ppt slides: We’re making these slides freely available to all (faculty, students, readers). Computer They’re in PowerPoint form so you see the animations; and can add, modify, and delete slides (including this one) and slide content to suit your needs. Networking: A Top They obviously represent a lot of work on our part. In return for use, we only ask the following: Down Approach v If you use these slides (e.g., in a class) that you mention their source th (after all, we’d like people to use our book!) 6 edition v If you post any slides on a www site, that you note that they are adapted Jim Kurose, Keith Ross from (or perhaps identical to) our slides, and note our copyright of this Addison-Wesley material. March 2012 Thanks and enjoy! JFK/KWR All material copyright 1996-2012 J.F Kurose and K.W. Ross, All Rights Reserved Network Layer 4-1 Chapter 4: outline 4.1 introduction 4.5 routing algorithms 4.2 virtual circuit and § link state datagram networks § distance vector 4.3 what’s inside a router § hierarchical routing 4.4 IP: Internet Protocol 4.6 routing in the Internet § datagram format § RIP § IPv4 addressing § OSPF § BGP § ICMP § IPv6 4.7 broadcast and multicast routing Network Layer 4-2 Interplay between routing, forwarding routing algorithm determines routing algorithm end-end-path through network forwarding table determines local forwarding table local forwarding at this router dest address output link address-range 1 3 address-range 2 2 address-range 3 2 address-range 4 1 IP destination
    [Show full text]
  • Are Routing Protocols Softwares
    Are Routing Protocols Softwares Delusive and synchromesh Kory defray, but Rudolph ungraciously intend her wad. Jason tape journalistically if summer Gav jumble or hangs. Concerning and naturalized Lars still canalized his spoil fraternally. The irc to neighbors are routing set up today, or other action to protect us are Arista Networks Routing Protocols Software Engineer. This information must be queried at some cases, when link port connected routes through one. COMPARATIVE ANALYSIS OF SOFTWARE DEFINED. Internet TechnologiesRouting Wikibooks open books for county open. Calix for services or dynamically fail over underlying reality, by a new in? All neighbor lists, redistribution communities in different network at service attacks are. Oems building networks for simulation special issue on, there are used by uploading a reasonably prompt notice. Carlyle sought destination node in rather a default gateway protocols executed between all articles are necessary that. ROUTING PROTOCOLS FOR IOT APPLICATIONS AN EMPIRICAL. These software testing, security checking of inflammation can be posix compatible system under any thought of. If there was created. Clearly not be software career change route discovery, are known are. Routing algorithms for improving network nodes to cope with lower latency. If a software and support purposes specified time needed for all our routing protocols, or frequency into independent modules that are made a quiescent state routing. Llp path based on qa testing. It allows you are issued by sequence, pages visited and api. Is proving to inject or variation is. PDF Dynamic metric OSPF-based routing protocol for. Routing Protocols Software Engineer Vancouver Arista. PROTOCOL TESTING checks communication protocols in domains of Switching Wireless VoIP Routing Switching etc The goal either to check.
    [Show full text]
  • Gw2018 Portugal How to Build A
    Community Networks GLOBALGLOBAL INFORMATION INFORMATION 2018 2018 SOCIETY WATCH 2018 THE 43 COUNTRY REPORTS included in this year’s Global SOCIETYCOMMUNITY WATCH NETWORKS 2018 Information Society Watch (GISWatch) capture the different GLOBAL INFORMATION SOCIETY WATCH experiences and approaches in setting up community networks across the globe. They show that key ideas, CommunityCommunity Networks Networks such as participatory governance systems, community ownership and skills transfer, as well as the “do-it-yourself” spirit that drives community networks in many different contexts, are characteristics that lend them a shared purpose and approach. The country reports are framed by eight thematic reports that deal with critical issues such as the regulatory framework necessary to support community networks, sustainability, local content, feminist infrastructure and community networks, and the importance of being aware of “community stories” and the power structures embedded in those stories. GLOBAL INFORMATION SOCIETY WATCH GLOBAL INFORMATION SOCIETY WATCH GLOBAL INFORMATION SOCIETY WATCH 2018 Report www.GISWatch.org International Development Research Centre Centre de recherches pour le développement international AssociAtion for Progressive communicAtions (APc) A SSOCI ATION FOR PROGRESSIVE COMMUNIC ATIONS (AP C) And internAtionAl develoPment reseArch centre (idrc) Tapa_GISW_2018.indd 1 12/10/18 12:44 Global Information Society Watch 2018 International Development Research Centre Centre de recherches pour le développement international
    [Show full text]
  • RFC 8966: the Babel Routing Protocol
    Stream: Internet Engineering Task Force (IETF) RFC: 8966 Obsoletes: 6126, 7557 Category: Standards Track Published: January 2021 ISSN: 2070-1721 Authors: J. Chroboczek D. Schinazi IRIF, University of Paris-Diderot Google LLC RFC 8966 The Babel Routing Protocol Abstract 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. Status of This Memo This is an Internet Standards Track document. This document is a product of the Internet Engineering Task Force (IETF). It represents the consensus of the IETF community. It has received public review and has been approved for publication by the Internet Engineering Steering Group (IESG). Further information on Internet Standards is available in Section 2 of RFC 7841. Information about the current status of this document, any errata, and how to provide feedback on it may be obtained at https://www.rfc-editor.org/info/rfc8966. Copyright Notice Copyright (c) 2021 IETF Trust and the persons identified as the document authors. All rights reserved. This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License.
    [Show full text]