Network Reference

printable cheat sheets, sized for letter paper

everydayapps.io / networkcalc

IPv6 Quick Reference

Notation rules, address types, prefix conventions, and multicast. Two-sided print — notation & types on page 1, prefixes & multicast on page 2.

Notation rules

  1. 128 bits, written as 8 groups of 4 hex digits joined by colons.
  2. Leading zeros in any group MAY be dropped — 0db8 becomes db8.
  3. One run of consecutive all-zero groups MAY be collapsed to "::".
  4. Only one "::" per address — the reader must be able to recover all 8 groups.
  5. Prefix length is "/N" just like IPv4 CIDR (e.g. 2001:db8::/32).

Abbreviation examples

ExpandedShortened
2001:0db8:0000:0000:0000:0000:0000:00012001:db8::1
fe80:0000:0000:0000:0202:b3ff:fe1e:8329fe80::202:b3ff:fe1e:8329
ff02:0000:0000:0000:0000:0000:0000:0001ff02::1
0000:0000:0000:0000:0000:0000:0000:0000::

Address types & well-known blocks

BlockNameUsage
2000::/3Global Unicast (GUA)Globally routable unicast.
fc00::/7Unique Local (ULA)Enterprise-internal — not globally routed.
fe80::/10Link-localAuto-assigned per interface; link-scope only.
ff00::/8MulticastOne-to-many delivery, per-scope.
::1/128LoopbackHost itself (IPv6 localhost).
::/128UnspecifiedSource placeholder before config.
::ffff:0:0/96IPv4-mappedDual-stack socket representation of an IPv4 peer.
2001:db8::/32DocumentationExamples only — never route.

Address structure (global unicast)

Global routing prefix 48 bits
Subnet ID 16 bits
Interface identifier 64 bits

A /48 from your ISP gives you 216 (65,536) /64 LAN prefixes. Each LAN's host portion (the 64-bit interface ID) accommodates SLAAC or DHCPv6 assignment.

Prefix conventions

PrefixTypical useNotes
/32ISP allocationTypical RIR allocation to a large ISP.
/48SiteTypical site (enterprise, school, small ISP handoff).
/56Small siteResidential / branch office split.
/64LANSingle subnet — required for SLAAC.
/126Router p2pLegacy p2p usage (4 addresses).
/127Point-to-pointModern p2p link per RFC 6164.
/128Single hostHost route / loopback / special addresses.

Multicast scope prefixes

PrefixScopeNotes
ff01Interface-localSame interface only.
ff02Link-localSame link — most common.
ff04Admin-localAdministrator-defined.
ff05Site-localSingle site.
ff08Org-localOrganization-wide.
ff0eGlobalInternet-wide.

Well-known multicast

ff02::1All nodes on link
ff02::2All routers on link
ff02::5OSPFv3 All Routers
ff02::6OSPFv3 DR
ff02::9RIPng routers
ff02::aEIGRP routers
ff02::dPIM routers
ff02::12VRRP
ff02::16MLDv2 reports
ff02::1:2All DHCPv6 agents
ff02::fbmDNS (IPv6)
ff02::1:ff00:0/104Solicited-node range

Solicited-node multicast formula

ff02::1:ff + last 24 bits of target address

Target 2001:db8::abcd:1234 SN ff02::1:ffcd:1234
Target fe80::1:2:3:4 SN ff02::1:ff02:304
IPv6 Quick Reference everydayapps.io v1