-
Notifications
You must be signed in to change notification settings - Fork 0
/
draft-ietf-6man-default-iids-12.txt
1309 lines (881 loc) · 50.7 KB
/
draft-ietf-6man-default-iids-12.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
IPv6 maintenance Working Group (6man) F. Gont
Internet-Draft SI6 Networks / UTN-FRH
Updates: 2464, 2467, 2470, 2491, 2492, A. Cooper
2497, 2590, 3146, 3315, 3572, Cisco
4291, 4338, 4391, 5072, 5121 D. Thaler
(if approved) Microsoft
Intended status: Standards Track W. Liu
Expires: October 29, 2016 Huawei Technologies
June 14, 2016
Recommendation on Stable IPv6 Interface Identifiers
draft-ietf-6man-default-iids-12
Abstract
This document changes the recommended default IID generation scheme
for cases where SLAAC is used to generate a stable IPv6 address. It
recommends using the mechanism specified in [RFC7217] in such cases, and
recommends against embedding stable link-layer addresses in IPv6
Interface Identifiers. It formally updates RFC2464, RFC2467, RFC2470,
RFC2491,
RFC2492, RFC2497, RFC2590, RFC3146, RFC3572, RFC4291, RFC4338,
RFC4391, RFC5072, and RFC5121, by removing the text in these RFCs
that required the IPv6 Interface Identifiers to be derived from the
underlying stable link-layer address, and replacing this text with
recommendations consistent with those in this document. Additionally,
this document updates
RFC3315 by specifying additional requirements on the generation of
Interface Identifiers used in Dynamic Host Configuration Protocol
version 6 (DHCPv6). It also provides advice to system administrators
who employ manual configuration. This document does not change any
existing recommendations concerning the use of temporary addresses as
specified in RFC 4941.
Status of This Memo
This Internet-Draft is submitted in full conformance with the
provisions of BCP 78 and BCP 79.
Internet-Drafts are working documents of the Internet Engineering
Task Force (IETF). Note that other groups may also distribute
working documents as Internet-Drafts. The list of current Internet-
Drafts is at http://datatracker.ietf.org/drafts/current/.
Internet-Drafts are draft documents valid for a maximum of six months
and may be updated, replaced, or obsoleted by other documents at any
time. It is inappropriate to use Internet-Drafts as reference
material or to cite them other than as "work in progress."
This Internet-Draft will expire on October 29, 2016.
Gont, et al. Expires October 29, 2016 [Page 1]
Internet-Draft Default Interface-IDs April 2016
Copyright Notice
Copyright (c) 2016 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(http://trustee.ietf.org/license-info) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 2
2. Terminology . . . . . . . . . . . . . . . . . . . . . . . . . 4
3. Generation of IPv6 Interface Identifiers with SLAAC . . . . . 4
4. Generation of IPv6 Interface Identifiers with DHCPv6 . . . . 5
5. Generation of IPv6 Interface Identifiers with Manual
Configuration . . . . . . . . . . . . . . . . . . . . . . . . 5
6. Update to existing RFCs . . . . . . . . . . . . . . . . . . . 6
7. Future Work . . . . . . . . . . . . . . . . . . . . . . . . . 18
8. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 19
9. Security Considerations . . . . . . . . . . . . . . . . . . . 19
10. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . 19
11. References . . . . . . . . . . . . . . . . . . . . . . . . . 19
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 23
1. Introduction
[RFC4862] specifies Stateless Address Autoconfiguration (SLAAC) for
IPv6 [RFC2460], which typically results in hosts configuring one or
more "stable" addresses composed of a network prefix advertised by a
local router, and an Interface Identifier (IID) [RFC4291] that
typically embeds a stable link-layer address (e.g., an IEEE LAN MAC
address).
In some network technologies and adaptation layers, the use of an IID
based on a link-layer address may offer some advantages. For
example, the IP-over-IEEE802.15.4 standard in [RFC6775] allows for
compression of IPv6 addresses when the IID is based on the underlying
link-layer address.
Gont, et al. Expires October 29, 2016 [Page 2]
Internet-Draft Default Interface-IDs April 2016
The security and privacy implications of embedding a stable
link-layer
address in an IPv6 IID have been known for some time now, and are
discussed in great detail in [RFC7721]. They include:
o Network activity correlation
o Location tracking
o Address scanning
o Device-specific vulnerability exploitation
More generally, the reuse of identifiers that have their own
semantics or properties across different contexts or scopes can be
detrimental for security and privacy
[I-D.gont-predictable-numeric-ids]. In the case of traditional
IPv6 IIDs, some of the security and privacy implications are
dependent on the properties of the underlying link-layer addresses
(e.g., whether the link-layer address is ephemeral or randomly
generated), while other implications (e.g., reduction of the entropy
of the IID) depend on the algorithm for generating the IID itself.
In standardized recommendations for stable IPv6 IID generation meant
to
achieve particular security and privacy properties, it is therefore
necessary to recommend against embedding stable link-layer addresses
in IPv6
IIDs.
Furthermore, some popular IPv6 implementations have already deviated
from the traditional stable IID generation scheme to mitigate the
aforementioned security and privacy implications [Microsoft].
As a result of the aforementioned issues, this document changes the
recommended default IID generation scheme for cases where SLAAC is
used to generate a stable IPv6 address. It recommends using the
mechanism specified in
[RFC7217] in such cases, and recommends against embedding stable
link-layer addresses in
IPv6 Interface Identifiers, such that the aforementioned issues are
mitigated. That is, this document simply replaces the default
algorithm that is recommended to be employed when generating stable
IPv6 IIDs.
NOTE: [RFC4291] defines the "Modified EUI-64 format" for IIDs.
Appendix A of [RFC4291] then describes how to transform an IEEE
EUI-64 identifier, or an IEEE 802 48-bit MAC address from which an
EUI-64 identifier is derived, into an IID in the Modified EUI-64
format.
In a variety of scenarios, addresses that remain stable for the
lifetime of a host's connection to a single subnet, are viewed as
desirable. For example, stable addresses may be viewed as beneficial
for network management, event logging, enforcement of access control,
provision of quality of service, or for server or routing interfaces.
Gont, et al. Expires October 29, 2016 [Page 3]
Internet-Draft Default Interface-IDs April 2016
Similarly, stable addresses (as opposed to temporary addresses
[RFC4941]) allow for long-lived TCP connections, and are also usually
desirable when performing server-like functions (i.e., receiving
incoming connections).
The recommendations in this document apply only in cases where
implementations otherwise would have configured a stable IPv6 IID
containing a link layer address. For example, this document does
not change any existing recommendations concerning the use of
temporary addresses as specified in [RFC4941], nor do the
recommendations apply to cases where the link-layer address is not
stable (e.g., it is periodically randomized) in the first place,
nor does it introduce any new requirements regarding when stable
addresses are to be configured. Thus, the recommendations in this
document simply improve the security and privacy properties of
stable addresses.
Finally this document updates [RFC3315] by specifying additional
requirements on the generation of Interface Identifiers used in
Dynamic Host Configuration Protocol version 6 (DHCPv6), and also
provides advice to system administrators who employ manual
configuration.
2. Terminology
Stable address:
An address that does not vary over time within the same network
(as defined in [RFC7721]).
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in RFC 2119 [RFC2119].
3. Generation of IPv6 Interface Identifiers with SLAAC
Nodes SHOULD implement and employ [RFC7217] as the default scheme for
generating stable IPv6 addresses with SLAAC. A link layer MAY also
define a mechanism for stable IPv6 address generation that is more
efficient and does not address the
security and privacy considerations discussed in Section 1. The
choice of whether to enable the security- and privacy-preserving
mechanism or not SHOULD be
configurable in such a case.
By default, nodes SHOULD NOT employ IPv6 address generation schemes
that embed a stable link-layer address in the IID. In
particular, use of the schemes specified in [RFC2464], [RFC2467],
[RFC2470],
[RFC2491], [RFC2492], [RFC2497], [RFC2590], [RFC3146], [RFC3572],
[RFC4338], [RFC4391], [RFC5121], and [RFC5072] are NOT RECOMMENDED.
The specific updates to these documents
to effectuate the recommendations in this section are included in
Section 6.
4. Generation of IPv6 Interface Identifiers with DHCPv6
By default, DHCPv6 server implementations SHOULD NOT generate
predictable IPv6 addresses (such as IPv6 addresses where the IIDs are
consecutive small numbers). [I-D.ietf-dhc-stable-privacy-addresses]
specifies one possible algorithm that could be employed to comply
with this requirement. Another possible algorithm would be to select
a pseudo-random value chosen from a discrete uniform distribution,
while avoiding the reserved IPv6 Interface Identifiers [RFC5453]
[IANA-RESERVED-IID].
5. Generation of IPv6 Interface Identifiers with Manual Configuration
Network administrators should be aware of the security implications
of predictable Interface Identifiers [RFC7721], and avoid the use of
predictable addresses when the aforementioned issues are of concern.
Gont, et al. Expires October 29, 2016 [Page 5]
Internet-Draft Default Interface-IDs April 2016
6. Update to existing RFCs
The following subsections clarify how each of the RFCs affected by
this document are updated.
Note to the RFC Editor:
In the following subsections, the legend "[RFCXXXX]" should be
replaced with the RFC number assigned to this document, and this
note to the RFC Editor should be removed before publication of
this document as an RFC.
6.1. Update to RFC2464
The entire text of Section 4 of [RFC2464] is replaced with the
following text:
---------------- cut here -------------- cut here ----------------
The Interface Identifier [AARCH] for an Ethernet interface SHOULD be
generated as specified in [RFC7217]. Implementations MAY generate an
IID using an alternative scheme, but embedding a stable link-layer
address in the IID is NOT RECOMMENDED [RFCXXXX].
---------------- cut here -------------- cut here ----------------
The following text from Section 6 of [RFC2464]:
---------------- cut here -------------- cut here ----------------
Ethernet Address
The 48 bit Ethernet IEEE 802 address, in canonical bit
order. This is the address the interface currently
responds to, and may be different from the built-in
address used to derive the Interface Identifier.
---------------- cut here -------------- cut here ----------------
is formally replaced with:
---------------- cut here -------------- cut here ----------------
Ethernet Address
The 48 bit Ethernet IEEE 802 address, in canonical bit
order. This is the address the interface currently
responds to.
---------------- cut here -------------- cut here ----------------
6.2. Update to RFC2467
The entire text of Section 5 of [RFC2467] is replaced with the
following text:
Gont, et al. Expires October 29, 2016 [Page 6]
Internet-Draft Default Interface-IDs April 2016
---------------- cut here -------------- cut here ----------------
The Interface Identifier [AARCH] for an FDDI interface SHOULD be
generated as specified in [RFC7217]. Implementations MAY generate an
IID using an alternative scheme, but embedding a stable link-layer
address in the IID is NOT RECOMMENDED [RFCXXXX].
---------------- cut here -------------- cut here ----------------
The following text from Section 7 of [RFC2467]:
---------------- cut here -------------- cut here ----------------
FDDI Address
The 48 bit FDDI IEEE 802 address, in canonical bit order.
This is the address the interface currently responds to,
and may be different from the built-in address used to
derive the Interface Identifier.
---------------- cut here -------------- cut here ----------------
is formally replaced with:
---------------- cut here -------------- cut here ----------------
FDDI Address
The 48 bit FDDI IEEE 802 address, in canonical bit order.
This is the address the interface currently responds to.
---------------- cut here -------------- cut here ----------------
6.3. Update to RFC2470
The entire text of Section 4 of [RFC2470] is replaced with the
following text:
---------------- cut here -------------- cut here ----------------
The Interface Identifier [AARCH] for a Token Ring interface SHOULD be
generated as specified in [RFC7217]. Implementations MAY generate an
IID using an alternative scheme, but embedding a stable link-layer
address in the IID is NOT RECOMMENDED [RFCXXXX].
---------------- cut here -------------- cut here ----------------
The following text from Section 6 of [RFC2470]:
---------------- cut here -------------- cut here ----------------
Token Ring Address: The 48 bit Token Ring IEEE 802
address, in canonical bit order. This is the address the
interface currently responds to, and may be different from
the built-in address used to derive the Interface
Identifier.
---------------- cut here -------------- cut here ----------------
is formally replaced with:
Gont, et al. Expires October 29, 2016 [Page 7]
Internet-Draft Default Interface-IDs April 2016
---------------- cut here -------------- cut here ----------------
Token Ring Address: The 48 bit Token Ring IEEE 802
address, in canonical bit order. This is the address the
interface currently responds to.
---------------- cut here -------------- cut here ----------------
6.4. Update to RFC2491
The entire text of Section 5.1, Section 5.1.1, and Section 5.1.2 of
[RFC2491] is replaced with the following text:
---------------- cut here -------------- cut here ----------------
5.1 Interface Tokens
The Interface Token (or Interface Identifier [AARCH]) for each IPv6
interface SHOULD be generated as specified in [RFC7217].
Implementations MAY generate an IID using an alternative scheme, but
embedding a stable link-layer address in the IID is NOT RECOMMENDED
[RFCXXXX].
All implementations MUST support manual configuration of interface
tokens to allow operators to manually change a interface token on
a per-LL basis. Operators may choose to manually set interface
tokens for reasons other than eliminating duplicate addresses.
All interface tokens MUST be 64 bits in length.
---------------- cut here -------------- cut here ----------------
6.5. Update to RFC2492
The entire text of Section 5 (and all the corresponding subsections)
of of [RFC2492] is replaced with the following text:
---------------- cut here -------------- cut here ----------------
5.1 Interface Tokens
The Interface Token (or Interface Identifier [AARCH]) for each IPv6
interface SHOULD be generated as specified in [RFC7217].
Implementations MAY generate an IID using an alternative scheme, but
embedding a stable link-layer address in the IID is NOT RECOMMENDED
[RFCXXXX].
All implementations MUST support manual configuration of interface
tokens to allow operators to manually change a interface token on
a per-LL basis. Operators may choose to manually set interface
tokens for reasons other than eliminating duplicate addresses.
All interface tokens MUST be 64 bits in length.
---------------- cut here -------------- cut here ----------------
Gont, et al. Expires October 29, 2016 [Page 8]
Internet-Draft Default Interface-IDs April 2016
6.6. Update to RFC2497
The entire text of Section 4 of [RFC2497] is replaced with the
following text:
---------------- cut here -------------- cut here ----------------
The Interface Identifier [AARCH] for an ARCnet interface SHOULD be
generated as specified in [RFC7217]. Implementations MAY generate an
IID using an alternative scheme, but embedding a stable link-layer
address in the IID is NOT RECOMMENDED [RFCXXXX].
---------------- cut here -------------- cut here ----------------
The entire text of Section 8 of [RFC2497] is replaced with the
following text:
---------------- cut here -------------- cut here ----------------
Interface Identifiers generated as specified in [RFCXXXX] mitigate
the security and privacy implications discussed in Section 1 of
such document.
---------------- cut here -------------- cut here ----------------
6.7. Update to RFC2590
The entire Section 4 and Section 4.1 of [RFC2590] is replaced with
the following text:
Gont, et al. Expires October 29, 2016 [Page 9]
Internet-Draft Default Interface-IDs April 2016
---------------- cut here -------------- cut here ----------------
4. Stateless Autoconfiguration
An interface identifier [AARCH] for an IPv6 Frame Relay interface
MUST be unique on a Frame Relay link [AARCH], and MUST be unique on
each of the virtual links represented by the VCs terminated on the
interface.
The interface identifier for the Frame Relay interface SHOULD be
generated as specified in [RFC7217]. Implementations MAY generate an
IID using an alternative scheme, but embedding a stable link-layer
address in the IID is NOT RECOMMENDED [RFCXXXX].
We note that each virtual circuit in a Frame Relay network is uniquely
identified on a Frame Relay interface by a DLCI. Furthermore, a DLCI
can be seen as an identification of the end point of a virtual circuit
on a Frame Relay interface. Since each Frame Relay VC is configured or
established separately, and acts like an independent virtual-link
from other VCs in the network, or on the interface, link, wire or
fiber, it seems beneficial to view each VC's termination point on the
Frame Relay interface as a "pseudo-interface" or "logical-interface"
overlaid on the Frame Relay interface. Furthermore, it seems
beneficial to be able to generate and associate an IPv6
autoconfigured address (including an IPv6 link local address) to each
"pseudo-interface", i.e. end-point of a VC, i.e. to each DLCI on a
Frame Relay interface.
---------------- cut here -------------- cut here ----------------
The entire Section 9 of [RFC2590] is replaced as follows:
---------------- cut here -------------- cut here ----------------
9. Security Considerations
Security protection against forgery or accident at the level of
the mechanisms described here is provided by the IPv6 security
mechanisms [IPSEC], [IPSEC-Auth], [IPSEC-ESP] applied to Neighbor
Discovery [IPv6-ND] or Inverse Neighbor Discovery [IND] messages.
To avoid an IPsec Authentication verification failure, the Frame
Relay specific preprocessing of a Neighbor Discovery Solicitation
message that contains a DLCI format Source link-layer address option,
MUST be done by the receiver node after it completed IP Security
processing.
---------------- cut here -------------- cut here ----------------
6.8. Update to RFC3146
The entire Section 6 of [RFC3146] is replaced with the following
text:
Gont, et al. Expires October 29, 2016 [Page 10]
Internet-Draft Default Interface-IDs April 2016
---------------- cut here -------------- cut here ----------------
6. STATELESS AUTOCONFIGURATION
The Interface Identifier [AARCH] for an IEEE1394 interface SHOULD be
generated as specified in [RFC7217]. Implementations MAY generate an
IID using an alternative scheme, but embedding a stable link-layer
address in the IID is NOT RECOMMENDED [RFCXXXX].
An IPv6 address prefix used for stateless autoconfiguration [ACONF]
of an IEEE1394 interface MUST have a length of 64 bits.
---------------- cut here -------------- cut here ----------------
6.9. Update to RFC3315
The following text in Section 11 of of [RFC3315]:
---------------- cut here -------------- cut here ----------------
Any address assigned by a server that is based on an EUI-64
identifier MUST include an interface identifier with the "u"
(universal/local) and "g" (individual/group) bits of the interface
identifier set appropriately, as indicated in section 2.5.1 of RFC
2373 [5].
---------------- cut here -------------- cut here ----------------
is formally replaced with:
---------------- cut here -------------- cut here ----------------
By default, DHCPv6 server implementations SHOULD NOT generate
predictable IPv6 addresses (such as IPv6 addresses where the IIDs are
consecutive small numbers). [I-D.ietf-dhc-stable-privacy-addresses]
specifies one possible algorithm that could be employed to comply
with this requirement. Another possible algorithm would be to select
a pseudo-random value chosen from a discrete uniform distribution,
while avoiding the reserved IPv6 Interface Identifiers [RFC5453]
[IANA-RESERVED-IID].
---------------- cut here -------------- cut here ----------------
Additionally, the following references should be added to Section 26
of [RFC3315]:
Gont, et al. Expires October 29, 2016 [Page 11]
Internet-Draft Default Interface-IDs April 2016
---------------- cut here -------------- cut here ----------------
[IANA-RESERVED-IID]
IANA, "Reserved IPv6 Interface Identifiers",
<http://www.iana.org/assignments/ipv6-interface-ids>.
[RFC5453] Krishnan, S., "Reserved IPv6 Interface Identifiers",
RFC 5453, DOI 10.17487/RFC5453, February 2009,
<http://www.rfc-editor.org/info/rfc5453>.
[I-D.ietf-dhc-stable-privacy-addresses]
Gont, F. and S. LIU, "A Method for Generating Semantically
Opaque Interface Identifiers with Dynamic Host
Configuration Protocol for IPv6 (DHCPv6)", draft-ietf-dhc-
stable-privacy-addresses-02 (work in progress), April
2015.
---------------- cut here -------------- cut here ----------------
6.10. Update to RFC3572
The entire text of Section 3 of [RFC3572] is replaced as follows:
---------------- cut here -------------- cut here ----------------
3. Interface Identifier
The Interface Identifier [AARCH] for a MAPOS interface SHOULD be
generated as specified in [RFC7217]. Implementations MAY generate an
IID using an alternative scheme, but embedding a stable link-layer
address in the IID is NOT RECOMMENDED [RFCXXXX].
---------------- cut here -------------- cut here ----------------
Additionally, Section 6.2 ("Uniqueness of Interface Identifiers") of
[RFC3572] is entirely eliminated.
6.11. Update to RFC4291
The entire text of Section 2.5.1 of [RFC4291] is replaced with the
following text:
Gont, et al. Expires October 29, 2016 [Page 12]
Internet-Draft Default Interface-IDs April 2016
---------------- cut here -------------- cut here ----------------
2.5.1. Interface Identifiers
Interface identifiers in IPv6 unicast addresses are used to identify
interfaces on a link. They are required to be unique within a subnet
prefix. It is recommended that the same interface identifier not be
assigned to different nodes on a link. They may also be unique over
a broader scope. The same interface identifier may be used on
multiple interfaces on a single node, as long as they are attached to
different subnets.
For all unicast addresses, except those that start with the binary
value 000, Interface IDs are required to be 64 bits long, and SHOULD
be
generated as specified in [RFC7217]. Implementations MAY generate an
IID using an alternative scheme, but embedding a stable link-layer
address in the IID is NOT RECOMMENDED [RFCXXXX].
The details of forming interface identifiers are defined in the
appropriate "IPv6 over <link>" specification, such as "IPv6 over
Ethernet" [ETHER], and "IPv6 over FDDI" [FDDI].
---------------- cut here -------------- cut here ----------------
6.12. Update to RFC4338
The entire text of Section 5 (and of all the corresponding
subsections) of [RFC4338] is replaced with the following text:
---------------- cut here -------------- cut here ----------------
5. IPv6 Stateless Address Autoconfiguration
The IPv6 Interface ID [AARCH] for an Nx_Port SHOULD be generated
as specified in [RFC7217]. Implementations MAY generate an IID using
an alternative scheme, but embedding a stable link-layer address in the
IID is NOT RECOMMENDED [RFCXXXX].
IPv6 stateless address autoconfiguration MUST be performed as
specified in [ACONF]. An IPv6 Address Prefix used for stateless
address autoconfiguration of an Nx_Port MUST have a length of 64
bits.
---------------- cut here -------------- cut here ----------------
6.13. Update to RFC4391
The entire text of Section 8 of [RFC4391] is replaced with the
following text:
---------------- cut here -------------- cut here ----------------
8. IPv6 Stateless Autoconfiguration
The IPv6 Interface ID [AARCH] SHOULD be generated as specified in
[RFC7217]. Implementations MAY generate an IID using an alternative
scheme, but embedding a stable link-layer address in the IID is NOT
RECOMMENDED [RFCXXXX].
---------------- cut here -------------- cut here ----------------
Gont, et al. Expires October 29, 2016 [Page 13]
Internet-Draft Default Interface-IDs April 2016
6.14. Update to RFC5072
The entire text of Section 4.1 of [RFC5072] is replaced with the
following text:
---------------- cut here -------------- cut here ----------------
4.1. Interface Identifier
Description
This Configuration Option provides a way to negotiate a unique, 64-
bit interface identifier to be used for the address autoconfiguration
[3] at the local end of the link (see Section 5). A Configure-
Request MUST contain exactly one instance of the interface-identifier
option [1]. The interface identifier MUST be unique within the PPP
link; i.e., upon completion of the negotiation, different interface-
identifier values are to be selected for the ends of the PPP link.
Before this Configuration Option is requested, an implementation
chooses its tentative interface identifier. The non-zero value of
the tentative interface identifier SHOULD be chosen such that the
value is unique to the link and, preferably, consistently
reproducible across initializations of the IPV6CP finite state
machine (administrative Close and reOpen, reboots, etc.). The
rationale for preferring a consistently reproducible unique interface
identifier to a completely random interface identifier is to provide
stability to global scope addresses (see Appendix A) that can be
formed from the interface identifier. Additionally, the tentative
interface identifier SHOULD be generated as specified in [RFC7217].
Implementations MAY generate an IID using an alternative scheme, but
embedding a stable link-layer address in the IID is NOT RECOMMENDED
[RFCXXXX].
If neither a unique number nor a random number can be generated, it
is recommended that a zero value be used for the interface identifier
transmitted in the Configure-Request. In this case, the PPP peer may
provide a valid non-zero interface identifier in its response as
described below. Note that if at least one of the PPP peers is able
to generate separate non-zero numbers for itself and its peer, the
identifier negotiation will succeed.
When a Configure-Request is received with the Interface-Identifier
Configuration Option and the receiving peer implements this option,
the received interface identifier is compared with the interface
identifier of the last Configure-Request sent to the peer. Depending
on the result of the comparison, an implementation MUST respond in
one of the following ways:
If the two interface identifiers are different but the received
interface identifier is zero, a Configure-Nak is sent with a non-zero
interface-identifier value suggested for use by the remote peer.
Gont, et al. Expires October 29, 2016 [Page 14]
Internet-Draft Default Interface-IDs April 2016
Such a suggested interface identifier MUST be different from the
interface identifier of the last Configure-Request sent to the peer.
It is recommended that the value suggested be consistently
reproducible across initializations of the IPV6CP finite state
machine (administrative Close and reOpen, reboots, etc).
Additionally, the value suggested SHOULD be generated as specified
in [RFC7217]. Implementations MAY generate an IID using an
alternative scheme, but embedding a stable link-layer address in the IID
is NOT RECOMMENDED [RFCXXXX].
If the two interface identifiers are different and the received
interface identifier is not zero, the interface identifier MUST be
acknowledged, i.e., a Configure-Ack is sent with the requested
interface identifier, meaning that the responding peer agrees with
the interface identifier requested.
If the two interface identifiers are equal and are not zero,
Configure-Nak MUST be sent specifying a different non-zero
interface-identifier value suggested for use by the remote peer. It
is recommended that the value suggested be consistently reproducible
across initializations of the IPV6CP finite state machine
(administrative Close and reOpen, reboots, etc). Additionally, the
value suggested SHOULD be generated as specified in [RFC7217].
Implementations MAY generate an IID using an alternative scheme, but
embedding a stable link-layer address in the IID is NOT RECOMMENDED
[RFCXXXX].
If the two interface identifiers are equal to zero, the interface
identifier's negotiation MUST be terminated by transmitting the
Configure-Reject with the interface-identifier value set to zero. In
this case, a unique interface identifier cannot be negotiated.
If a Configure-Request is received with the Interface-Identifier
Configuration Option and the receiving peer does not implement this
option, Configure-Reject is sent.
A new Configure-Request SHOULD NOT be sent to the peer until normal
processing would cause it to be sent (that is, until a Configure-Nak
is received or the Restart timer runs out [1]).
A new Configure-Request MUST NOT contain the interface-identifier
option if a valid Interface-Identifier Configure-Reject is received.
Reception of a Configure-Nak with a suggested interface identifier
different from that of the last Configure-Nak sent to the peer
indicates a unique interface identifier. In this case, a new
Configure-Request MUST be sent with the identifier value suggested in
the last Configure-Nak from the peer. But if the received interface
identifier is equal to the one sent in the last Configure-Nak, a new
interface identifier MUST be chosen. In this case, a new Configure-
Request SHOULD be sent with the new tentative interface identifier.
This sequence (transmit Configure-Request, receive Configure-Request,
transmit Configure-Nak, receive Configure-Nak) might occur a few
Gont, et al. Expires October 29, 2016 [Page 15]
Internet-Draft Default Interface-IDs April 2016
times, but it is extremely unlikely to occur repeatedly. More
likely, the interface identifiers chosen at either end will quickly
diverge, terminating the sequence.
If negotiation of the interface identifier is required, and the peer
did not provide the option in its Configure-Request, the option
SHOULD be appended to a Configure-Nak. The tentative value of the
interface identifier given must be acceptable as the remote interface
identifier; i.e., it should be different from the identifier value
selected for the local end of the PPP link. The next Configure-
Request from the peer may include this option. If the next
Configure-Request does not include this option, the peer MUST NOT
send another Configure-Nak with this option included. It should
assume that the peer's implementation does not support this option.
By default, an implementation SHOULD attempt to negotiate the
interface identifier for its end of the PPP connection.
A summary of the Interface-Identifier Configuration Option format is
shown below. The fields are transmitted from left to right.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Interface-Identifier (MS Bytes)
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Interface-Identifier (cont)
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Interface-Identifier (LS Bytes) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type
1
Length
10
Interface-Identifier
The 64-bit interface identifier, which is very likely to be
unique on the link, or zero if a good source of uniqueness
cannot be found.
Default
If no valid interface identifier can be successfully
Gont, et al. Expires October 29, 2016 [Page 16]
Internet-Draft Default Interface-IDs April 2016
negotiated, no default interface-identifier value should be
assumed. The procedures for recovering from such a case will
depend on the algorithm employed to generate the interface
identifier. One approach is to manually configure the
interface identifier of the interface.
---------------- cut here -------------- cut here ----------------
Additionally, the following text of Section 5 of [RFC5072]:
---------------- cut here -------------- cut here ----------------
5. Stateless Autoconfiguration and Link-Local Addresses
The interface identifier of IPv6 unicast addresses [5] of a PPP
interface SHOULD be negotiated in the IPV6CP phase of the PPP
connection setup (see Section 4.1). If no valid interface identifier
has been successfully negotiated, procedures for recovering from such
a case are unspecified. One approach is to manually configure the
interface identifier of the interface.
The negotiated interface identifier is used by the local end of the
PPP link to autoconfigure an IPv6 link-local unicast address for the
PPP interface. However, it SHOULD NOT be assumed that the same
interface identifier is used in configuring global unicast addresses
for the PPP interface using IPv6 stateless address autoconfiguration
[3]. The PPP peer MAY generate one or more interface identifiers,
for instance, using a method described in [8], to autoconfigure one
or more global unicast addresses.
is formally replaced with the following text:
---------------- cut here -------------- cut here ----------------
5. Stateless Autoconfiguration and Link-Local Addresses
The interface identifier of IPv6 unicast addresses [5] of a PPP
interface SHOULD be negotiated in the IPV6CP phase of the PPP
connection setup (see Section 4.1). If no valid interface identifier
has been successfully negotiated, procedures for recovering from such
a case will depend on the algorithm employed to generate the interface
identifier. One approach is to manually configure the interface
identifier of the interface.
The negotiated interface identifier is used by the local end of the
PPP link to autoconfigure an IPv6 link-local unicast address for the
PPP interface. However, it SHOULD NOT be assumed that the same
interface identifier is used in configuring global unicast addresses
for the PPP interface using IPv6 stateless address autoconfiguration
[3].
---------------- cut here -------------- cut here ----------------
Gont, et al. Expires October 29, 2016 [Page 17]
Internet-Draft Default Interface-IDs April 2016
6.15. Update to RFC5121
The entire text of Section 9.1 of [RFC5121] is replaced with the
following text:
---------------- cut here -------------- cut here ----------------
9.1. Interface Identifier
The MS SHOULD generate interface identifiers as specified in
[RFC7217]. Implementations MAY generate an IID using an alternative
scheme, but embedding a stable link-layer address in the IID is NOT
RECOMMENDED [RFCXXXX].
---------------- cut here -------------- cut here ----------------
Additionally, Section 9.2 is replaced as follows:
---------------- cut here -------------- cut here ----------------
9.2. Duplicate Address Detection
DAD SHOULD be performed as per "Neighbor Discovery for IP Version 6
(IPv6)", [RFC4861] and "IPv6 Stateless Address Autoconfiguration"
[RFC4862]. The IPv6 link over 802.16 is specified in this document
as a point-to-point link. Based on this criteria, it may be
redundant to perform DAD on a global unicast address that is
configured as part of the IPv6 Stateless Address Autoconfiguration
Protocol [RFC4862] as long as the following two conditions are met:
1. The prefixes advertised through the router advertisement messages