Feature #10912
closedAdd method(s) to IPAddr for determining whether an address is link local
Description
I was surprised to find that IPAddr has no methods for determining whether an address is a link local address (ie RFC1918 or RFC5735). This would make it easy to blacklist local IP addresses from services.
Updated by knqyf263 (Teppei Fukuda) almost 8 years ago
I also want a method to determine whether an address is link-local.
There is a proposal for a fix on https://github.com/ruby/ruby/pull/1494 .
Updated by shyouhei (Shyouhei Urabe) almost 8 years ago
- Is duplicate of Feature #11666: IPAddr#private? added
Updated by knqyf263 (Teppei Fukuda) almost 8 years ago
Is there any progress?
In RFC 4291 2.4, the type of an IPv6 address is defined, as follows:
Address type Binary prefix IPv6 notation Section
------------ ------------- ------------- -------
Unspecified 00...0 (128 bits) ::/128 2.5.2
Loopback 00...1 (128 bits) ::1/128 2.5.3
Multicast 11111111 FF00::/8 2.7
Link-Local unicast 1111111010 FE80::/10 2.5.6
Global Unicast (everything else)
"Private-Use" network is not defined, but the above five address types are clearly defined.
These addresses are also defined in IPv4 (RFC 6890 2.2.2).
Although "unspecified" network is not clearly defined in IPv4, it can be considered as 0.0.0.0/8.
Is it difficult to add methods to determine these networks?
If it is not good to mix IPv4 and IPv6, I think there is a way to separate method names(like ipv4_linklocal? and ipv6_linklocal?)
Updated by shyouhei (Shyouhei Urabe) over 7 years ago
- Status changed from Open to Assigned
- Assignee set to knu (Akinori MUSHA)
Updated by knu (Akinori MUSHA) about 7 years ago
- Status changed from Assigned to Closed
Updated by knu (Akinori MUSHA) about 7 years ago
Added, thanks for the suggestion.