Penguin
Annotated edit history of LinkLocal version 6, including all changes. View license author blame.
Rev Author # Line
1 JamesSpooner 1 IPV6 Link local addresses are autoconfigured addresses based on the devices MAC address.
2
6 NickClifford 3 Link local addresses are used by various auto configuration mechanisms to refer to other devices on the same link (eg autoconfigured routes use the link local address of the router). Generally speaking you would not usually use a link local address except in routing tables.
1 JamesSpooner 4
6 NickClifford 5 An inherit property of link local addresses is they are only valid on the link they belong to. Thusly if you wish to send a packet (eg ping) a link local address, you must specify which interface you wish to use.
1 JamesSpooner 6
7 telnet:
6 NickClifford 8 <pre>
2 PerryLorier 9 $ telnet.netkit fe80::205:1cff:fe10:5edf%wan0 bgpd
10 Trying fe80::205:1cff:fe10:5edf%wan0...
11 Connected to fe80::205:1cff:fe10:5edf%wan0.
12 Escape character is '^]'.
6 NickClifford 13 </pre>
14 <pre>
1 JamesSpooner 15 ping:
2 PerryLorier 16 $ ping6 -I eth1 fe80::202:2dff:fe51:a1b2
6 NickClifford 17 </pre>
4 PerryLorier 18
19 This, and other gotcha's with [IPv6] is discussed in [IPv6LessonsLearnt].
6 NickClifford 20
21
3 PerryLorier 22
23 See [IPv6Addressing], Compare [SiteLocal] and [GlobalScope] addresses.
5 CraigBox 24
25 -----
26 CategoryNetworking