enum

Ipconv::IPv6::Special

Inherits Enum < Comparable < Value < Object

Special-purpose IPv6 address designations as defined by IANA / RFC registries.

Constants

Unspecified = 0

RFC 4291 unspecified address (::/128).

Loopback = 1

RFC 4291 loopback address (::1/128).

LinkLocal = 2

RFC 4291 link-local unicast range (fe80::/10).

UniqueLocal = 3

RFC 4193 unique local unicast range (fc00::/7).

Multicast = 4

RFC 4291 multicast range (ff00::/8).

Documentation = 5

RFC 3849 documentation prefix (2001:db8::/32).

IPv4Mapped = 6

RFC 4291 IPv4-mapped address prefix (::ffff:0:0/96).

IPv4Compatible = 7

RFC 4291 deprecated IPv4-compatible prefix (::/96).

SixToFour = 8

RFC 3056 6to4 prefix (2002::/16).

Teredo = 9

RFC 4380 Teredo prefix (2001::/32).

GlobalUnicast = 10

RFC 4291 global unicast address space (2000::/3).

Benchmarking = 11

RFC 5180 network interconnect benchmark testing prefix (2001:2::/48).

Orchid = 12

RFC 7343 ORCHID v2 prefix (2001:20::/28).

Discard = 13

RFC 6666 discard-only prefix (100::/64).

None = 14

No special designation.

Instance methods

benchmarking?

Returns true if this enum value equals Benchmarking

Source
discard?

Returns true if this enum value equals Discard

Source
documentation?

Returns true if this enum value equals Documentation

Source
global_unicast?

Returns true if this enum value equals GlobalUnicast

Source
i_pv4_compatible?

Returns true if this enum value equals IPv4Compatible

Source
i_pv4_mapped?

Returns true if this enum value equals IPv4Mapped

Source
loopback?

Returns true if this enum value equals Loopback

Source
multicast?

Returns true if this enum value equals Multicast

Source
none?

Returns true if this enum value equals None

Source
orchid?

Returns true if this enum value equals Orchid

Source
six_to_four?

Returns true if this enum value equals SixToFour

Source
teredo?

Returns true if this enum value equals Teredo

Source
unique_local?

Returns true if this enum value equals UniqueLocal

Source
unspecified?

Returns true if this enum value equals Unspecified

Source