IPv6 编址与概念
了解 IPv6 的结构和优势,包括地址类型、自动配置和过渡机制
IPv6 编址与概念 是 CoddyKit 上的免费 Linux Networking & TCP/IP for Developers 课时。 这是第 1 节课,共 4 节。 你可以在下方免费阅读本课时的完整内容 — 然后在浏览器中使用内置代码编辑器和全天候 AI 导师进行实践。 这是 Linux Networking & TCP/IP for Developers 学习路径的一部分,你的进度在网页和 CoddyKit 应用中同步。 Linux Networking & TCP/IP for Developers 课程共包含 4 节课。
本课时的部分内容尚未翻译,以英文显示。
Why We Need IPv6
You've likely heard of IPv4, the internet's current addressing system. But IPv4 addresses are running out!
With billions of new devices connecting to the internet, we need a solution to keep everything connected. That's where IPv6 comes in.
IPv6: The Next Generation
IPv6 is the latest version of the Internet Protocol. It's designed to replace IPv4 and address its limitations, primarily the scarcity of available addresses.
- Vast Address Space: IPv6 uses 128-bit addresses, compared to IPv4's 32-bit. This means a practically infinite number of unique addresses.
- Improved Efficiency: Simplified header format, making routing more efficient.
- Enhanced Security: IPsec is built into IPv6, not an optional add-on.
Understanding IPv6 Structure
An IPv6 address is 128 bits long, written in hexadecimal. It's divided into 8 groups of 16 bits each, separated by colons.
Each group is represented by four hexadecimal digits. For example:
2001:0db8:85a3:0000:0000:8a2e:0370:7334This long format can be simplified, as we'll see next.
IPv6 Address Compression
IPv6 addresses can often be shortened using two main rules:
- Omit Leading Zeros: In each 16-bit block, leading zeros can be removed. E.g.,
0db8becomesdb8. - Double Colon (::): A single
::can replace one or more consecutive blocks of zeros. This can only be used ONCE per address.
Compression Example
Let's compress our example address:
2001:0db8:85a3:0000:0000:8a2e:0370:73341. Remove leading zeros:
2001:db8:85a3:0:0:8a2e:370:73342. Use :: for consecutive zeros:
2001:db8:85a3::8a2e:370:7334This makes addresses much easier to read!
Key IPv6 Address Types
IPv6 addresses have different purposes:
- Global Unicast Address (GUA): Publicly routable, unique across the internet. Similar to public IPv4.
- Link-Local Address (LLA): Used only for communication on a single network segment (link). Not routable.
- Unique Local Address (ULA): Private, routable only within an organization, not globally. Similar to private IPv4.
- Multicast Address: Used to send a single packet to multiple destinations simultaneously.
Global Unicast Addresses (GUA)
GUAs are the most common type, starting with 2 or 3 (e.g., 2001:db8::/32). They are globally unique and routable on the internet.
A typical GUA is composed of:
- Global Routing Prefix: Assigned by your ISP (e.g.,
/48or/32). - Subnet ID: Used by organizations to create subnets.
- Interface ID: Identifies a specific interface on a subnet.
Link-Local Addresses (LLA)
Link-Local Addresses always start with fe80::/10. Every IPv6-enabled interface automatically configures one. They are essential for neighbor discovery and communication on the local link.
Let's see an example of how they appear on a Linux system:
ip -6 addr show dev eth0Stateless Autoconfiguration (SLAAC)
IPv6 devices can automatically configure their own addresses using SLAAC. This means they don't always need a DHCP server.
SLAAC works by combining a prefix from a router advertisement (RA) with an interface identifier (often derived from the MAC address using EUI-64 or privacy extensions).
For stateful address assignment (like static IP or DNS server info), DHCPv6 can be used.
IPv6 Transition Mechanisms
Since IPv4 and IPv6 aren't directly compatible, transition mechanisms are needed:
- Dual-Stack: Running both IPv4 and IPv6 on the same device simultaneously. This is the most common approach.
- Tunneling: Encapsulating IPv6 packets within IPv4 packets to traverse IPv4-only networks.
- Translation: Converting IPv6 packets to IPv4 and vice-versa (e.g., NAT64/DNS64).
Quick Check: IPv6 Basics
Which of the following statements about IPv6 addresses is TRUE?
Recap: IPv6 Essentials
We've covered the basics of IPv6!
- It solves IPv4 address exhaustion with 128-bit addresses.
- Addresses are written in hexadecimal and can be compressed.
- Key types include Global Unicast (public), Link-Local (local segment), and Unique Local (private).
- Devices can use SLAAC for automatic configuration.
- Dual-stack is a common transition method.
IPv6 is vital for the future of the internet!
常见问题解答
「IPv6 编址与概念」课时是免费的吗?
是的 — 「IPv6 编址与概念」的完整文本可在网页上免费阅读。要进行交互式练习(内置代码编辑器和全天候 AI 导师)并解锁 Linux Networking & TCP/IP for Developers 课程的其余内容,请升级到 CoddyKit PRO。 Linux Networking & TCP/IP for Developers 课程共包含 4 节课。
「IPv6 编址与概念」这节课中我会学到什么?
了解 IPv6 的结构和优势,包括地址类型、自动配置和过渡机制 你通过在浏览器中直接运行的动手代码来练习 Linux Networking & TCP/IP for Developers,全天候 AI 导师会在你学习这节课的过程中回答你的问题。
学习 Linux Networking & TCP/IP for Developers 需要有经验吗?
无需任何先前经验。CoddyKit 上的 Linux Networking & TCP/IP for Developers 课程适合初学者到高级学习者,你可以从这里开始或从头开始,按照自己的节奏学习。 这是第 1 节课,共 4 节。
「IPv6 编址与概念」课时需要多长时间?
大多数 CoddyKit 课程大约需要 5–10 分钟。每节课都很精短且互动,所以你能稳步进步,并在网页和应用中从离开的地方继续。
我能在这节 Linux Networking & TCP/IP for Developers 课中编写并运行代码吗?
能。每节 Linux Networking & TCP/IP for Developers 课都包含内置代码编辑器,你可以在浏览器中直接编写并运行真实代码,并获得即时 AI 反馈 — 无需本地设置。