<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.29 (Ruby 2.6.10) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-v6ops-ipv6-app-testing-01" category="bcp" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title abbrev="ipv6-app-testing">Testing Applications' IPv6 Support</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-v6ops-ipv6-app-testing-01"/>
    <author fullname="Philipp S. Tiesel">
      <organization>SAP SE</organization>
      <address>
        <email>philipp@tiesel.net</email>
        <email>philipp.tiesel@sap.com</email>
      </address>
    </author>
    <author fullname="Jen Linkova">
      <organization>Google</organization>
      <address>
        <email>furry13@gmail.com</email>
        <email>furry@google.com</email>
      </address>
    </author>
    <author fullname="Kyle Ouellette">
      <organization abbrev="UNH-IOL">University of New Hampshire Interoperability Labs</organization>
      <address>
        <email>kouellette@iol.unh.edu</email>
      </address>
    </author>
    <author fullname="Ben Patton">
      <organization abbrev="UNH-IOL">University of New Hampshire Interoperability Labs</organization>
      <address>
        <email>bpatton@iol.unh.edu</email>
      </address>
    </author>
    <date year="2026" month="May" day="26"/>
    <area>Operations and Management</area>
    <workgroup>v6ops</workgroup>
    <keyword>IPv6</keyword>
    <keyword>Applications</keyword>
    <keyword>Testing</keyword>
    <abstract>
      <?line 101?>

<t>This document provides guidance for application developers and software as a service providers on how to approach IPv6 testing in Dual-stack (IPv4+IPv6), and IPv6-only scenarios, including "IPv6-only-strict" scenarios without any connectivity towards any relevant IPv4 endpoint.
It discusses common misconceptions about the degree to which operating systems and libraries can abstract IPv6 issues away
and explains common regressions to avoid when deploying IPv6 support.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-v6ops-ipv6-app-testing/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/ietf-wg-v6ops/draft-itef-v6ops-ipv6-app-testing"/>.</t>
    </note>
  </front>
  <middle>
    <?line 108?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>For the last 20 years, enabling applications for IPv6 has focused on coexistence with IPv4 and allowing traffic to shift towards IPv6 without breaking IPv4 operation.
This target has changed in part due to a series of national regulations mandating state entities to proceed in the migration to IPv6, e.g., in
China <xref target="CN-CAC-2023"/>, the United States of America <xref target="US-OMB-M-21-07"/>, Germany <xref target="DE-BIT-2020-14"/>, and the Czech Republic <xref target="CZ-ENDv4"/>.
IPv6 support today means being fully functional in the absence of IPv4 and transition technologies providing connectivity to the IPv4 Internet.
Therefore, today's applications are expected to function regardless of whether they are used in an IPv4-only environment, a Dual-stack environment, or an IPv6-only environment, with or without connectivity to the IPv4 Internet. To achieve this, applications need to be verified against all these scenarios.</t>
      <t>While the availability of IPv6 support in applications has a considerable impact on the success of IPv6,
there exists no documented best current practices how to do so.
Testing IPv6 compliance of network gear and operating systems has been documented extensively.
While the IETF does not define compliance tests, best current practice exists for the behavior of general IPv6 nodes <xref target="RFC8504"/> and Customer Edge (CE) routers <xref target="I-D.draft-ietf-v6ops-rfc7084bis"/>.</t>
      <t>To fill that gap, this document provides guidance for application developers and cloud application providers on how to approach IPv6 testing.
It describes which scenarios they should consider validating against, and which common regressions to avoid when adding IPv6 support.
While many application developers assume that the network abstractions of the operating system (OS), communication libraries, and application frameworks will handle the transition towards IPv6 transparently, leaky abstractions within these frameworks will make it difficult for an application developer to write address family-independent code for features such as allow/deny lists and logging.
In addition to that challenge, modern cloud applications are typically composed of hundreds to thousands of micro and macroservices, forming a complex distributed system that requires intricate communication and orchestration infrastructure to operate.
Enabling these applications to communicate over IPv6 requires careful analysis of data flows within all services and proper IPv6 support in all components that may require IPv6 traffic, as well as IPv6 addresses as metadata.</t>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <section anchor="requirements-language">
        <name>Requirements Language</name>
        <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
        <?line -18?>

</section>
      <section anchor="base-connectivity-scenarios">
        <name>Base Connectivity Scenarios</name>
        <t>Within this document, we define the following four "base connectivity scenarios"
in which applications ought to be verified for availability and functional correctness.</t>
        <dl>
          <dt>IPv4-only:</dt>
          <dd>
            <t>A node or application that has native connectivity towards all endpoints relevant for the test scenario using IPv4 and no connectivity towards any relevant IPv6 endpoints.</t>
          </dd>
          <dt>Dual-stack:</dt>
          <dd>
            <t>A node or application that has native connectivity towards all endpoints relevant for the test scenario using IPv4 as well as using IPv6.</t>
          </dd>
          <dt>IPv6-only with NAT64:</dt>
          <dd>
            <t>A node or application that has native connectivity towards all endpoints relevant for the test scenario using IPv6 and connectivity towards IPv4 endpoints using a transition technology like NAT64, e.g., NAT64 in combination with CLAT, DNS64, or local address synthesis.</t>
          </dd>
          <dt>IPv6-only-strict:</dt>
          <dd>
            <t>A node or application that has native connectivity towards all endpoints relevant for the test scenario using IPv6 and no connectivity towards any relevant IPv4 endpoints, neither encapsulated nor translated.
This definition slightly diverges from the one in <xref target="I-D.draft-palet-v6ops-ipv6-only"/> as it ignores IPv4 connectivity to anywhere outside the testing scope.</t>
          </dd>
        </dl>
      </section>
      <section anchor="lifecycle-functions">
        <name>Lifecycle Functions</name>
        <t>Orthogonal to the Base Scenarios, we define lifecycle functions, i.e., the phases in which an application is approached during a simplified lifecycle of the application, in accordance to <xref target="US-NIST.SP.500-267Ar1"/> as follows:</t>
        <ul spacing="normal">
          <li>
            <t>Installation: The installation of the application including any initial configuration required for
getting the application in a state where remote services are operational.</t>
          </li>
          <li>
            <t>User Interface: All forms of interactive access to the application (e.g., Web UI, API).</t>
          </li>
          <li>
            <t>Management: All forms of remote management and monitoring functions.</t>
          </li>
          <li>
            <t>Update: All forms of update functions, including both automatic and manual update mechanisms.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="objectives">
      <name>Testing Objectives</name>
      <t>As a basic principle, IPv6 application testing should always be derived from functional and integration testing.
Therefore, the goal is to verify that the expected behavior is consistent across all connectivity scenarios,
i.e., the application functions correctly in IPv4-only, Dual-stack, IPv6-only with NAT64 and IPv6-only-strict settings.
The following sections provide guidance on which connectivity scenarios to include in a testing campaign and how to approach testing complex cloud applications.</t>
      <section anchor="scenarios">
        <name>Connectivity Scenarios</name>
        <t><xref target="scn_combinations"/> lists the combinations of connectivity scenarios that application testing should generally consider.
Note, while the involved parties are listed here as "client" and "server" to reflect the most common case, the combinations can be used the same way when considering peer-to-peer applications – with "client" representing the initiating or first acting party.</t>
        <t>The first five scenarios marked as <em>base</em> should cover all major code paths and fallback conditions.
These include Dual-stack clients combined with IPv4-only and a IPv6-only-strict server, to test whether the additional address family confused the client.
We also include the cases with Dual-stack Server and Single-Stack clients, to test whether a single address family at client side works as anticipated and look at the transition case using NAT64.
We have no special scenarios for 464XLAT <xref target="RFC6877"/> and IPv6-Mostly <xref target="I-D.draft-ietf-v6ops-6mops"/>, as these architectures are from the client side indistinguishable from the Dual-stack (464XLAT or IPv6-Mostly with CLAT) or IPv6-only with NAT64 (IPv6-Mostly without CLAT).</t>
        <t>For the IPv6-only datacenter case, where servers may be exposed to the IPv4-only Internet using NAT64, it is also advisable to consider the case marked as IPv6-only-DC in <xref target="scn_combinations"/>.</t>
        <t>The other combinations are unlikely to exhibit additional problems for client-server-based applications and therefore are marked as extended in <xref target="scn_combinations"/>.
For peer-to-peer applications and applications with complex connection handling like using STUN <xref target="RFC8489"/> or TURN <xref target="RFC8656"/>, skipping these scenarios is strongly discouraged.</t>
        <table anchor="scn_combinations">
          <name>Connectivity scenario combinations to consider</name>
          <thead>
            <tr>
              <th align="left">Client</th>
              <th align="left">Server</th>
              <th align="center">Classification</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Dual-stack</td>
              <td align="left">IPv4-only</td>
              <td align="center">base</td>
            </tr>
            <tr>
              <td align="left">Dual-stack</td>
              <td align="left">IPv6-only-strict</td>
              <td align="center">base</td>
            </tr>
            <tr>
              <td align="left">IPv4-only</td>
              <td align="left">Dual-stack</td>
              <td align="center">base</td>
            </tr>
            <tr>
              <td align="left">IPv6-only with NAT64</td>
              <td align="left">IPv4-only</td>
              <td align="center">base</td>
            </tr>
            <tr>
              <td align="left">IPv6-only-strict</td>
              <td align="left">Dual-stack</td>
              <td align="center">base</td>
            </tr>
            <tr>
              <td align="left">IPv4-only</td>
              <td align="left">IPv6-only with NAT64</td>
              <td align="center">IPv6-only-DC</td>
            </tr>
            <tr>
              <td align="left">Dual-stack</td>
              <td align="left">Dual-stack</td>
              <td align="center">extended</td>
            </tr>
            <tr>
              <td align="left">IPv4-only</td>
              <td align="left">IPv4-only</td>
              <td align="center">extended</td>
            </tr>
            <tr>
              <td align="left">IPv6-only with NAT64</td>
              <td align="left">IPv6-only-strict</td>
              <td align="center">extended</td>
            </tr>
            <tr>
              <td align="left">IPv6-only-strict</td>
              <td align="left">IPv6-only-strict</td>
              <td align="center">extended</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="intermediaries">
        <name>Testing with Intermediaries (e.g., Proxies)</name>
        <t>Many application protocols support communicating across intermediates, most commonly HTTP, HTTP-Connect, SOCKS, or MASQUE proxies.
Peer-to-peer applications often support TURN <xref target="RFC5766"/> as an intermediary to traverse NAT and provide connectivity between IPv4-only and IPv6-only hosts.
When testing connectivity scenarios for an application, additional test cases including a proxy are recommended.
As a proxy can convert between address families, all combinations shown in <xref target="scn_proxy"/>,
consisting of base scenarios towards the proxy and (assuming the same scenarios on both sides of the proxy) the respective base scenarios from the proxy to the server,
should be considered for testing.</t>
        <table anchor="scn_proxy">
          <name>Base scenario combinations including a proxy to consider for IPv6 testing</name>
          <thead>
            <tr>
              <th align="left">Client</th>
              <th align="left">Proxy</th>
              <th align="left">Server</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Dual-stack</td>
              <td align="left">IPv4-only</td>
              <td align="left">Dual-stack</td>
            </tr>
            <tr>
              <td align="left">Dual-stack</td>
              <td align="left">IPv6-only-strict</td>
              <td align="left">Dual-stack</td>
            </tr>
            <tr>
              <td align="left">IPv4-only</td>
              <td align="left">Dual-stack</td>
              <td align="left">IPv4-only</td>
            </tr>
            <tr>
              <td align="left">IPv4-only</td>
              <td align="left">Dual-stack</td>
              <td align="left">IPv6-only-strict</td>
            </tr>
            <tr>
              <td align="left">IPv6-only with NAT64</td>
              <td align="left">IPv4-only</td>
              <td align="left">Dual-stack</td>
            </tr>
            <tr>
              <td align="left">IPv6-only-strict</td>
              <td align="left">Dual-stack</td>
              <td align="left">IPv4-only</td>
            </tr>
            <tr>
              <td align="left">IPv6-only-strict</td>
              <td align="left">Dual-stack</td>
              <td align="left">IPv6-only-strict</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="testing-name-resolution-issues">
        <name>Testing Name Resolution Issues</name>
        <t>As most applications use name resolution to bootstrap their connectivity,
it is necessary to consider name resolution aspects when testing IPv6 readiness.
While some name resolution issues only manifest in certain connectivity scenarios or can be mitigated by using Happy Eyeballs <xref target="RFC6555"/>/<xref target="RFC8305"/>,
others will just map to different connectivity scenarios.
In this section, we list name resolution issues to consider for testing.</t>
        <section anchor="missing-dns-records">
          <name>Missing DNS Records</name>
          <t>While a server endpoint is intended to support dual-stack connectivity,
the A or AAAA DNS records for the endpoint may be missing, e.g., due to misconfiguration or broken tooling,
or does not reach the client endpoint, e.g., because it got filtered out by a middle box or local resolver.
The same can happen for names discovered and resolved through mDNS <xref target="RFC6762"/>.</t>
          <t>While deployment and integration testing should try to test for this kind of broken connectivity,
this scenario is usually indistinguishable from an IPv4-only or an IPv6-only server endpoint,
and therefore already addressed by testing the base scenarios above.</t>
        </section>
        <section anchor="incorrect-dns-records">
          <name>Incorrect DNS Records</name>
          <t>Independent of the deployed server endpoint,
there may be an A and AAAA record either pointing somewhere else,
e.g., to an old or planned deployment.</t>
          <t>For either IPv4-only or IPv6-only-strict clients, this scenario should always fail.</t>
          <t>For Dual-stack clients, it should be tested whether they can use the working IPv4-only or IPv6-only connectivity scenario, either by using Happy Eyeballs <xref target="RFC6555"/>/<xref target="RFC8305"/> or trying the next resolved address candidate after timeout.
Especially for the latter, it is advisable to verify whether the connection delay is acceptable of the desired use-case.</t>
          <t>IPv6-only clients with NAT64 are only expected to work with broken AAAA records when deployed with
CLAT (should behave like Dual-stack as discussed in Section <xref target="scenarios"/>) or
local NAT64 address, e.g., as when implementing Happy Eyeballs v2 <xref target="RFC8305"/>.
IPv6-only clients with NAT64 that rely on DNS64 only are expected to fail as the presence of AAAA records prevents synthesis of DNS64 records.</t>
          <t>Testing with IPv4-Mapped IPv6 Addresses <xref target="RFC4291"/> in AAAA records is also recommended.
While this makes zero sense, it has been seen in the wild and should not confuse the client.</t>
        </section>
        <section anchor="dns-delegation-issues">
          <name>DNS delegation issues</name>
          <t>Integration testing for Cloud applications should verify that the necessary domain names are resolvable from IPv4-only or IPv6-only-strict DNS resolvers.
<xref target="I-D.draft-ietf-dnsop-3901bis"/> describes misconfigurations that may prevent this and should be prevented.</t>
        </section>
        <section anchor="testing-with-ip-literals">
          <name>Testing with IP literals</name>
          <t>Most name resolution libraries support IP literals, i.e., textual representations of IP addresses.
Applications should be tested to determine whether they work as expected with IPv4 literals and all IPv6 address representations described in <xref target="RFC4291"/>.</t>
          <t>If there is a use-case for link-local communication using IP literals, it should be tested whether the zone identifier can be entered as described in <xref target="RFC9844"/> and work as expected.</t>
        </section>
      </section>
      <section anchor="testing-with-partially-broken-connectivity-mtu-and-fragmentation-issues">
        <name>Testing with Partially Broken Connectivity, MTU, and Fragmentation Issues</name>
        <t>When multiple address families are available, network packets may traverse different paths depending on the address family.
Even when the same path is traversed, the path can exhibit distinct behaviors, e.g., dropping all or particular packets, especially in the presence of middle-boxes.
From the communication endpoints that are expected to be reachable using both address families,
some may only be reachable by one address family, while others may only be reachable by the other.
Testing applications against these scenarios can become a key enabler for users' acceptance of IPv6,
especially during a transition phase where partially broken connectivity is expected more frequently.</t>
        <t>In some cases, connectivity issues may only become apparent late in the communication process, for example, after a successful TCP handshake but before a TLS handshake succeeds.
In such scenarios, clients restricted to a single address family — such as IPv6-only-strict clients — may experience complete loss of connectivity in these scenarios,
while dual-stack clients often mask such failures by automatically falling back to another address family.</t>
        <t>In addition to partial blackholing, MTU issues may be limited to one address family or behave differently with respect to aspects like
MTU available, dropping of fragmented packets, and ICMP messages generated.
As only IPv4 supports on-path fragmentation, IPv6 is more dependent on working ICMP <em>packet too big</em> reporting.</t>
        <t>It is advisable to test for partial blackholing and MTU issues during deployment and integration testing by testing with IPv4-only and IPv6-only-strict clients to detect such blackholes.
In case these issues can occur outside the testers' circle of control, it is advisable to simulate this type of failure and ensure that the application's behavior supports the detection and analysis of these errors.</t>
      </section>
      <section anchor="testing-without-ipv4-loopback-addresses-1270008">
        <name>Testing without IPv4 Loopback Addresses (127.0.0.0/8)</name>
        <t>Some applications and services may assume the existence and reachability of the IPv4 loopback addresses (127.0.0.0/8) when binding to a socket or for communicating with other services on the same host.
For example, a web server may explicitly listen on a 127.0.0.0/8 by default.
For IPv6-only-strict scenarios, system administrators may choose to disable IPv4,
including loopback. In such cases, applications may fail to operate correctly. Applications expecting to bind to a IPv4 loopback address may fail to start when these addresses are unavailable
due to a bind failure.
Applications expecting these addresses to be available for inter-service communication will result in these services being unable to communicate properly.</t>
        <t>Because of this, when testing applications for the IPv6-only-strict scenario, it is recommended to test the application in an environment without IPv4 on the loopback interface.</t>
      </section>
      <section anchor="testing-lifecycle-function-considerations">
        <name>Testing Lifecycle Function Considerations</name>
        <t>To cover the whole lifecycle of an application including installation, user interface,
management, and update, it is recommended to test that the lifecycle functions defined in <xref target="lifecycle-functions"/> are operational within the connectivity scenarios defined in <xref target="scn_combinations"/>.</t>
        <t>In particular, keep the following considerations in mind:</t>
        <ul spacing="normal">
          <li>
            <t>Installation: Installation may require communications with remote first-party services (e.g., activation/license server)
or remote third-party services (e.g., package repositories). In these scenarios, the installer acts as
the client, and the remote service acts as the server. In cases of remote third-party services, testing
all server scenarios in <xref target="scn_combinations"/> may not be feasible, and impact the client scenarios that
can be supported. For example, if a third-party service is IPv4-only, then supporting a IPv6-only-strict
client is not feasible.</t>
          </li>
          <li>
            <t>User Interface: User interfaces can be incredibly complex with numerous contexts, views, API endpoints,
CLI commands, etc. When testing non-web-based user interfaces, it is recommended to focus on components
of the interface that involve communications with remote services, and those that handle network configuration parameters.
For example, a network configuration interface may only accept IPv4 address literals for certain parameters.
For testing web-based user interfaces, see <xref target="web-app-considerations"/>.</t>
          </li>
          <li>
            <t>Management: Depending on the application, management functions may be provided via the user interface.
However, the application may have additional management functions (e.g., SNMP, syslog, etc.) that should be tested.
As the source triggering application behavior is crucial for logging and auditing functionality,
addresses recorded need to be verified to be represented correctly. See Section <xref target="addr-as-data"/> about representation of addresses.</t>
          </li>
          <li>
            <t>Update: Depending on the application, update functions may be exercised during installation. However, the application
may have additional update functions (e.g., automatic updates, manual update mechanisms, etc.) that should be tested.</t>
          </li>
        </ul>
      </section>
      <section anchor="testing-complex-cloud-applications-and-applying-test-cases">
        <name>Testing Complex Cloud Applications and Applying Test Cases</name>
        <t>When testing complex applications, especially cloud applications, they typically involve many data flows.
An application or component may be considered as a server for some of these, while being a client in others.
Therefore, test cases need to cover each data flow in all relevant scenarios.</t>
        <t>As functional and integration tests are often defined as end-to-end test cases,
they often involve several components, e.g., micro-services, load-balancers, application gateways, logging, authentication, and authorization services, which use IP-based protocols between the components.
Therefore, an end-to-end test case breaks down to a series of flows between components, and for each of these flows,
we need to determine whether we need to apply the connectivity scenarios from <xref target="scn_combinations"/> to it,
or whether the connectivity scenarios are only controlled by the deployment of the application.</t>
        <t>For external flows, i.e., flows outside the developers' control, usually all base scenarios from <xref target="scenarios"/> need to be accounted for.
If one side of the flow is under administrative control, the number of scenario combinations can still be limited:
For example, a cloud software provider choosing to deploy Dual-stack endpoints can skip all non-Dual-stack cases on the respective side of the communication.
For internal flows, the relevant scenarios only depend on the applications' architecture, and only scenarios planned in the deployment need to be considered.
From a networking perspective, flows between components are typically independent. There is no need to run the Cartesian product of scenarios x communications as long as all relevant scenarios for a given flow are tested.</t>
        <t>In addition to the data flows, an implementation may include metadata about the data flow when communicating with backend systems, e.g., for logging or authorization purposes.
While the flows towards these backend systems themselves may be safe to ignore as outlined above,
the functional correctness of the backend systems for all kinds of IP address need to be verified as part of the test series.
Ignoring IP addresses as data in the testing may result in malfunctions, like always denying access over IPv6, or security issues, like not logging access from IPv6 clients.</t>
      </section>
      <section anchor="web-app-considerations">
        <name>Special considerations for Web-based Applications</name>
        <t>Web-based applications usually load resources from multiple parties, including CDNs and analytic tools, involving data flows to all these parties.
When facing the requirement to support IPv6-only-strict users, being unable to load some resources due to missing/defective IPv6 support at the respective parties can have effects from missing analytics insights or ad revenue to severe functional defects rendering the application unusable.
When testing such applications, it is not sufficient to only focus on the initial/main interactions,
but it is necessary to consider all resources and parties providing them.
As Web browsers load these resources dynamically and third-party resources may themselves may request resources from more parties, this kind of testing usually requires an instrumented Web browser,
e.g., using <xref target="Selenium"/>.</t>
      </section>
      <section anchor="addr-as-data">
        <name>Considerations for Addresses as Data</name>
        <t>When applications process IP addresses as data, e.g., as part of logging or management functionality,
this functionality needs to work for all possible address families and representations.</t>
        <t>One challenge to consider is that the textual representation of IPv4 and IPv6 addresses are not canonical.
It allows several valid textual representations for the same address, which makes direct string comparison and arithmetic operations on addresses error-prone and slow.
For example, the IPv6 address <tt>2001:db8::1</tt> can be written as <tt>2001:db8:0:0:0:0:0:1</tt>, <tt>2001:0db8::0.0.0.1</tt>, or in several other forms.</t>
        <t>While custom logic to check, parse and process addresses is often error-prone and should be validated thoroughly,
modern environments and frameworks usually provide data structures that encapsulate the canonical binary representation and include methods for parsing the various textual representations, comparing addresses, performing subnet operations, and rendering addresses in a consistent format.</t>
        <t>For situations where textual representation of IPv6 addresses is needed — such as in user interfaces, logging output, and text-based data formats like JSON, YAML, TOML, and XML — <xref target="RFC5952"/> provides recommendations on which of the valid textual representations should be used.
Applications should be tested whether they follow <xref target="RFC5952"/> when rendering IPv6 addresses in textual form,
as required by national regulations like <xref target="US-NIST.SP.500-267Ar1"/>,
while accepting all valid representations defined in <xref target="RFC4291"/>.</t>
      </section>
    </section>
    <section anchor="testing-strategies">
      <name>Testing Strategies</name>
      <t>Naïve IPv6 testing, based on end-to-end functional tests as outlined in <xref target="objectives"/>, would require running a set of functional tests in various connectivity scenarios.
In certain environments, setting up test cases for all scenarios can become forbiddingly expensive,
especially for complex cloud applications, application platforms, or when dealing with corporate IT environments.</t>
      <t>In this section, we give recommendations how to set up scenarios defined in <xref target="scenarios"/> and
present strategies to meet the relevant testing objective by modifying Dual-stack clients and servers to conclude the results for other scenario combinations,
e.g., by tracing whether the right address family is used.</t>
      <section anchor="ipv6-only-strict-clients">
        <name>IPv6-only-strict Clients</name>
        <t>This is the most natural way to test whether IPv6-only-strict clients behave correctly.
The client device is either placed in a network without IPv4 connectivity or the IPv4 stack is disabled on the device while it is in a Dual-stack network.
While most desktop operating systems allow disabling IPv4, mobile operating systems, such as Android and iOS, do not.
For mobiles operating systems, a IPv6-only-strict environment is needed.</t>
        <t>In both cases, it has to be ensured that there is no way to access IPv4-only resources.
In particular, fallback to NAT64 must be prevented by disabling CLAT <xref target="CLAT"/>,
making sure DNS resolution does not perform DNS64 address synthesis <xref target="RFC6147"/>
and blocking the well-known NAT64 prefix <xref target="RFC6052"/> for these clients.
In addition, VPN services including privacy services like <xref target="iCloud-Private-Relay"/> need to be disabled as they can provide connectivity towards the IPv4 Internet.</t>
        <t>A note on the applicability of disabling IPv4:
Before disabling IPv4 make sure the environment supports IPv6-only operation.
Many desktop virtualization environments become unusable because IPv4 is needed to access and manage the virtual machines.
Some corporate environments may render the machines unusable as they require IPv4 connectivity for sign-on.</t>
      </section>
      <section anchor="ipv6-only-servers">
        <name>IPv6-only Servers</name>
        <t>IPv6-only servers are a good option when setting up a IPv6-only-strict client environment is infeasible and
clients are know to only contact a single server or a small number of servers under the testers' control.
Even if setting up a IPv6-only-strict server environment is infeasible,
most testing is also achievable by setting up a dedicated DNS name only containing an AAAA record pointing to the IPv6 addresses of an otherwise Dual-stack server.</t>
      </section>
      <section anchor="client-based-tracing">
        <name>Client-based tracing</name>
        <t>If we can't limit the available address families, we can still trace and verify whether the address family desired for the scenario is used.</t>
        <t>Client-based tracing is especially useful when Dual-stack servers and clients are available and a conclusion for the IPv6-only-strict case is desired.
By using the clients' logging/tracing/debugging functionality, the tester can verify that the actual data flows happen over IPv6, which is preferred by most network abstractions. If the client allows changing the preference between IPv6 and IPv4, IPv4-only testing is also possible.</t>
        <t>The most relevant case for this strategy is testing Web applications.
By examining the Web browsers' performance log or using a plugin like <xref target="IPvFoo"/> that visualizes connectivity information, the tester can determine whether all resources are available using IPv6.</t>
      </section>
      <section anchor="server-based-tracing">
        <name>Server-based tracing</name>
        <t>Analogue to tracing on the client side, it is also possible to look at the protocols used on the server side.
While this is functionally equivalent for protocols where clients only communicate to a single server,
this approach is not feasible for Web-based applications where a client usually needs flows towards many servers, where client or network based tracing are the only feasible alternatives to testing with an IPv6-only-strict client.</t>
      </section>
      <section anchor="network-based-tracing">
        <name>Network-based tracing</name>
        <t>If the communication pattern of an application is known well enough, a packet tracer as <xref target="Wireshark"/> allows to verify that an application in a Dual-stack environment uses IPv6 for all of its flows.
If this can be verified, failures in IPv6-only-strict environments are unlikely.</t>
        <t>While this is the least invasive method of testing IPv6-only-strict scenarios in a Dual-stack setup, it is the most error-prone as it requires the tester to fully understand the network flows of the application and requires the skills to interpret the output of a packet tracer.</t>
      </section>
    </section>
    <section anchor="failures">
      <name>Common Sources of IPv6 Related Failures and Misbehavior</name>
      <t>In this section, we discuss special failure modes that can cause unexpected application behavior that is hard to debug.
While some of these cases can be automatically mitigated, especially through generalizing the concept of Happy Eyeballs <xref target="RFC8305"/>, others may not.
In cases that developers choose not to mitigate erroneous application behavior, users and operators should be supported in the resolution by exposing specific and detailed error or debug messages.</t>
      <section anchor="enable-ipv6-feature-gates">
        <name>Enable IPv6 Feature Gates</name>
        <t>Some applications completely ignore IPv6 unless explicitly configured to enable IPv6.
This adds another class of user or configuration errors, like deploying an application without enabled IPv6 support in an IPv6-only environment.
As these feature gates are often buried deeply in the documentation and are often vendor, product, or component specific, every component needs to be checked to determine whether IPv6 support needs extra configuration.</t>
      </section>
      <section anchor="destination-address-selection-preference-and-address-filtering">
        <name>Destination Address Selection Preference and Address Filtering</name>
        <t>The destination address selection algorithm in <xref target="ADDR-SELECT"/> filters unavailable address families (Rule 1) and de-prioritizes non-matching address families (Rule 2)
and clearly prioritizes IPv6 GUA addresses over IPv4 addresses.
While most operating systems and some alternative resolver libraries, such as <xref target="C-ARES"/>, implement <xref target="ADDR-SELECT"/> or its predecessors <xref target="RFC6724"/>/<xref target="RFC3484"/> correctly,
there are a number of notable and widely used implementations that implement something else, causing anything from unexpected behavior to hard-to-debug errors.</t>
        <ul spacing="normal">
          <li>
            <t>Most JAVA runtimes do the opposite and prefer IPv4 destinations over IPv6.
To prefer IPv6 addresses over IPv4, one needs to set the system property <tt>java.net.preferIPv6Addresses=true</tt>.</t>
          </li>
          <li>
            <t>Some applications only use the first address candidate from the <tt>getaddrinfo()</tt> and fail if the connection attempt to that one fails.</t>
          </li>
          <li>
            <t>Applications composed of services built on different programming languages or runtimes may behave inconsistently with regard to choosing destination addresses.</t>
          </li>
          <li>
            <t>NGINX has its own user DNS resolver without address filtering; thus, adding a <em>AAAA</em> record to a backend can render that backend unusable.
After having resolved a <em>AAAA</em> record, it is trying to open an IPv6 socket, even when the IPv6 stack is disabled.
As socket creation failure is not expected, an internal server error is sent back to the client.</t>
          </li>
          <li>
            <t>Some resolvers ignore address families for which no default route exists or where the default-route is pointing to an unsupported/ignored device.
This becomes cumbersome especially in split-VPN use cases, e.g. when trying to contact IPv6-only endpoints via the VPN while having IPv4-only Internet connectivity.</t>
          </li>
        </ul>
      </section>
      <section anchor="input-validation-and-output-rendering">
        <name>Input Validation and Output Rendering</name>
        <t>While most libraries and application frameworks have decent IPv6 support,
there often is still application logic that prevents taking advantage of the IPv6 support by the underlying components.
Checking whether user input is a valid IPv4 address or rendering output under the assumption that an address is always an IPv4 address are typical examples for this class of limitations.</t>
      </section>
      <section anchor="misbehaving-middle-boxes">
        <name>Misbehaving Middle-Boxes</name>
        <t>In practice, many IPv6-related regressions uncovered during testing turn out to be caused by hidden components outside of the application developers' control.
Middle-Boxes, e.g., firewalls, virus scanners, and intrusion detection systems, can break end-to-end tests in surprising ways, like terminating TLS sessions over IPv6 with certain extensions in the <em>TLS client hello</em> while correctly passing the same flow over IPv4.</t>
      </section>
    </section>
    <section anchor="deployment-considerations">
      <name>Deployment Considerations</name>
      <t>Lab testing of applications for IPv6 compliance should always have the next step in mind: Deploying the application and providing the users with decent IPv6 support.
Therefore, end-to-end tests, especially of cloud applications, should also keep deployment steps, prerequisites, and risks in mind.
This section discusses some issues to keep in mind when planning and executing IPv6 testing.</t>
      <section anchor="operational-scope-software-lifecycle">
        <name>Operational Scope &amp; Software Lifecycle</name>
        <t>Depending on the application and deployment model, the timing of deploying IPv6 support may be in control of the users' organization, the developers' organization, or neither of them.
Based on this setup, certain combinations of IPv6-enabled clients, servers, and infrastructure in between may or may not be excluded from consideration.
Therefore, it may be necessary to add test cases for old software versions with known and already fixed bugs against newly IPv6-enabled servers.
If regressions and service disruptions cannot be ruled out by the tests, a per-user or per-customer tenant opt-in/opt-out/roll-back scheme for the IPv6 enablement should be considered.</t>
      </section>
      <section anchor="allow-deny-lists">
        <name>Allow &amp; Deny Lists</name>
        <t>Application-level IP allow and deny lists pose a special challenge for deploying IPv6 in a cloud application.
As users may already have IPv6 connectivity, adding IPv6 support to the server may cause clients to use IPv6 immediately.
Having no allow list entry for the users' IPv6 addresses results in service disruptions.
Happy Eyeballs as defined in <xref target="RFC8305"/> does not solve the problem as allow list checks usually take place after the transport connection has already been established.</t>
        <t>To mitigate allow or deny lists causing service disruptions when enabling IPv6, support to include IPv6 addresses in allow and deny lists needs to be enabled way before rolling out IPv6 on the transport and communicated towards the users.
To further limit the probability of service disruptions, generalizing Happy Eyeballs to re-try using IPv4 after certain error conditions should be evaluated.</t>
      </section>
      <section anchor="component-and-service-reuse">
        <name>Component and Service Reuse</name>
        <t>If components or cloud services can be reused in other products, special care needs to be taken when planning IPv6 deployment.
The interaction contracts between the reusing parties and the service need to be checked
whether IPv6 enablement of the services also affects the flows of these.
Additional end-to-end tests, including the reusing parties, are recommended.
This is often a recursive process.</t>
      </section>
      <section anchor="ownership-of-software-components">
        <name>Ownership of Software Components</name>
        <t>Sometimes IPv6 enablement requires touching components that are not actively maintained anymore.
Be prepared for this and plan extra time or budget for updating or replacing these components.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The testing procedures described in this document do not create any new security implications.
Some security-related issues that should be considered and ruled out by appropriate testing are discussed in <xref target="failures"/>.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="ADDR-SELECT">
          <front>
            <title>Prioritizing known-local IPv6 ULAs through address selection policy</title>
            <author fullname="Nick Buraglio" initials="N." surname="Buraglio">
              <organization>Energy Sciences Network</organization>
            </author>
            <author fullname="Tim Chown" initials="T." surname="Chown">
              <organization>Jisc</organization>
            </author>
            <author fullname="Jeremy Duncan" initials="J." surname="Duncan">
              <organization>Tachyon Dynamics</organization>
            </author>
            <date day="11" month="August" year="2025"/>
            <abstract>
              <t>   This document updates the default address selection algorithm for
   Internet Protocol Version 6 (IPv6), originally specified in RFC 6724,
   based on accumulated operational experience.  It introduces the
   concept of "known-local" Unique Local Address (ULA) prefixes within
   the fd00::/8 block and specifies that ULA-to-ULA communications using
   such prefixes should be preferred over both IPv4-to-IPv4 and GUA-to-
   GUA (Global Unicast Address) communications in local use scenarios.
   The document defines mechanisms for nodes to identify and incorporate
   known-local prefixes into their address selection policy tables.  It
   introduces a requirement to implement Rule 5.5 of RFC 6724 and
   reduces the default precedence for 6to4 addresses.  These updates
   enhance the supportability of typical deployment environments,
   including automatic and unmanaged configurations, and promote
   consistent IPv6-over-IPv4 precedence behavior for both ULA and GUA
   within local networks.  The document acknowledges that certain
   atypical deployment models may require explicit configuration to
   achieve intended operational outcomes.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-6man-rfc6724-update-25"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC4291">
          <front>
            <title>IP Version 6 Addressing Architecture</title>
            <author fullname="R. Hinden" initials="R." surname="Hinden"/>
            <author fullname="S. Deering" initials="S." surname="Deering"/>
            <date month="February" year="2006"/>
            <abstract>
              <t>This specification defines the addressing architecture of the IP Version 6 (IPv6) protocol. The document includes the IPv6 addressing model, text representations of IPv6 addresses, definition of IPv6 unicast addresses, anycast addresses, and multicast addresses, and an IPv6 node's required addresses.</t>
              <t>This document obsoletes RFC 3513, "IP Version 6 Addressing Architecture". [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4291"/>
          <seriesInfo name="DOI" value="10.17487/RFC4291"/>
        </reference>
        <reference anchor="RFC5952">
          <front>
            <title>A Recommendation for IPv6 Address Text Representation</title>
            <author fullname="S. Kawamura" initials="S." surname="Kawamura"/>
            <author fullname="M. Kawashima" initials="M." surname="Kawashima"/>
            <date month="August" year="2010"/>
            <abstract>
              <t>As IPv6 deployment increases, there will be a dramatic increase in the need to use IPv6 addresses in text. While the IPv6 address architecture in Section 2.2 of RFC 4291 describes a flexible model for text representation of an IPv6 address, this flexibility has been causing problems for operators, system engineers, and users. This document defines a canonical textual representation format. It does not define a format for internal storage, such as within an application or database. It is expected that the canonical format will be followed by humans and systems when representing IPv6 addresses as text, but all implementations must accept and be able to handle any legitimate RFC 4291 format. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5952"/>
          <seriesInfo name="DOI" value="10.17487/RFC5952"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="I-D.draft-ietf-v6ops-rfc7084bis">
          <front>
            <title>Basic Requirements for IPv6 Customer Edge Routers</title>
            <author fullname="Gábor Lencse" initials="G." surname="Lencse">
              <organization>Széchenyi István University</organization>
            </author>
            <author fullname="Jordi Palet Martinez" initials="J. P." surname="Martinez">
              <organization>The IPv6 Company</organization>
            </author>
            <author fullname="Ben Patton" initials="B." surname="Patton">
              <organization>University of New Hampshire, Interoperability Lab (UNH-IOL)</organization>
            </author>
            <author fullname="Timothy Winters" initials="T." surname="Winters">
              <organization>QA Cafe</organization>
            </author>
            <date day="2" month="March" year="2026"/>
            <abstract>
              <t>   This document specifies requirements for an IPv6 Customer Edge (CE)
   router.  Specifically, the current version of this document focuses
   on the basic provisioning of an IPv6 CE router and the provisioning
   of IPv6 hosts attached to it.  The document obsoletes RFC 7084.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-v6ops-rfc7084bis-05"/>
        </reference>
        <reference anchor="I-D.draft-ietf-v6ops-6mops">
          <front>
            <title>IPv6-mostly Networks: Deployment and Operations Considerations</title>
            <author fullname="Nick Buraglio" initials="N." surname="Buraglio">
              <organization>Energy Sciences Network</organization>
            </author>
            <author fullname="Ondřej Caletka" initials="O." surname="Caletka">
              <organization>RIPE NCC</organization>
            </author>
            <author fullname="Jen Linkova" initials="J." surname="Linkova">
              <organization>Google</organization>
            </author>
            <date day="2" month="March" year="2026"/>
            <abstract>
              <t>   This document discusses a deployment scenario called "an IPv6-mostly
   network", when IPv6-only and IPv4-enabled endpoints coexist on the
   same network (network segment, VLAN, SSID etc).  The proposed
   approach enables smooth and incremental transition from dual-stack to
   IPv6-only network by allowing IPv6-capable devices to remain
   IPv6-only while the network is seamlessly supplying IPv4 to those
   that require it.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-v6ops-6mops-07"/>
        </reference>
        <reference anchor="I-D.draft-palet-v6ops-ipv6-only">
          <front>
            <title>IPv6-only and IPv6-Mostly Terminology Definitions</title>
            <author fullname="Jordi Palet Martinez" initials="J. P." surname="Martinez">
              <organization>The IPv6 Company</organization>
            </author>
            <date day="7" month="May" year="2026"/>
            <abstract>
              <t>   This document defines the terminology regarding the usage of
   expressions such as "IPv6-only" and "IPv6-Mostly", in order to avoid
   confusions when using them in IETF and other documents.  The goal is
   that the reference to "IPv6-only" describes the actual native
   functionality being used, not the actual protocol support.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-palet-v6ops-ipv6-only-14"/>
        </reference>
        <reference anchor="I-D.draft-ietf-dnsop-3901bis">
          <front>
            <title>Operational Guidelines for DNS Transport in Mixed IPv4/IPv6 Environments</title>
            <author fullname="Momoka Yamamoto" initials="M." surname="Yamamoto">
              <organization>WIDE Project</organization>
            </author>
            <author fullname="Tobias Fiebig" initials="T." surname="Fiebig">
              <organization>Max-Planck-Institut fuer Informatik</organization>
            </author>
            <date day="12" month="February" year="2026"/>
            <abstract>
              <t>   This document provides guidelines and documents Best Current Practice
   for operating authoritative DNS servers, recursive resolvers and stub
   resolvers in a mixed IPv4/IPv6 environment.  This document recommends
   that both authoritative DNS servers and recursive resolvers support
   IPv4 and IPv6.  It also provides guidance on how recursive DNS
   resolvers should select upstream DNS servers, including when
   IPv4-embedded IPv6 addresses are available.

   This document obsoletes RFC 3901.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-dnsop-3901bis-17"/>
        </reference>
        <reference anchor="CLAT">
          <front>
            <title>464XLAT Customer-side Translator (CLAT): Node Behavior and Recommendations</title>
            <author fullname="Lorenzo Colitti" initials="L." surname="Colitti">
              <organization>Google</organization>
            </author>
            <author fullname="Jen Linkova" initials="J." surname="Linkova">
              <organization>Google</organization>
            </author>
            <author fullname="Tommy Jensen" initials="T." surname="Jensen">
              <organization>Cloudflare</organization>
            </author>
            <date day="5" month="March" year="2026"/>
            <abstract>
              <t>   464XLAT defines an architecture for providing IPv4 connectivity
   across an IPv6-only network.  The solution involves two functional
   elements: a provider-side translator (PLAT) and a customer-side
   translator (CLAT).  This document updates the 464XLAT specification
   (RFC6877) and Requirements for IPv6 Customer Edge Routers (RFC8585)
   by further defining CLAT node behavior and IPv6 Customer Edge Routers
   to support IPv4-as-a-Service by providing recommendations for node
   developers on enabling and disabling CLAT.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-v6ops-claton-16"/>
        </reference>
        <reference anchor="RFC8504">
          <front>
            <title>IPv6 Node Requirements</title>
            <author fullname="T. Chown" initials="T." surname="Chown"/>
            <author fullname="J. Loughney" initials="J." surname="Loughney"/>
            <author fullname="T. Winters" initials="T." surname="Winters"/>
            <date month="January" year="2019"/>
            <abstract>
              <t>This document defines requirements for IPv6 nodes. It is expected that IPv6 will be deployed in a wide range of devices and situations. Specifying the requirements for IPv6 nodes allows IPv6 to function well and interoperate in a large number of situations and deployments.</t>
              <t>This document obsoletes RFC 6434, and in turn RFC 4294.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="220"/>
          <seriesInfo name="RFC" value="8504"/>
          <seriesInfo name="DOI" value="10.17487/RFC8504"/>
        </reference>
        <reference anchor="CN-CAC-2023" target="http://www.cac.gov.cn/2023-04/27/c_1684239012351367.htm">
          <front>
            <title>2023 Work Arrangement for Further Promoting Large-scale IPv6 Deployment and Application</title>
            <author>
              <organization/>
            </author>
            <date year="2023" month="April" day="27"/>
          </front>
        </reference>
        <reference anchor="US-OMB-M-21-07" target="https://www.whitehouse.gov/wp-content/uploads/2020/11/M-21-07.pdf">
          <front>
            <title>M-21-07 – Completing the Transition to Internet Protocol Version 6 (IPv6)</title>
            <author>
              <organization/>
            </author>
            <date year="2020" month="November" day="19"/>
          </front>
          <seriesInfo name="United States of America Office of Management and Budget" value="Memorandum for Heads of Executive Departments and Agencies"/>
        </reference>
        <reference anchor="DE-BIT-2020-14" target="https://www.cio.bund.de/SharedDocs/downloads/Webs/CIO/DE/it-beirat/beschluesse/2020_14_Beschluss_Konferenz_IT-Beauftragte.pdf">
          <front>
            <title>Zukunftsfähige Netzinfrastrukturen auf Basis von funktionsfähigem IPv6</title>
            <author>
              <organization/>
            </author>
            <date year="2020" month="November" day="11"/>
          </front>
          <seriesInfo name="IT-Steuerung Bund" value="Beschluss 2020/14"/>
        </reference>
        <reference anchor="CZ-ENDv4" target="https://konecipv4.cz/">
          <front>
            <title>Czech Republic sets IPv4 end date</title>
            <author>
              <organization/>
            </author>
            <date year="2024" month="January" day="17"/>
          </front>
        </reference>
        <reference anchor="US-NIST.SP.500-267Ar1" target="https://nvlpubs.nist.gov/nistpubs/specialpublications/NIST.SP.500-267Ar1.pdf">
          <front>
            <title>NIST Special Publication 500-267 Revision 1 - NIST IPv6 Profile</title>
            <author>
              <organization/>
            </author>
            <date year="2020" month="November" day="23"/>
          </front>
        </reference>
        <reference anchor="iCloud-Private-Relay" target="https://developer.apple.com/videos/play/wwdc2021/10096/">
          <front>
            <title>Apple iCLoud Private Relay (WWDC2021)</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="IPvFoo" target="https://github.com/pmarks-net/ipvfoo">
          <front>
            <title>IPvFoo - a Chrome/Firefox extension that adds an icon to indicate whether the current page was fetched using IPv4 or IPv6.</title>
            <author initials="P." surname="Marks" fullname="Paul Marks">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="Wireshark" target="https://www.wireshark.org/">
          <front>
            <title>Wireshark packet tracer</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="C-ARES" target="https://c-ares.org/">
          <front>
            <title>C-ARES - a modern DNS (stub) resolver library, written in C</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="Selenium" target="https://www.selenium.dev/">
          <front>
            <title>Selenium WebDriver</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RFC6877">
          <front>
            <title>464XLAT: Combination of Stateful and Stateless Translation</title>
            <author fullname="M. Mawatari" initials="M." surname="Mawatari"/>
            <author fullname="M. Kawashima" initials="M." surname="Kawashima"/>
            <author fullname="C. Byrne" initials="C." surname="Byrne"/>
            <date month="April" year="2013"/>
            <abstract>
              <t>This document describes an architecture (464XLAT) for providing limited IPv4 connectivity across an IPv6-only network by combining existing and well-known stateful protocol translation (as described in RFC 6146) in the core and stateless protocol translation (as described in RFC 6145) at the edge. 464XLAT is a simple and scalable technique to quickly deploy limited IPv4 access service to IPv6-only edge networks without encapsulation.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6877"/>
          <seriesInfo name="DOI" value="10.17487/RFC6877"/>
        </reference>
        <reference anchor="RFC8489">
          <front>
            <title>Session Traversal Utilities for NAT (STUN)</title>
            <author fullname="M. Petit-Huguenin" initials="M." surname="Petit-Huguenin"/>
            <author fullname="G. Salgueiro" initials="G." surname="Salgueiro"/>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg"/>
            <author fullname="D. Wing" initials="D." surname="Wing"/>
            <author fullname="R. Mahy" initials="R." surname="Mahy"/>
            <author fullname="P. Matthews" initials="P." surname="Matthews"/>
            <date month="February" year="2020"/>
            <abstract>
              <t>Session Traversal Utilities for NAT (STUN) is a protocol that serves as a tool for other protocols in dealing with NAT traversal. It can be used by an endpoint to determine the IP address and port allocated to it by a NAT. It can also be used to check connectivity between two endpoints and as a keep-alive protocol to maintain NAT bindings. STUN works with many existing NATs and does not require any special behavior from them.</t>
              <t>STUN is not a NAT traversal solution by itself. Rather, it is a tool to be used in the context of a NAT traversal solution.</t>
              <t>This document obsoletes RFC 5389.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8489"/>
          <seriesInfo name="DOI" value="10.17487/RFC8489"/>
        </reference>
        <reference anchor="RFC8656">
          <front>
            <title>Traversal Using Relays around NAT (TURN): Relay Extensions to Session Traversal Utilities for NAT (STUN)</title>
            <author fullname="T. Reddy" initials="T." role="editor" surname="Reddy"/>
            <author fullname="A. Johnston" initials="A." role="editor" surname="Johnston"/>
            <author fullname="P. Matthews" initials="P." surname="Matthews"/>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg"/>
            <date month="February" year="2020"/>
            <abstract>
              <t>If a host is located behind a NAT, it can be impossible for that host to communicate directly with other hosts (peers) in certain situations. In these situations, it is necessary for the host to use the services of an intermediate node that acts as a communication relay. This specification defines a protocol, called "Traversal Using Relays around NAT" (TURN), that allows the host to control the operation of the relay and to exchange packets with its peers using the relay. TURN differs from other relay control protocols in that it allows a client to communicate with multiple peers using a single relay address.</t>
              <t>The TURN protocol was designed to be used as part of the Interactive Connectivity Establishment (ICE) approach to NAT traversal, though it can also be used without ICE.</t>
              <t>This document obsoletes RFCs 5766 and 6156.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8656"/>
          <seriesInfo name="DOI" value="10.17487/RFC8656"/>
        </reference>
        <reference anchor="RFC5766">
          <front>
            <title>Traversal Using Relays around NAT (TURN): Relay Extensions to Session Traversal Utilities for NAT (STUN)</title>
            <author fullname="R. Mahy" initials="R." surname="Mahy"/>
            <author fullname="P. Matthews" initials="P." surname="Matthews"/>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg"/>
            <date month="April" year="2010"/>
            <abstract>
              <t>If a host is located behind a NAT, then in certain situations it can be impossible for that host to communicate directly with other hosts (peers). In these situations, it is necessary for the host to use the services of an intermediate node that acts as a communication relay. This specification defines a protocol, called TURN (Traversal Using Relays around NAT), that allows the host to control the operation of the relay and to exchange packets with its peers using the relay. TURN differs from some other relay control protocols in that it allows a client to communicate with multiple peers using a single relay address. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5766"/>
          <seriesInfo name="DOI" value="10.17487/RFC5766"/>
        </reference>
        <reference anchor="RFC6555">
          <front>
            <title>Happy Eyeballs: Success with Dual-Stack Hosts</title>
            <author fullname="D. Wing" initials="D." surname="Wing"/>
            <author fullname="A. Yourtchenko" initials="A." surname="Yourtchenko"/>
            <date month="April" year="2012"/>
            <abstract>
              <t>When a server's IPv4 path and protocol are working, but the server's IPv6 path and protocol are not working, a dual-stack client application experiences significant connection delay compared to an IPv4-only client. This is undesirable because it causes the dual- stack client to have a worse user experience. This document specifies requirements for algorithms that reduce this user-visible delay and provides an algorithm. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6555"/>
          <seriesInfo name="DOI" value="10.17487/RFC6555"/>
        </reference>
        <reference anchor="RFC8305">
          <front>
            <title>Happy Eyeballs Version 2: Better Connectivity Using Concurrency</title>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi"/>
            <author fullname="T. Pauly" initials="T." surname="Pauly"/>
            <date month="December" year="2017"/>
            <abstract>
              <t>Many communication protocols operating over the modern Internet use hostnames. These often resolve to multiple IP addresses, each of which may have different performance and connectivity characteristics. Since specific addresses or address families (IPv4 or IPv6) may be blocked, broken, or sub-optimal on a network, clients that attempt multiple connections in parallel have a chance of establishing a connection more quickly. This document specifies requirements for algorithms that reduce this user-visible delay and provides an example algorithm, referred to as "Happy Eyeballs". This document obsoletes the original algorithm description in RFC 6555.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8305"/>
          <seriesInfo name="DOI" value="10.17487/RFC8305"/>
        </reference>
        <reference anchor="RFC6762">
          <front>
            <title>Multicast DNS</title>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire"/>
            <author fullname="M. Krochmal" initials="M." surname="Krochmal"/>
            <date month="February" year="2013"/>
            <abstract>
              <t>As networked devices become smaller, more portable, and more ubiquitous, the ability to operate with less configured infrastructure is increasingly important. In particular, the ability to look up DNS resource record data types (including, but not limited to, host names) in the absence of a conventional managed DNS server is useful.</t>
              <t>Multicast DNS (mDNS) provides the ability to perform DNS-like operations on the local link in the absence of any conventional Unicast DNS server. In addition, Multicast DNS designates a portion of the DNS namespace to be free for local use, without the need to pay any annual fee, and without the need to set up delegations or otherwise configure a conventional DNS server to answer for those names.</t>
              <t>The primary benefits of Multicast DNS names are that (i) they require little or no administration or configuration to set them up, (ii) they work when no infrastructure is present, and (iii) they work during infrastructure failures.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6762"/>
          <seriesInfo name="DOI" value="10.17487/RFC6762"/>
        </reference>
        <reference anchor="RFC9844">
          <front>
            <title>Entering IPv6 Zone Identifiers in User Interfaces</title>
            <author fullname="B. Carpenter" initials="B." surname="Carpenter"/>
            <author fullname="R. Hinden" initials="R." surname="Hinden"/>
            <date month="August" year="2025"/>
            <abstract>
              <t>This document describes how the zone identifier of an IPv6 scoped address, defined in the IPv6 Scoped Address Architecture specification (RFC 4007), should be entered into a user interface. This document obsoletes RFC 6874 and updates RFCs 4007, 7622, and 8089.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9844"/>
          <seriesInfo name="DOI" value="10.17487/RFC9844"/>
        </reference>
        <reference anchor="RFC6147">
          <front>
            <title>DNS64: DNS Extensions for Network Address Translation from IPv6 Clients to IPv4 Servers</title>
            <author fullname="M. Bagnulo" initials="M." surname="Bagnulo"/>
            <author fullname="A. Sullivan" initials="A." surname="Sullivan"/>
            <author fullname="P. Matthews" initials="P." surname="Matthews"/>
            <author fullname="I. van Beijnum" initials="I." surname="van Beijnum"/>
            <date month="April" year="2011"/>
            <abstract>
              <t>DNS64 is a mechanism for synthesizing AAAA records from A records. DNS64 is used with an IPv6/IPv4 translator to enable client-server communication between an IPv6-only client and an IPv4-only server, without requiring any changes to either the IPv6 or the IPv4 node, for the class of applications that work through NATs. This document specifies DNS64, and provides suggestions on how it should be deployed in conjunction with IPv6/IPv4 translators. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6147"/>
          <seriesInfo name="DOI" value="10.17487/RFC6147"/>
        </reference>
        <reference anchor="RFC6052">
          <front>
            <title>IPv6 Addressing of IPv4/IPv6 Translators</title>
            <author fullname="C. Bao" initials="C." surname="Bao"/>
            <author fullname="C. Huitema" initials="C." surname="Huitema"/>
            <author fullname="M. Bagnulo" initials="M." surname="Bagnulo"/>
            <author fullname="M. Boucadair" initials="M." surname="Boucadair"/>
            <author fullname="X. Li" initials="X." surname="Li"/>
            <date month="October" year="2010"/>
            <abstract>
              <t>This document discusses the algorithmic translation of an IPv6 address to a corresponding IPv4 address, and vice versa, using only statically configured information. It defines a well-known prefix for use in algorithmic translations, while allowing organizations to also use network-specific prefixes when appropriate. Algorithmic translation is used in IPv4/IPv6 translators, as well as other types of proxies and gateways (e.g., for DNS) used in IPv4/IPv6 scenarios. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6052"/>
          <seriesInfo name="DOI" value="10.17487/RFC6052"/>
        </reference>
        <reference anchor="RFC6724">
          <front>
            <title>Default Address Selection for Internet Protocol Version 6 (IPv6)</title>
            <author fullname="D. Thaler" initials="D." role="editor" surname="Thaler"/>
            <author fullname="R. Draves" initials="R." surname="Draves"/>
            <author fullname="A. Matsumoto" initials="A." surname="Matsumoto"/>
            <author fullname="T. Chown" initials="T." surname="Chown"/>
            <date month="September" year="2012"/>
            <abstract>
              <t>This document describes two algorithms, one for source address selection and one for destination address selection. The algorithms specify default behavior for all Internet Protocol version 6 (IPv6) implementations. They do not override choices made by applications or upper-layer protocols, nor do they preclude the development of more advanced mechanisms for address selection. The two algorithms share a common context, including an optional mechanism for allowing administrators to provide policy that can override the default behavior. In dual-stack implementations, the destination address selection algorithm can consider both IPv4 and IPv6 addresses -- depending on the available source addresses, the algorithm might prefer IPv6 addresses over IPv4 addresses, or vice versa.</t>
              <t>Default address selection as defined in this specification applies to all IPv6 nodes, including both hosts and routers. This document obsoletes RFC 3484. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6724"/>
          <seriesInfo name="DOI" value="10.17487/RFC6724"/>
        </reference>
        <reference anchor="RFC3484">
          <front>
            <title>Default Address Selection for Internet Protocol version 6 (IPv6)</title>
            <author fullname="R. Draves" initials="R." surname="Draves"/>
            <date month="February" year="2003"/>
            <abstract>
              <t>This document describes two algorithms, for source address selection and for destination address selection. The algorithms specify default behavior for all Internet Protocol version 6 (IPv6) implementations. They do not override choices made by applications or upper-layer protocols, nor do they preclude the development of more advanced mechanisms for address selection. The two algorithms share a common context, including an optional mechanism for allowing administrators to provide policy that can override the default behavior. In dual stack implementations, the destination address selection algorithm can consider both IPv4 and IPv6 addresses - depending on the available source addresses, the algorithm might prefer IPv6 addresses over IPv4 addresses, or vice-versa. All IPv6 nodes, including both hosts and routers, must implement default address selection as defined in this specification. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3484"/>
          <seriesInfo name="DOI" value="10.17487/RFC3484"/>
        </reference>
      </references>
    </references>
    <?line 548?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Thanks to
Holger Füßler,
Michael Richardson,
Tommy Jensen,
Nathan Sherrard,
Jeremy Duncan,
Brian E Carpenter,
for the discussions, the input, and all contribution.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
tnYnri8o3XH8gDgJ6/8LF1nBLfSSAAA=

-->

</rfc>
