ipaddress: 2001:1::3/128 (RFC 9665) missing from IPv6 _private_networks_exceptions, is_global returns False
Chưa có ai nhận issue này.
- Ngôn ngữ chính
- Python
- Star
- 77.2k
- Fork
- 35.9k
- Chỉ số merge pull request
- Chỉ số pull request đang chờ
Mô tả
Bug report
ipaddress.ip_address('2001:1::3').is_global returns False, but 2001:1::3/128
is registered by IANA as globally reachable.
IANA registration
The IANA IPv6 Special-Purpose Address Registry lists, as of the 2024-04 update:
| Address Block | Name | RFC | Globally Reachable |
|---|---|---|---|
| 2001:1::1/128 | Port Control Protocol Anycast | RFC 7723 | True |
| 2001:1::2/128 | Traversal Using Relays around NAT Anycast | RFC 8155 | True |
| 2001:1::3/128 | DNS-SD Service Registration Protocol Anycast | RFC 9665 | True |
Registry: https://www.iana.org/assignments/iana-ipv6-special-registry/iana-ipv6-special-registry.xhtml
2001:1::3/128 was added by RFC 9665 (DNS-SD Service Registration Protocol) and
appears in the registry with Globally Reachable = True, exactly like its
neighbours 2001:1::1/128 and 2001:1::2/128.
The bug
_IPv6Constants._private_networks contains 2001::/23, which makes the whole
block non-global by default; the per-address carve-outs live in
_IPv6Constants._private_networks_exceptions. That list currently has
2001:1::1/128 and 2001:1::2/128 but not 2001:1::3/128, so 2001:1::3
is incorrectly treated as not globally reachable.
The ::1/::2 exceptions were added in GH-113179 (fixing #113171); the table
was simply never updated for the 2024-04 ::3 registration.
Reproduce
On current main:
>>> import ipaddress
>>> ipaddress.ip_address('2001:1::3').is_global
False # expected: True
>>> ipaddress.ip_address('2001:1::3').is_private
True # expected: False
>>> ipaddress.ip_address('2001:1::1').is_global # sibling, correct
True
>>> ipaddress.ip_address('2001:1::2').is_global # sibling, correct
True
Fix
Add IPv6Network('2001:1::3/128') to _IPv6Constants._private_networks_exceptions,
mirroring the existing ::1/::2 entries. PR to follow.
Linked PRs
- gh-151050
Hướng dẫn đóng góp
Bắt đầu từ đâu
- Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
- Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
- Fork repository và làm thay đổi trên một nhánh.
- Mở pull request có tham chiếu số hiệu của issue.
Hướng nghiên cứu
Xem xét các hằng số IPv6 của mô-đun ipaddress, tập trung vào _IPv6Constants._private_networks_exceptions và các mục hiện có 2001:1::1/128 và ::2/128. Xác minh trường hợp tái hiện được báo cáo và hành vi của các mục cùng nhóm; hoàn tất khi 2001:1::3 báo cáo is_global=True và is_private=False, đồng thời các bài kiểm thử liên quan đều đạt.
Do mô hình lập chỉ mục viết ra từ nội dung của issue.
Đánh giá
- Công nghệ
- python
- Lĩnh vực
- networking
- Loại issue
- Lỗi
- Độ khó
- 1/5
- Thời gian dự kiến
- Dưới một giờ
- Mức độ hoạt động
- Đình trệ
- Độ rõ ràng
- Đặc tả rõ ràng
- Mức phù hợp với người mới
- 25/100