<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.31 (Ruby 3.2.3) -->
<?rfc docmapping="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-jadoon-nmrg-agentic-ai-autonomous-networks-00" category="info" submissionType="IRTF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title abbrev="Agentic-AI-Arch-ACN">Agentic AI Architectural Principles for Autonomous Computer Networks</title>
    <seriesInfo name="Internet-Draft" value="draft-jadoon-nmrg-agentic-ai-autonomous-networks-00"/>
    <author initials="M. A." surname="Jadoon" fullname="Muhammad Awais Jadoon">
      <organization>InterDigital Europe Ltd</organization>
      <address>
        <postal>
          <city>London</city>
          <country>GB</country>
        </postal>
        <email>muhammad.awaisjadoon@interdigital.com</email>
      </address>
    </author>
    <author initials="S." surname="Robitzsch" fullname="Sebastian Robitzsch">
      <organization>InterDigital Europe Ltd</organization>
      <address>
        <postal>
          <city>London</city>
          <country>GB</country>
        </postal>
        <email>sebastian.robitzsch@interdigital.com</email>
      </address>
    </author>
    <author initials="C. J." surname="Bernardos" fullname="Carlos J. Bernardos">
      <organization>Universidad Carlos III de Madrid</organization>
      <address>
        <postal>
          <city>Madrid</city>
          <country>Spain</country>
        </postal>
        <email>cjbc@it.uc3m.es</email>
      </address>
    </author>
    <date/>
    <area>Internet Research Task Force</area>
    <workgroup>NMRG</workgroup>
    <abstract>
      <?line 52?>
<t>Agentic AI systems combine planning, reasoning, tool invocation, and
feedback loops to pursue system-defined goals with a controlled degree of
autonomy. In networking, this enables an evolution from statically
configured automation toward goal-driven closed-loop operations spanning
multiple protocol layers and administrative domains.</t>
      <t>This document introduces architectural principles for "agentic augmentation"
of the existing layered protocol stack as represented by the Internet
protocol suite (IP suite). The key concept of the proposed principles is
that deterministic protocol layering remains intact for interoperability,
while AI Agents are introduced as first-class entities at each IP suite
layer and are coordinated by one or more agent controllers via agentic methods
and procedures.</t>
      <t>The purpose of this document is to initiate discussion within the research
community on agentic networking. It identifies architectural research
challenges that should be discussed to enable the addition of one or more
AI Agents at one or more IP suite layers with the goal to allow AI Agents
to improve the behaviour of a layer through reasoning with AI Agents at the
same or other IP suite layers.</t>
    </abstract>
  </front>
  <middle>
    <?line 73?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Computer networks have long pursued higher automation for self-configuration, self-healing, self-optimization, and self-protection. Recent advances in AI, including agentic AI systems, enable a shift from isolated automation approaches toward distributed, goal-driven closed-loops that can plan multi-step actions, invoke tools, adapt to feedback, and coordinate with peers to improve the behaviour of existing or new protocols.</t>
      <t>However, multi-agent deployments are typically proprietary: there is no widely adopted, vendor-independent approach for naming, reaching, discovering, and coordinating AI Agents that act on network state across multiple protocol layers and domains.</t>
      <t>This document is intended to seed IETF discussion by proposing a architectural principles  and an interface model for "agentic augmentation" of the existing layered OSI stack. The objective is not to replace the deterministic behavior of protocols used for interoperability and packet transport. Instead, the architecture introduces AI Agents at each layer, coordinated by orchestrators, so that closed-loop automation can be pursued in a structured and governable way.</t>
    </section>
    <section anchor="terminology-and-conventions">
      <name>Terminology and Conventions</name>
      <t>AI Agent (AIA): A software entity capable of pursuing goals by reasoning and planning, and by invoking tools (APIs, protocols, controllers, knowledge bases) to observe state and perform actions.</t>
      <t>Agentic AI System: A system composed of one or more AI Agents and optional controller(s) that performs goal-directed operations over time by using available tools and feedback loops.</t>
      <t>Agent Controller: A logical function that accepts an input request/goal, performs task decomposition and assignment, coordinates one or more AI Agents, and produces outputs or verified actuation outcomes. Controllers may be per-layer (distributed) or centralized.</t>
      <t>Agent Net: A set of AI Agents associated with a specific layer of the stack, together with their coordination logic and tools for that layer.</t>
      <t>IP Suite Stack Interfaces: The conventional (non-agentic) interfaces between adjacent layers (e.g., a transport interface exposed to applications), and the conventional control/management interfaces that configure or observe a layer (e.g., socket APIs, YANG/NETCONF/RESTCONF, routing protocol configuration, telemetry streams).</t>
      <t>Tool: Any callable capability used by an AI Agent to ground reasoning or execute actions (e.g., retrieve telemetry, push configuration, initiate diagnostics, query a digital twin, call a controller).</t>
    </section>
    <section anchor="baseline-ip-suite-layered-protocol-stack">
      <name>Baseline: IP Suite Layered Protocol Stack</name>
      <t>Layering is central to interoperability. In a conventional layered stack, upper layers invoke services from lower layers using static, well-defined interfaces. In practice, deployed systems follow the Internet protocol suite as shown in Figure 1, commonly represented by Application, Transport, Internet, and Link/Access and physical layers. Nevertheless, the layered abstraction remains a useful conceptual baseline for discussing where automation and closed-loop decision functions are inserted.</t>
      <artwork><![CDATA[
           +------------------+
           |   Application    |
           +------------------+
           |    Transport     |
           +------------------+
           |     Internet     |
           +------------------+
           |   Link / Access  |
           +------------------+
           |     Physical     |
           +------------------+

         Figure 1: IP Suite Layered Stack
]]></artwork>
    </section>
    <section anchor="proposed-agentic-augmentation-at-to-layered-approach">
      <name>Proposed Agentic Augmentation at to Layered Approach</name>
      <t>The proposed approach is hybrid: the deterministic layered protocol stack remains the baseline for interoperability and packet transport, while agentic functions are introduced alongside each layer.</t>
      <t>In the proposed architecture, each layer contains:</t>
      <ul spacing="normal">
        <li>
          <t>An Agent Net that can interpret intents relevant to that layer, gather context (telemetry/state), reason, propose actions, and execute actions through the layer's tools. Agent Net may have one or more AIAs for different purposes within in the layer. For example, a layer may have different agents for congestion control, QoS adaptation, policy and compliance and intent-parsing.</t>
        </li>
        <li>
          <t>An agent controller or simply controller manages task decomposition, assignment, guardrails and governance. A controller may or may not be an AIA.</t>
        </li>
      </ul>
      <t>The proposed model targets a "structured autonomy" property: autonomous actions are possible, but are constrained through explicit reference points, policies, authentication/authorization, and auditable workflows.</t>
      <section anchor="per-layer-agent-nets-and-per-layer-controllers">
        <name>5.1. Per-Layer Agent Nets and Per-Layer Controllers</name>
        <t>In this option, each layer has its own Agent Net and its own controller. This aligns with operational decomposition (e.g., separate ownership or tooling per layer), and supports scaling and fault isolation.</t>
        <t>Figure 2a illustrates the concept.</t>
        <artwork><![CDATA[
     +------------------+    +-------------------------+    +---------------------+
     |   Application    |<-->|  Agent Net (App)        |<-->|  Controller (App)   |
     +------------------+    +-------------------------+    +---------------------+
     |    Transport     |<-->|  Agent Net (Transport)  |<-->|  Controller (Trans) |
     +------------------+    +-------------------------+    +---------------------+
     |     Internet     |<-->|  Agent Net (Internet)   |<-->|  Controller (Int)   |
     +------------------+    +-------------------------+    +---------------------+
     |  Link / Access   |<-->|  Agent Net (Link)       |<-->|  Controller (Link)  |
     +------------------+    +-------------------------+    +---------------------+
     |    Physical*     |<-->|  Agent Net (Phy)*       |<-->|  Controller (Link)* |
     +------------------+    +-------------------------+    +---------------------+

     Figure 2a: Proposed Stack with Per-Layer Agent Nets and Per-Layer Controllers
]]></artwork>
        <t>The Physical layer is shown for completeness and includes data-link and access technologies. Some aspects of access technologies may be outside IETF scope and would typically be accessed as external tools/controllers rather than specified by IETF protocols.</t>
      </section>
      <section anchor="relationship-to-the-deterministic-stack">
        <name>5.3. Relationship to the Deterministic Stack</name>
        <t>The hybrid architecture is intended to preserve deterministic interoperability of the underlying stack:</t>
        <ul spacing="normal">
          <li>
            <t>Deterministic inter-layer service interfaces (e.g., a transport service offered to applications) remain unchanged.</t>
          </li>
          <li>
            <t>AI Agents do not replace protocols; they invoke tools that already exist (or will be defined) to observe and actuate layer behavior.</t>
          </li>
          <li>
            <t>The architecture explicitly separates (a) packet transport and protocol interoperability, from (b) goal-driven automation logic.</t>
          </li>
        </ul>
        <t>This separation is central to making agentic automation governable, testable, and incrementally deployable.</t>
      </section>
    </section>
    <section anchor="functional-workflow-and-reference-points">
      <name>Functional Workflow and Reference Points</name>
      <section anchor="controller-and-agent-functional-blocks">
        <name>6.1. Controller and Agent Functional Blocks</name>
        <t>A generic agentic workflow can be represented by the following functional blocks:</t>
        <t>Controller:</t>
        <ul spacing="normal">
          <li>
            <t>I/O Engine: handles intent/goal/request intake and output formatting.</t>
          </li>
          <li>
            <t>Discovery: finds relevant agents, tools and capabilities.</t>
          </li>
          <li>
            <t>Task Assignments: decomposes tasks and assigns them to agents (planning).</t>
          </li>
        </ul>
        <t>AI Agent:</t>
        <ul spacing="normal">
          <li>
            <t>Reasoning: interprets tasks, plans steps, and maintains context.</t>
          </li>
          <li>
            <t>Synthesis: composes intermediate results into coherent outputs.</t>
          </li>
          <li>
            <t>Execution: invokes tools and performs actions.</t>
          </li>
          <li>
            <t>Reinforcement: learns/adapts from feedback.</t>
          </li>
          <li>
            <t>Conflict Resolution: resolves competing proposals/actions among agents or across layers.</t>
          </li>
        </ul>
        <t>Figure 3 illustrates this functional view and explicitly labels reference points that are candidates for interoperable definition.</t>
      </section>
      <section anchor="reference-points-interfaces">
        <name>6.2. Reference Points (Interfaces)</name>
        <t>The following reference points are identified:</t>
        <t>C_I (Controller Input): Input request/goal interface into the controller.</t>
        <t>C_O (Controller Output): Output response (including action confirmation, explanation, or result summary) from the controller.</t>
        <t>C_E (Controller Execution Feedback): Interface for execution-related status and feedback flow between controller and agent reasoning context (e.g., progress, intermediate outcomes, updated constraints).</t>
        <t>AIA_E (Agent Execution / Task Assignment): Task assignment and execution coordination between controller and AI Agent execution function.</t>
        <t>AIA_R (Inter-AI-Agent Reasoning/Context Exchange): Interface for AI Agents to exchange context, negotiate, and coordinate during reasoning and planning.</t>
        <t>AIA_CR (Inter-AI-Agent Conflict Resolution): Interface supporting detection, signaling, and resolution of conflicts among AI Agents (including conflicts spanning layers).</t>
        <artwork><![CDATA[
        +------------------+   C_I   +--------------------------------------+ 
        |   Input Request  |-------> |              Controller              | 
        +------------------+         |                                      | 
                                     |   +----------+   +----------+        | 
        +------------------+   C_O   |   | I/O      |-->| Discovery |----+  | 
        | Output Response  |<------- |   | Engine   |   +----------+    |   | 
        +------------------+         |   +----------+                   |   | 
                                     |        ^ C_E                     |   | 
                                     |        |                         v   | 
                                     |   +----------------+     +-----------+ 
                                     |   | Task           |     | Task      | 
                                     |   | Assignments    |---->| Assignment| 
                                     |   +----------------+     +-----------+ 
                                     +----------------------------------|---+ 
                                                                        | 
                                                                       AIA_E 
                                                                        | 
                                     +----------------------------------v---+ 
                                     |                 AI Agent              | 
                                     |                                       | 
                                     |   +-----------+    +-----------+      | 
                       AIA_R  <----> |   | Reasoning |<-->| Synthesis  |      | 
                                     |   +-----------+    +-----------+      | 
                                     |        ^                 ^            | 
                                     |        |                 |            | 
                                     |   +------------------+   |            | 
                       AIA_CR <----> |   | Conflict          |---+            | 
                                     |   | Resolution        |                | 
                                     |   +------------------+                | 
                                     |                                       | 
                                     |   +-----------+    +----------------+ | 
                                     |   | Execution |<-->| Reinforcement  | | 
                                     |   +-----------+    +----------------+ | 
                                     |           |                           | 
                                     |           v                           | 
                                     |        Tools / Controllers            | 
                                     +---------------------------------------+
                                                       
          Figure 3: Functional Workflow of Agentic AI Systems with Reference Points (Conceptual)
]]></artwork>
        <t>The intent is not to prescribe a single protocol, but to establish common reference points so that multiple protocol proposals (e.g., agent-to-agent, agent discovery, tool invocation) can be evaluated against a consistent architectural model.</t>
        <t>In this document, the term "CX interface" refers to the controller external interfaces (primarily C_I and C_O), and the term "AIAX interfaces" refers to the agent-related interfaces (C_E, AIA_E, AIA_R, AIA_CR) shown above.</t>
      </section>
    </section>
    <section anchor="challenges-motivating-interoperable-work">
      <name>Challenges Motivating Interoperable Work</name>
      <t>This section summarizes key challenges observed in multi-layer, multi-agent deployments that motivate IETF discussion:</t>
      <ul spacing="normal">
        <li>
          <t><strong>Lack of a common way for AIAs to identify and reach each other</strong>:<br/>
Agents operate at different technical layers and environments. There is no consistent way to name, locate, and address agents across networks and platforms. This may results in fragile interoperability, high integration cost, and limited scaling in multi-vendor environments.</t>
        </li>
        <li>
          <t><strong>Limited service discoverability and failure signaling for AIAs</strong>:<br/>
Agents need to discover other agents, determine if a service exists, and understand why communication failed. This may result in silent failures, unbounded retries, incorrect decisions from incomplete information, and reduced trust in automation.</t>
        </li>
        <li>
          <t><strong>Insufficient data provisioning for training and adaptation</strong>:<br/>
Agents need data not only for initial training but also during operation or for updates. Agents need consistent approaches for accessing additional data and exchanging learning-relevant information in consistent formats.</t>
        </li>
        <li>
          <t><strong>Distributed security token and access control management</strong>:<br/>
Agents require credentials to prove identity, access resources, and act on behalf of users/systems. Token creation, scoping, renewal, and revocation are not unified across agent types and layers, complicating audit and compliance.</t>
        </li>
      </ul>
      <t>These challenges are compounded by multi-domain operation, different trust boundaries, and heterogeneous tooling.</t>
    </section>
    <section anchor="security-safety-determinism-and-accountability-considerations">
      <name>Security, Safety, Determinism, and Accountability Considerations</name>
      <t>Agentic AI systems introduce architectural risks beyond those associated with traditional automation or centralized controllers.</t>
      <ul spacing="normal">
        <li>
          <t><strong>Sustainability</strong>:<br/>
Continuous inference, multi-agent coordination, and expanded telemetry exchange may increase energy consumption and management-plane load. Architectural mechanisms prefer bounding control-plane amplification and computational overhead.</t>
        </li>
        <li>
          <t><strong>Security</strong>:<br/>
Agentic systems expand the attack surface through:  </t>
          <ul spacing="normal">
            <li>
              <t>Tool invocation chains that can enable privilege escalation.</t>
            </li>
            <li>
              <t>Cross-agent coordination interfaces that can propagate compromise.</t>
            </li>
            <li>
              <t>Persistent memory and context that can be subject to poisoning.</t>
            </li>
            <li>
              <t>Model-driven reasoning that can be influenced by malicious or malformed inputs.</t>
            </li>
          </ul>
          <t>
Compromise of a single agent can have cascading impact across layers if coordination boundaries are not explicitly constrained.</t>
        </li>
        <li>
          <t><strong>Deterministic Guardrails</strong>:<br/>
Networking environments require bounded and predictable behavior. Agentic augmentation is intended to preserve deterministic protocol invariants and stability properties of the underlying stack. Guardrail mechanisms can include:  </t>
          <ul spacing="normal">
            <li>
              <t>Policy-constrained action spaces.</t>
            </li>
            <li>
              <t>Pre-execution validation against safety envelopes.</t>
            </li>
            <li>
              <t>Transactional rollback and state checkpointing.</t>
            </li>
            <li>
              <t>Rate-limited reconfiguration to prevent oscillation.</t>
            </li>
            <li>
              <t>Deterministic conflict resolution hierarchies.</t>
            </li>
            <li>
              <t>Human override and escalation triggers.</t>
            </li>
          </ul>
          <t>
These mechanisms ensure that autonomy remains structured and does not undermine protocol correctness or service guarantees.</t>
        </li>
        <li>
          <t><strong>Accountability</strong>:<br/>
Autonomous decisions are expected to be traceable to inputs, policies, and authorization context. Auditable execution logs and explainability hooks are required to support compliance, debugging, and operational trust.</t>
        </li>
      </ul>
      <t>This document does not define specific mechanisms but asserts that structured autonomy and deterministic safety envelopes are foundational architectural requirements for agentic networking.</t>
    </section>
    <section anchor="relationship-to-existing-ietfirtf-work">
      <name>Relationship to Existing IETF/IRTF Work</name>
      <t>This document is complementary to multiple ongoing efforts in the IETF and IRTF that touch on autonomic networking, AI agents for network management, and agent communication. These efforts can be used as inputs when refining protocols that realize the reference points in this draft.</t>
    </section>
    <section anchor="recommendations-and-next-steps-for-ietf-discussion">
      <name>Recommendations and Next Steps for IETF Discussion</name>
      <t>The following near-term discussion items are proposed:</t>
      <ol spacing="normal" type="1"><li>
          <t>Discuss an agree on the terminology for the agentic AI architecture</t>
        </li>
        <li>
          <t>Orchestration reference framework and reference points: Refine the CX and AIAX reference points and their semantics. Determine what "minimum interoperability" means for each reference point in a multi-vendor environment.</t>
        </li>
        <li>
          <t>Agent registration, discovery, and lifecycle: Identify interoperable mechanisms for agent discovery and capability advertisement, including failure signaling and versioning.</t>
        </li>
        <li>
          <t>Security tokens, authorization, and auditability: Identify how agents authenticate, obtain scoped authorization, and produce auditable action traces when acting on network state.</t>
        </li>
        <li>
          <t>Layer-by-layer automation building blocks: Use the architecture to guide follow-on documents that focus on automation and closed-loop control within specific layers (e.g., routing layer, transport layer, service layer), without conflating those with the inter-agent interface problem.</t>
        </li>
      </ol>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>TBD</t>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>TBD</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-normative-references">
      <name>Normative References</name>
      <reference anchor="RFC2119" target="https://www.rfc-editor.org/rfc/rfc2119">
        <front>
          <title>Key words for use in RFCs to Indicate Requirement Levels</title>
          <author initials="S." surname="Bradner" fullname="S. Bradner">
            <organization/>
          </author>
          <date year="1997"/>
        </front>
        <seriesInfo name="RFC 2119" value=""/>
      </reference>
      <reference anchor="RFC8174" target="https://www.rfc-editor.org/rfc/rfc8174">
        <front>
          <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
          <author initials="B." surname="Leiba" fullname="B. Leiba">
            <organization/>
          </author>
          <date year="2017"/>
        </front>
        <seriesInfo name="RFC 8174" value=""/>
      </reference>
    </references>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA81cbXMbR3L+jl8xxfsQUQJASb7LxUzKdTAl+ZjoLSRd51Qq
vhrsDoA1d3f2dnZBw1H+e57unpmdBUBblBxfWGWLwM729PR0P/0yPZzNZpOu
6Epzrk4Wa1N3RaYWl2rRZpuiM1nXt7pU79uizoqmNE6tbKsWfWdrW9neqQtb
NX1nWvXWdHe2vXUnE71ctmZ7rjy12eJyRtRmi4u3k9xmta4wV97qVTf7QefW
1rO6atcz7YfrYqYj/Vntyc6ePp3kusOb//1icfPyfyaua42uztXl1c2rSYYn
a9vuzlVRr+ykaNpz1bW9654/ffrl0+cTjbEYWoNREFRXxhkNltSNdrfqlW0z
M6FZ1q3tm3P19s3VN6Cv6/yvurQ15twZN2mKc/Wfnc2mytkWk68cfttV8gvW
VemmKer1f00mYH9j2/OJUjPw4yDYN3O1mKt/5dWe4HulRAonb/qNriqdq8Wd
LtxohG3XGMA8vyjWRYdteNm3tjHqdZfLEFPposSgylOZa6IiQv1TQW/m8uY8
s5W8khUdpHTy2tZ5mCizfd2R7E6++fokYfp6rq7ssuh+ctlmxPS1WWrXFbre
f/4All2gMW8Djc/n+AIynquvscm6za0bMX2h29K6I8+F6W/rYmtaV+TYCz/0
8vJS5Ua90Xlb7HGf/bDM/lR08z77opobN2I0HT8wet3oAtxPattWusNcpB5X
ry6eP3v25TmPDUb4b2anoIy5mFrvDBZHI53qLFQ4L0jZocJ/64vWVLAZ9dps
TemZGHSPfmZxy7DsVue1aWWYmNKzL7/8I390pi2MI9vBWMyliC0Z2el2bTp8
vem6xp2fnd3d3c3bVTYzedHZdg7xneEj/Scvybr+6dkffz9e16JaFuseMlJ2
pb5tGtNmGovbOvXa3vkPslKeXZEc/kJy+NmFfT3H8oulTpf1/Omze5ZFXD14
WfLSDDhJ/1N6CejRWTdJ0NLtXGcqh/3GImujmlLXNcBgqgA8zsqvnbUlVri1
2MDC1lMFgJmsjMmXOrtVpbUNb3HTt643nuQsNysQzNXa6tKpu6LbKI1poFW2
LPF9btatMRDpxIPmbg4lUR42Zd4NkMXUeknwDaM1W1v2xIFatbZSADqsQpfl
bgK6K+xRC7pErWI+wdMdzIU5mEG1t6ZWGezD5DPiWcG8Wx7olGtk2ZOqLzty
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

-->

</rfc>
