[MBONED] [Errata Verified] RFC8777 (6155)

RFC Errata System <rfc-editor@rfc-editor.org> Tue, 27 April 2021 16:34 UTC

Return-Path: <wwwrun@rfc-editor.org>
X-Original-To: mboned@ietfa.amsl.com
Delivered-To: mboned@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id CC05B3A15FF; Tue, 27 Apr 2021 09:34:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.9
X-Spam-Level:
X-Spam-Status: No, score=-1.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RrrsxZOjl9_Y; Tue, 27 Apr 2021 09:34:50 -0700 (PDT)
Received: from rfc-editor.org (rfc-editor.org [4.31.198.49]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4B67D3A15FC; Tue, 27 Apr 2021 09:34:50 -0700 (PDT)
Received: by rfc-editor.org (Postfix, from userid 30) id 006F5F407D9; Tue, 27 Apr 2021 09:34:37 -0700 (PDT)
To: jholland@akamai.com, jakeholland.net@gmail.com
X-PHP-Originating-Script: 1005:errata_mail_lib.php
From: RFC Errata System <rfc-editor@rfc-editor.org>
Cc: warren@kumari.net, iesg@ietf.org, mboned@ietf.org, rfc-editor@rfc-editor.org
Content-Type: text/plain; charset="UTF-8"
Message-Id: <20210427163438.006F5F407D9@rfc-editor.org>
Date: Tue, 27 Apr 2021 09:34:37 -0700
Archived-At: <https://mailarchive.ietf.org/arch/msg/mboned/E4xjKKFG1FdXf22pMy1OE1pyi2Q>
Subject: [MBONED] [Errata Verified] RFC8777 (6155)
X-BeenThere: mboned@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Mail List for the Mboned Working Group <mboned.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/mboned>, <mailto:mboned-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/mboned/>
List-Post: <mailto:mboned@ietf.org>
List-Help: <mailto:mboned-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/mboned>, <mailto:mboned-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 27 Apr 2021 16:34:55 -0000

The following errata report has been verified for RFC8777,
"DNS Reverse IP Automatic Multicast Tunneling (AMT) Discovery". 

--------------------------------------
You may review the report below and at:
https://www.rfc-editor.org/errata/eid6155

--------------------------------------
Status: Verified
Type: Editorial

Reported by: Jake Holland <jholland@akamai.com>
Date Reported: 2020-05-01
Verified by: Warren Kumari (Ops AD) (IESG)

Section: Appendix A

Original Text
-------------
   <CODE BEGINS>
     $ cat translate.py
     #!/usr/bin/env python3
     import sys
     name=sys.argv[1]
     wire=''
     for dn in name.split('.'):
       if len(dn) > 0:
         wire += ('%02x' % len(dn))
         wire += (''.join('%02x'%ord(x) for x in dn))
     print(len(wire)//2) + 2
     print(wire)

     $ ./translate.py amtrelays.example.com
     24
     09616d7472656c617973076578616d706c6503636f6d
   <CODE ENDS>

Corrected Text
--------------
   <CODE BEGINS>
     $ cat translate.py
     #!/usr/bin/env python3
     import sys
     name=sys.argv[1]
     wire=''
     for dn in name.split('.'):
       if len(dn) > 0:
         wire += ('%02x' % len(dn))
         wire += (''.join('%02x'%ord(x) for x in dn))
     print(len(wire)//2 + 2)
     print(wire)

     $ ./translate.py amtrelays.example.com
     24
     09616d7472656c617973076578616d706c6503636f6d
   <CODE ENDS>

Notes
-----
The original sample code gives a runtime error when executed.  The +2 should have been inside the parenthesis for the print function.

--------------------------------------
RFC8777 (draft-ietf-mboned-driad-amt-discovery-13)
--------------------------------------
Title               : DNS Reverse IP Automatic Multicast Tunneling (AMT) Discovery
Publication Date    : April 2020
Author(s)           : J. Holland
Category            : PROPOSED STANDARD
Source              : MBONE Deployment
Area                : Operations and Management
Stream              : IETF
Verifying Party     : IESG