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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
|
Internet Engineering Task Force (IETF) X. Vilajosana, Ed.
Request for Comments: 8180 Universitat Oberta de Catalunya
BCP: 210 K. Pister
Category: Best Current Practice University of California Berkeley
ISSN: 2070-1721 T. Watteyne
Analog Devices
May 2017
Minimal IPv6 over the TSCH Mode of IEEE 802.15.4e (6TiSCH) Configuration
Abstract
This document describes a minimal mode of operation for an IPv6 over
the TSCH mode of IEEE 802.15.4e (6TiSCH) network. This minimal mode
of operation specifies the baseline set of protocols that need to be
supported and the recommended configurations and modes of operation
sufficient to enable a 6TiSCH functional network. 6TiSCH provides
IPv6 connectivity over a Time-Slotted Channel Hopping (TSCH) mesh
composed of IEEE Std 802.15.4 TSCH links. This minimal mode uses a
collection of protocols with the respective configurations, including
the IPv6 Low-Power Wireless Personal Area Network (6LoWPAN)
framework, enabling interoperable IPv6 connectivity over IEEE Std
802.15.4 TSCH. This minimal configuration provides the necessary
bandwidth for network and security bootstrapping and defines the
proper link between the IETF protocols that interface to IEEE Std
802.15.4 TSCH. This minimal mode of operation should be implemented
by all 6TiSCH-compliant devices.
Status of This Memo
This memo documents an Internet Best Current Practice.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
BCPs is available in Section 2 of RFC 7841.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
http://www.rfc-editor.org/info/rfc8180.
Vilajosana, et al. Best Current Practice [Page 1]
^L
RFC 8180 6TiSCH Minimal May 2017
Copyright Notice
Copyright (c) 2017 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.
Vilajosana, et al. Best Current Practice [Page 2]
^L
RFC 8180 6TiSCH Minimal May 2017
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 4
2. Requirements Language . . . . . . . . . . . . . . . . . . . . 4
3. Terminology . . . . . . . . . . . . . . . . . . . . . . . . . 5
4. IEEE Std 802.15.4 Settings . . . . . . . . . . . . . . . . . 5
4.1. TSCH Schedule . . . . . . . . . . . . . . . . . . . . . . 6
4.2. Cell Options . . . . . . . . . . . . . . . . . . . . . . 8
4.3. Retransmissions . . . . . . . . . . . . . . . . . . . . . 8
4.4. Timeslot Timing . . . . . . . . . . . . . . . . . . . . . 8
4.5. Frame Contents . . . . . . . . . . . . . . . . . . . . . 8
4.5.1. IEEE Std 802.15.4 Header . . . . . . . . . . . . . . 8
4.5.2. Enhanced Beacon Frame . . . . . . . . . . . . . . . . 9
4.5.3. Acknowledgment Frame . . . . . . . . . . . . . . . . 10
4.6. Link-Layer Security . . . . . . . . . . . . . . . . . . . 10
5. RPL Settings . . . . . . . . . . . . . . . . . . . . . . . . 11
5.1. Objective Function . . . . . . . . . . . . . . . . . . . 11
5.1.1. Rank Computation . . . . . . . . . . . . . . . . . . 11
5.1.2. Rank Computation Example . . . . . . . . . . . . . . 13
5.2. Mode of Operation . . . . . . . . . . . . . . . . . . . . 14
5.3. Trickle Timer . . . . . . . . . . . . . . . . . . . . . . 14
5.4. Packet Contents . . . . . . . . . . . . . . . . . . . . . 14
6. Network Formation and Lifetime . . . . . . . . . . . . . . . 14
6.1. Value of the Join Metric Field . . . . . . . . . . . . . 14
6.2. Time-Source Neighbor Selection . . . . . . . . . . . . . 15
6.3. When to Start Sending EBs . . . . . . . . . . . . . . . . 15
6.4. Hysteresis . . . . . . . . . . . . . . . . . . . . . . . 15
7. Implementation Recommendations . . . . . . . . . . . . . . . 16
7.1. Neighbor Table . . . . . . . . . . . . . . . . . . . . . 16
7.2. Queues and Priorities . . . . . . . . . . . . . . . . . . 16
7.3. Recommended Settings . . . . . . . . . . . . . . . . . . 17
8. Security Considerations . . . . . . . . . . . . . . . . . . . 17
9. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 19
10. References . . . . . . . . . . . . . . . . . . . . . . . . . 19
10.1. Normative References . . . . . . . . . . . . . . . . . . 19
10.2. Informative References . . . . . . . . . . . . . . . . . 21
Appendix A. Examples . . . . . . . . . . . . . . . . . . . . . . 23
A.1. Example: EB with Default Timeslot Template . . . . . . . 23
A.2. Example: EB with Custom Timeslot Template . . . . . . . . 25
A.3. Example: Link-layer Acknowledgment . . . . . . . . . . . 27
A.4. Example: Auxiliary Security Header . . . . . . . . . . . 27
Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . . . 28
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 28
Vilajosana, et al. Best Current Practice [Page 3]
^L
RFC 8180 6TiSCH Minimal May 2017
1. Introduction
A 6TiSCH network provides IPv6 connectivity [RFC2460] over a Time-
Slotted Channel Hopping (TSCH) mesh [RFC7554] composed of IEEE Std
802.15.4 TSCH links [IEEE.802.15.4]. IPv6 connectivity is obtained
by the use of the 6LoWPAN framework ([RFC4944], [RFC6282],
[RFC8025],[RFC8138], and [RFC6775]), RPL [RFC6550], and the RPL
Objective Function 0 (OF0) [RFC6552].
This specification defines operational parameters and procedures for
a minimal mode of operation to build a 6TiSCH network. Any 6TiSCH-
compliant device should implement this mode of operation. This
operational parameter configuration provides the necessary bandwidth
for nodes to bootstrap the network. The bootstrap process includes
initial network configuration and security bootstrapping. In this
specification, the 802.15.4 TSCH mode, the 6LoWPAN framework, RPL
[RFC6550], and the RPL Objective Function 0 (OF0) [RFC6552] are used
unmodified. Parameters and particular operations of TSCH are
specified to guarantee interoperability between nodes in a 6TiSCH
network.
In a 6TiSCH network, nodes follow a communication schedule as per
802.15.4 TSCH. Nodes learn the communication schedule upon joining
the network. When following this specification, the learned schedule
is the same for all nodes and does not change over time. Future
specifications may define mechanisms for dynamically managing the
communication schedule. Dynamic scheduling solutions are out of
scope of this document.
IPv6 addressing and compression are achieved by the 6LoWPAN
framework. The framework includes [RFC4944], [RFC6282], [RFC8025],
the 6LoWPAN Routing Header dispatch [RFC8138] for addressing and
header compression, and [RFC6775] for Duplicate Address Detection
(DAD) and address resolution.
More advanced work is expected in the future to complement the
minimal configuration with dynamic operations that can adapt the
schedule to the needs of the traffic at run time.
2. Requirements Language
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in BCP
14 [RFC2119] [RFC8174] when, and only when, they appear in all
capitals, as shown here.
Vilajosana, et al. Best Current Practice [Page 4]
^L
RFC 8180 6TiSCH Minimal May 2017
3. Terminology
This document uses terminology from [TERMS-6TiSCH]. The following
concepts are used in this document:
802.15.4: We use "802.15.4" as a short version of "IEEE Std
802.15.4" in this document.
SFD: Start of Frame Delimiter
RX: Reception
TX: Transmission
IE: Information Element
EB: Enhanced Beacon
ASN: Absolute Slot Number
Join Metric: Field in the TSCH Synchronization IE representing the
topological distance between the node sending the EB and the PAN
coordinator.
PAN: Personal Area Network
MLME: MAC Layer Management Entity
4. IEEE Std 802.15.4 Settings
An implementation compliant with this specification MUST implement
IEEE Std 802.15.4 [IEEE.802.15.4] in Time-Slotted Channel Hopping
(TSCH) mode.
The remainder of this section details the RECOMMENDED TSCH settings,
which are summarized in Figure 1. Any of the properties marked in
the EB column are announced in the EBs the nodes send [IEEE.802.15.4]
and learned by those joining the network. Changing their value means
changing the contents of the EB.
In case of discrepancy between the values in this specification and
IEEE Std 802.15.4 [IEEE.802.15.4], the IEEE standard has precedence.
Vilajosana, et al. Best Current Practice [Page 5]
^L
RFC 8180 6TiSCH Minimal May 2017
+--------------------------------+------------------------------+---+
| Property | Recommended Setting |EB*|
+--------------------------------+------------------------------+---+
| Slotframe Size | Tunable. Trades off | X |
| | bandwidth against energy. | |
+--------------------------------+------------------------------+---+
| Number of scheduled cells** | 1 | X |
| (active) | Timeslot 0x0000 | |
| | Channel Offset 0x0000 | |
| | Link Options = (TX Link = 1, | |
| | RX Link = 1, Shared Link = 1,| |
| | Timekeeping = 1) | |
+--------------------------------+------------------------------+---+
| Number of unscheduled cells | All remaining cells in the | X |
| (off) | slotframe. | |
+--------------------------------+------------------------------+---+
| Max Number MAC retransmissions | 3 (4 transmission attempts) | |
+--------------------------------+------------------------------+---+
| Timeslot template | IEEE Std 802.15.4 default | X |
| | (macTimeslotTemplateId=0) | |
+--------------------------------+------------------------------+---+
| Enhanced Beacon Period | Tunable. Trades off join | |
| (EB_PERIOD) | time against energy. | |
+--------------------------------+------------------------------+---+
| Number used frequencies | IEEE Std 802.15.4 default | X |
| (2.4 GHz O-QPSK PHY) | (16) | |
+--------------------------------+------------------------------+---+
| Channel Hopping sequence | IEEE Std 802.15.4 default | X |
| (2.4 GHz O-QPSK PHY) | (macHoppingSequenceID = 0) | |
+--------------------------------+------------------------------+---+
* An "X" in this column means this property's value is announced
in the EB; hence, a new node learns it when joining.
** This cell LinkType is set to ADVERTISING.
Figure 1: Recommended IEEE Std 802.15.4 TSCH Settings
4.1. TSCH Schedule
This minimal mode of operation uses a single slotframe. The TSCH
slotframe is composed of a tunable number of timeslots. The
slotframe size (i.e., the number of timeslots it contains) trades off
bandwidth for energy consumption. The slotframe size needs to be
tuned; the way of tuning it is out of scope of this specification.
The slotframe size is announced in the EB. The RECOMMENDED value for
the slotframe handle (macSlotframeHandle) is 0x00. An implementation
MAY choose to use a different slotframe handle, for example, to add
other slotframes with higher priority. The use of other slotframes
is out of the scope of this document.
Vilajosana, et al. Best Current Practice [Page 6]
^L
RFC 8180 6TiSCH Minimal May 2017
There is only a single scheduled cell in the slotframe. This cell
MAY be scheduled at any slotOffset/channelOffset within the
slotframe. The location of that cell in the schedule is announced in
the EB. The LinkType of the scheduled cell is ADVERTISING to allow
EBs to be sent on it.
Figure 2 shows an example of a slotframe of length 101 timeslots,
resulting in a radio duty cycle below 0.99%.
Chan. +----------+----------+ +----------+
Off.0 | TxRxS/EB | OFF | | OFF |
Chan. +----------+----------+ +----------+
Off.1 | OFF | OFF | ... | OFF |
+----------+----------+ +----------+
.
.
.
Chan. +----------+----------+ +----------+
Off.15 | OFF | OFF | | OFF |
+----------+----------+ +----------+
slotOffset 0 1 100
EB: Enhanced Beacon
Tx: Transmit
Rx: Receive
S: Shared
OFF: Unscheduled by this specification
Figure 2: Example Slotframe of Length 101 Timeslots
A node MAY use the scheduled cell to transmit/receive all types of
link-layer frames. EBs are sent to the link-layer broadcast address
and are not acknowledged. Data frames are sent unicast and are
acknowledged by the receiving neighbor.
All remaining cells in the slotframe are unscheduled. Dynamic
scheduling solutions may be defined in the future that schedule those
cells. One example is the 6top Protocol (6P) [PROTO-6P]. Dynamic
scheduling solutions are out of scope of this document.
The default values of the TSCH timeslot template (defined in
Section 8.4.2.2.3 of [IEEE.802.15.4]) and channel hopping sequence
(defined in Section 6.2.10 of [IEEE.802.15.4]) SHOULD be used. A
node MAY use different values by properly announcing them in its EB.
Vilajosana, et al. Best Current Practice [Page 7]
^L
RFC 8180 6TiSCH Minimal May 2017
4.2. Cell Options
In the scheduled cell, a node transmits if there is a packet to
transmit and listens otherwise (both "TX" and "RX" bits are set).
When a node transmits, requesting a link-layer acknowledgment per
[IEEE.802.15.4], and does not receive the requested acknowledgement,
it uses a back-off mechanism to resolve possible collisions ("Shared"
bit is set). A node joining the network maintains time
synchronization to its initial time-source neighbor using that cell
("Timekeeping" bit is set).
This translates into a Link Option for this cell:
b0 = TX Link = 1 (set)
b1 = RX Link = 1 (set)
b2 = Shared Link = 1 (set)
b3 = Timekeeping = 1 (set)
b4 = Priority = 0 (clear)
b5-b7 = Reserved = 0 (clear)
4.3. Retransmissions
Per Figure 1, the RECOMMENDED maximum number of link-layer
retransmissions is 3. This means that, for packets requiring an
acknowledgment, if none are received after a total of 4 attempts, the
transmission is considered failed and the link layer MUST notify the
upper layer. Packets not requiring an acknowledgment (including EBs)
are not retransmitted.
4.4. Timeslot Timing
Per Figure 1, the RECOMMENDED timeslot template is the default one
(macTimeslotTemplateId=0) defined in [IEEE.802.15.4].
4.5. Frame Contents
[IEEE.802.15.4] defines the format of frames. Through a set of
flags, [IEEE.802.15.4] allows for several fields to be present (or
not), to have different lengths, and to have different values. This
specification details the RECOMMENDED contents of 802.15.4 frames,
while strictly complying with [IEEE.802.15.4].
4.5.1. IEEE Std 802.15.4 Header
The Frame Version field MUST be set to 0b10 (Frame Version 2). The
Sequence Number field MAY be elided.
Vilajosana, et al. Best Current Practice [Page 8]
^L
RFC 8180 6TiSCH Minimal May 2017
The EB Destination Address field MUST be set to 0xFFFF (short
broadcast address). The EB Source Address field SHOULD be set as the
node's short address if this is supported. Otherwise, the long
address MUST be used.
The PAN ID Compression bit SHOULD indicate that the Source PAN ID is
"Not Present" and the Destination PAN ID is "Present". The value of
the PAN ID Compression bit is specified in Table 7-2 of the IEEE Std
802.15.4-2015 specification and depends on the type of the
destination and source link-layer addresses (e.g., short, extended,
not present).
Nodes follow the reception and rejection rules as per Section 6.7.2
of [IEEE.802.15.4].
The nonce is formatted according to [IEEE.802.15.4]. In the IEEE Std
802.15.4 specification [IEEE.802.15.4], nonce generation is described
in Section 9.3.2.2, and byte ordering is described in Section 9.3.1,
Annex B.2, and Annex B.2.2.
4.5.2. Enhanced Beacon Frame
After booting, a TSCH node starts in an unsynchronized, unjoined
state. Initial synchronization is achieved by listening for EBs.
EBs from multiple networks may be heard. Many mechanisms exist for
discrimination between networks, the details of which are out of
scope.
The IEEE Std 802.15.4 specification does not define how often EBs are
sent, nor their contents [IEEE.802.15.4]. In a minimal TSCH
configuration, a node SHOULD send an EB every EB_PERIOD. Tuning
EB_PERIOD allows a trade-off between joining time and energy
consumption.
EBs should be used to obtain information about local networks and to
synchronize ASN and time offset of the specific network that the node
decides to join. Once joined to a particular network, a node MAY
choose to continue to listen for EBs, to gather more information
about other networks, for example. During the joining process,
before secure connections to time parents have been created, a node
MAY maintain synchronization using EBs. [RFC7554] discusses
different time synchronization approaches.
The IEEE Std 802.15.4 specification requires EBs to be sent in order
to enable nodes to join the network. The EBs SHOULD carry the
Information Elements (IEs) listed below [IEEE.802.15.4].
Vilajosana, et al. Best Current Practice [Page 9]
^L
RFC 8180 6TiSCH Minimal May 2017
TSCH Synchronization IE: Contains synchronization information such
as ASN and Join Metric. The value of the Join Metric field is
discussed in Section 6.1.
TSCH Timeslot IE: Contains the timeslot template identifier. This
template is used to specify the internal timing of the timeslot.
This specification RECOMMENDS the default timeslot template.
Channel Hopping IE: Contains the channel hopping sequence
identifier. This specification RECOMMENDS the default channel
hopping sequence.
TSCH Slotframe and Link IE: Enables joining nodes to learn the
initial schedule to be used as they join the network. This
document RECOMMENDS the use of a single cell.
If a node strictly follows the recommended setting from Figure 1, the
EB it sends has the exact same contents as an EB it received when
joining, except for the Join Metric field in the TSCH Synchronization
IE.
When a node has already joined a network (i.e., it has received an
EB) synchronized to the EB sender and configured its schedule
following this specification, the node SHOULD ignore subsequent EBs
that try to change the configured parameters. This does not preclude
listening to EBs from other networks.
4.5.3. Acknowledgment Frame
Per [IEEE.802.15.4], each acknowledgment contains an ACK/NACK Time
Correction IE.
4.6. Link-Layer Security
When securing link-layer frames, link-layer frames MUST be secured by
the link-layer security mechanisms defined in IEEE Std 802.15.4
[IEEE.802.15.4]. Link-layer authentication MUST be applied to the
entire frame, including the 802.15.4 header. Link-layer encryption
MAY be applied to 802.15.4 Payload IEs and the 802.15.4 payload.
This specification assumes the existence of two cryptographic keys:
Key K1 is used to authenticate EBs. EBs MUST be authenticated
only (no encryption); their contents are defined in Section 4.5.2.
Key K2 is used to authenticate and encrypt DATA and ACKNOWLEDGMENT
frames.
Vilajosana, et al. Best Current Practice [Page 10]
^L
RFC 8180 6TiSCH Minimal May 2017
These keys can be pre-configured or learned during a key distribution
phase. Key distribution mechanisms are defined, for example, in
[SEC-6TISCH] and [SEC-JOIN-6TISCH]. Key distribution is out of scope
of this document.
The behavior of a Joining Node (JN) is different depending on which
key(s) are pre-configured:
If both keys K1 and K2 are pre-configured, the JN does not rely on
a key distribution phase to learn K1 or K2.
If key K1 is pre-configured but not key K2, the JN authenticates
EBs using K1 and relies on the key distribution phase to learn K2.
If neither key K1 nor key K2 is pre-configured, the JN accepts EBs
as defined in Section 6.3.1.2 of IEEE Std 802.15.4
[IEEE.802.15.4], i.e., they are passed forward even "if the status
of the unsecuring process indicated an error". The JN then runs
the key distribution phase to learn K1 and K2. During that
process, the node that JN is talking to uses the secExempt
mechanism (see Section 9.2.4 of [IEEE.802.15.4]) to process frames
from JN. Once the key distribution phase is done, the node that
has installed secExempts for the JN MUST clear the installed
exception rules.
In the event of a network reset, the new network MUST either use new
cryptographic keys or ensure that the ASN remains monotonically
increasing.
5. RPL Settings
In a multi-hop topology, the RPL routing protocol [RFC6550] MAY be
used.
5.1. Objective Function
If RPL is used, nodes MUST implement the RPL Objective Function Zero
(OF0) [RFC6552].
5.1.1. Rank Computation
The Rank computation is described in Section 4.1 of [RFC6552]. A
node's Rank (see Figure 4 for an example) is computed by the
following equations:
R(N) = R(P) + rank_increment
rank_increment = (Rf*Sp + Sr) * MinHopRankIncrease
Vilajosana, et al. Best Current Practice [Page 11]
^L
RFC 8180 6TiSCH Minimal May 2017
Figure 3 lists the OF0 parameter values that MUST be used if RPL is
used.
+----------------------+-------------------------------------+
| OF0 Parameters | Value |
+----------------------+-------------------------------------+
| Rf | 1 |
+----------------------+-------------------------------------+
| Sp | (3*ETX)-2 |
+----------------------+-------------------------------------+
| Sr | 0 |
+----------------------+-------------------------------------+
| MinHopRankIncrease | DEFAULT_MIN_HOP_RANK_INCREASE (256) |
+----------------------+-------------------------------------+
| MINIMUM_STEP_OF_RANK | 1 |
+----------------------+-------------------------------------+
| MAXIMUM_STEP_OF_RANK | 9 |
+----------------------+-------------------------------------+
| ETX limit to select | 3 |
| a parent | |
+----------------------+-------------------------------------+
Figure 3: OF0 Parameters
The step_of_rank (Sp) uses the Expected Transmission Count (ETX)
[RFC6551].
An implementation MUST follow OF0's normalization guidance as
discussed in Sections 1 and 4.1 of [RFC6552]. Sp SHOULD be
calculated as (3*ETX)-2. The minimum value of Sp
(MINIMUM_STEP_OF_RANK) indicates a good quality link. The maximum
value of Sp (MAXIMUM_STEP_OF_RANK) indicates a poor quality link.
The default value of Sp (DEFAULT_STEP_OF_RANK) indicates an average
quality link. Candidate parents with ETX greater than 3 SHOULD NOT
be selected. This avoids having ETX values on used links that are
larger that the maximum allowed transmission attempts.
Vilajosana, et al. Best Current Practice [Page 12]
^L
RFC 8180 6TiSCH Minimal May 2017
5.1.2. Rank Computation Example
This section illustrates the use of OF0 (see Figure 4). We have:
rank_increment = ((3*numTx/numTxAck)-2)*minHopRankIncrease = 512
+-------+
| 0 | R(minHopRankIncrease) = 256
| | DAGRank(R(0)) = 1
+-------+
|
|
+-------+
| 1 | R(1)=R(0) + 512 = 768
| | DAGRank(R(1)) = 3
+-------+
|
|
+-------+
| 2 | R(2)=R(1) + 512 = 1280
| | DAGRank(R(2)) = 5
+-------+
|
|
+-------+
| 3 | R(3)=R(2) + 512 = 1792
| | DAGRank(R(3)) = 7
+-------+
|
|
+-------+
| 4 | R(4)=R(3) + 512 = 2304
| | DAGRank(R(4)) = 9
+-------+
|
|
+-------+
| 5 | R(5)=R(4) + 512 = 2816
| | DAGRank(R(5)) = 11
+-------+
Figure 4: Rank computation example for a 5-hop network where
numTx=100 and numTxAck=75 for all links.
Vilajosana, et al. Best Current Practice [Page 13]
^L
RFC 8180 6TiSCH Minimal May 2017
5.2. Mode of Operation
When RPL is used, nodes MUST implement the non-storing mode of
operation (see Section 9.7 of [RFC6550]). The storing mode of
operation (see Section 9.8 of [RFC6550]) SHOULD be implemented by
nodes with enough capabilities. Nodes not implementing RPL MUST join
as leaf nodes.
5.3. Trickle Timer
RPL signaling messages such as DODAG Information Objects (DIOs) are
sent using the Trickle algorithm (see Section 8.3.1 of [RFC6550] and
Section 4.2 of [RFC6206]). For this specification, the Trickle timer
MUST be used with the RPL-defined default values (see Section 8.3.1
of [RFC6550]).
5.4. Packet Contents
RPL information and hop-by-hop extension headers MUST follow
[RFC6553] and [RFC6554]. For cases in which the packets formed at
the Low-Power and Lossy Network (LLN) need to cross through
intermediate routers, these MUST follow the IP-in-IP encapsulation
requirement specified by [RFC6282] and [RFC2460]. Routing extension
headers such as RPL Packet Information (RPI) [RFC6550] and Source
Routing Header (SRH) [RFC6554], and outer IP headers in case of
encapsulation, MUST be compressed according to [RFC8138] and
[RFC8025].
6. Network Formation and Lifetime
6.1. Value of the Join Metric Field
The Join Metric of the TSCH Synchronization IE in the EB MUST be
calculated based on the routing metric of the node, normalized to a
value between 0 and 255. A lower value of the Join Metric indicates
the node sending the EB is topologically "closer" to the root of the
network. A lower value of the Join Metric hence indicates higher
preference for a joining node to synchronize to that neighbor.
In case the network uses RPL, the Join Metric of any node (including
the Directed Acyclic Graph (DAG) root) MUST be set to
DAGRank(rank)-1. According to Section 5.1.1, DAGRank(rank(0)) = 1.
DAGRank(rank(0))-1 = 0 is compliant with 802.15.4's requirement of
having the root use Join Metric = 0.
In case the network does not use RPL, the Join Metric value MUST
follow the rules specified by [IEEE.802.15.4].
Vilajosana, et al. Best Current Practice [Page 14]
^L
RFC 8180 6TiSCH Minimal May 2017
6.2. Time-Source Neighbor Selection
When a node joins a network, it may hear EBs sent by different nodes
already in the network. The decision of which neighbor to
synchronize to (e.g., which neighbor becomes the node's initial time-
source neighbor) is implementation specific. For example, after
having received the first EB, a node MAY listen for at most
MAX_EB_DELAY seconds until it has received EBs from
NUM_NEIGHBOURS_TO_WAIT distinct neighbors. Recommended values for
MAX_EB_DELAY and NUM_NEIGHBOURS_TO_WAIT are defined in Figure 5.
When receiving EBs from distinct neighbors, the node MAY use the Join
Metric field in each EB to select the initial time-source neighbor,
as described in Section 6.3.6 of IEEE Std 802.15.4 [IEEE.802.15.4].
At any time, a node MUST maintain synchronization to at least one
time-source neighbor. A node's time-source neighbor MUST be chosen
among the neighbors in its RPL routing parent set when RPL is used.
In the case a node cannot maintain connectivity to at least one time-
source neighbor, the node looses synchronization and needs to join
the network again.
6.3. When to Start Sending EBs
When a RPL node joins the network, it MUST NOT send EBs before having
acquired a RPL Rank to avoid inconsistencies in the time
synchronization structure. This applies to other routing protocols
with their corresponding routing metrics. As soon as a node acquires
routing information (e.g., a RPL Rank, see Section 5.1.1), it SHOULD
start sending EBs.
6.4. Hysteresis
Per [RFC6552] and [RFC6719], the specification RECOMMENDS the use of
a boundary value (PARENT_SWITCH_THRESHOLD) to avoid constant changes
of the parent when ranks are compared. When evaluating a parent that
belongs to a smaller path cost than the current minimum path, the
candidate node is selected as the new parent only if the difference
between the new path and the current path is greater than the defined
PARENT_SWITCH_THRESHOLD. Otherwise, the node MAY continue to use the
current preferred parent. Per [RFC6719], the PARENT_SWITCH_THRESHOLD
SHOULD be set to 192 when the ETX metric is used (in the form
128*ETX); the recommendation for this document is to use
PARENT_SWITCH_THRESHOLD equal to 640 if the metric being used is
((3*ETX)-2)*minHopRankIncrease or a proportional value. This deals
with hysteresis both for routing parent and time-source neighbor
selection.
Vilajosana, et al. Best Current Practice [Page 15]
^L
RFC 8180 6TiSCH Minimal May 2017
7. Implementation Recommendations
7.1. Neighbor Table
The exact format of the neighbor table is implementation specific.
The RECOMMENDED per-neighbor information is (taken from the [openwsn]
implementation):
identifier: Identifier(s) of the neighbor (e.g., EUI-64).
numTx: Number of link-layer transmission attempts to that
neighbor.
numTxAck: Number of transmitted link-layer frames that have been
link-layer acknowledged by that neighbor.
numRx: Number of link-layer frames received from that neighbor.
timestamp: When the last frame was received from that neighbor.
This can be based on the ASN counter or any other time
base. It can be used to trigger a keep-alive message.
routing metric: The RPL Rank of that neighbor, for example.
time-source neighbor: A flag indicating whether this neighbor is a
time-source neighbor.
7.2. Queues and Priorities
The IEEE Std 802.15.4 specification [IEEE.802.15.4] does not define
the use of queues to handle upper-layer data (either application or
control data from upper layers). The following rules are
RECOMMENDED:
A node is configured to keep in the queues a configurable number
of upper-layer packets per link (default NUM_UPPERLAYER_PACKETS)
for a configurable time that should cover the join process
(default MAX_JOIN_TIME).
Frames generated by the 802.15.4 layer (including EBs) are queued
with a priority higher than frames coming from higher layers.
A frame type BEACON is queued with higher priority than frame
types DATA.
Vilajosana, et al. Best Current Practice [Page 16]
^L
RFC 8180 6TiSCH Minimal May 2017
7.3. Recommended Settings
Figure 5 lists RECOMMENDED values for the settings discussed in this
specification.
+-------------------------+-------------------+
| Parameter | RECOMMENDED Value |
+-------------------------+-------------------+
| MAX_EB_DELAY | 180 |
+-------------------------+-------------------+
| NUM_NEIGHBOURS_TO_WAIT | 2 |
+-------------------------+-------------------+
| PARENT_SWITCH_THRESHOLD | 640 |
+-------------------------+-------------------+
| NUM_UPPERLAYER_PACKETS | 1 |
+-------------------------+-------------------+
| MAX_JOIN_TIME | 300 |
+-------------------------+-------------------+
Figure 5: Recommended Settings
8. Security Considerations
This document is concerned only with link-layer security.
By their nature, many Internet of Things (IoT) networks have nodes in
physically vulnerable locations. We should assume that nodes will be
physically compromised, their memories examined, and their keys
extracted. Fixed secrets will not remain secret. This impacts the
node-joining process. Provisioning a network with a fixed link key
K2 is not secure. For most applications, this implies that there
will be a joining phase during which some level of authorization will
be allowed for nodes that have not been authenticated. Details are
out of scope, but the link layer must provide some flexibility here.
If an attacker has obtained K1, it can generate fake EBs to attack a
whole network by sending authenticated EBs. The attacker can cause
the joining node to initiate the joining process to the attacker. In
the case that the joining process includes authentication and
distribution of a K2, then the joining process will fail and the JN
will notice the attack. If K2 is also compromised, the JN will not
notice the attack and the network will be compromised.
Even if an attacker does not know the value of K1 and K2
(Section 4.6), it can still generate fake EB frames authenticated
with an arbitrary key. Here we discuss the impact these fake EBs can
have, depending on what key(s) are pre-provisioned.
Vilajosana, et al. Best Current Practice [Page 17]
^L
RFC 8180 6TiSCH Minimal May 2017
If both K1 and K2 are pre-provisioned; a joining node can
distinguish legitimate from fake EBs and join the legitimate
network. The fake EBs have no impact.
The same holds if K1 is pre-provisioned but not K2.
If neither K1 nor K2 is pre-provisioned, a joining node may
mistake a fake EB for a legitimate one and initiate a joining
process to the attacker. That joining process will fail, as the
joining node will not be able to authenticate the attacker during
the security handshake. This will force the joining node to start
over listening for an EB. So while the joining node never joins
the attacker, this costs the joining node time and energy and is a
vector of attack.
Choosing what key(s) to pre-provision needs to balance the different
discussions above.
Once the joining process is over, the node that has joined can
authenticate EBs (it knows K1). This means it can process their
contents and use EBs for synchronization.
ASN provides a nonce for security operations in a slot. Any re-use
of ASN with a given key exposes information about encrypted packet
contents and risks replay attacks. Replay attacks are prevented
because, when the network resets, either the new network uses new
cryptographic key(s) or ensures that the ASN increases monotonically
(Section 4.6).
Maintaining accurate time synchronization is critical for network
operation. Accepting timing information from unsecured sources MUST
be avoided during normal network operation, as described in
Section 4.5.2. During joining, a node may be susceptible to timing
attacks before key K1 and K2 are learned. During network operation,
a node MAY maintain statistics on time updates from neighbors and
monitor for anomalies.
Denial-of-Service (DoS) attacks at the Media Access Control (MAC)
layer in an LLN are easy to achieve simply by Radio Frequency (RF)
jamming. This is the base case against which more sophisticated DoS
attacks should be judged. For example, sending fake EBs announcing a
very low Join Metric may cause a node to waste time and energy trying
to join a fake network even when legitimate EBs are being heard.
Proper join security will prevent the node from joining the false
flag, but by then the time and energy will have been wasted.
However, the energy cost to the attacker would be lower and the
Vilajosana, et al. Best Current Practice [Page 18]
^L
RFC 8180 6TiSCH Minimal May 2017
energy cost to the joining node would be higher if the attacker
simply sent loud short packets in the middle of any valid EB that it
hears.
ACK reception probability is less than 100% due to changing channel
conditions and unintentional or intentional jamming. This will cause
the sending node to retransmit the same packet until it is
acknowledged or a retransmission limit is reached. Upper-layer
protocols should take this into account, possibly using a sequence
number to match retransmissions.
The 6TiSCH layer SHOULD keep track of anomalous events and report
them to a higher authority. For example, EBs reporting low Join
Metrics for networks that cannot be joined, as described above, may
be a sign of attack. Additionally, in normal network operation,
message integrity check failures on packets with a valid Cyclic
Redundancy Check (CRC) will occur at a rate on the order of once per
million packets. Any significant deviation from this rate may be a
sign of a network attack. Along the same lines, time updates in ACKs
or EBs that are inconsistent with the MAC-layer's sense of time and
its own plausible time-error drift rate may also be a result of
network attack.
9. IANA Considerations
This document does not require any IANA actions.
10. References
10.1. Normative References
[IEEE.802.15.4]
IEEE, "IEEE Standard for Low-Rate Wireless Networks",
IEEE 802.15.4,
<http://ieeexplore.ieee.org/document/7460875/>.
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119,
DOI 10.17487/RFC2119, March 1997,
<http://www.rfc-editor.org/info/rfc2119>.
[RFC2460] Deering, S. and R. Hinden, "Internet Protocol, Version 6
(IPv6) Specification", RFC 2460, DOI 10.17487/RFC2460,
December 1998, <http://www.rfc-editor.org/info/rfc2460>.
Vilajosana, et al. Best Current Practice [Page 19]
^L
RFC 8180 6TiSCH Minimal May 2017
[RFC4944] Montenegro, G., Kushalnagar, N., Hui, J., and D. Culler,
"Transmission of IPv6 Packets over IEEE 802.15.4
Networks", RFC 4944, DOI 10.17487/RFC4944, September 2007,
<http://www.rfc-editor.org/info/rfc4944>.
[RFC6206] Levis, P., Clausen, T., Hui, J., Gnawali, O., and J. Ko,
"The Trickle Algorithm", RFC 6206, DOI 10.17487/RFC6206,
March 2011, <http://www.rfc-editor.org/info/rfc6206>.
[RFC6282] Hui, J., Ed. and P. Thubert, "Compression Format for IPv6
Datagrams over IEEE 802.15.4-Based Networks", RFC 6282,
DOI 10.17487/RFC6282, September 2011,
<http://www.rfc-editor.org/info/rfc6282>.
[RFC6550] Winter, T., Ed., Thubert, P., Ed., Brandt, A., Hui, J.,
Kelsey, R., Levis, P., Pister, K., Struik, R., Vasseur,
JP., and R. Alexander, "RPL: IPv6 Routing Protocol for
Low-Power and Lossy Networks", RFC 6550,
DOI 10.17487/RFC6550, March 2012,
<http://www.rfc-editor.org/info/rfc6550>.
[RFC6551] Vasseur, JP., Ed., Kim, M., Ed., Pister, K., Dejean, N.,
and D. Barthel, "Routing Metrics Used for Path Calculation
in Low-Power and Lossy Networks", RFC 6551,
DOI 10.17487/RFC6551, March 2012,
<http://www.rfc-editor.org/info/rfc6551>.
[RFC6552] Thubert, P., Ed., "Objective Function Zero for the Routing
Protocol for Low-Power and Lossy Networks (RPL)",
RFC 6552, DOI 10.17487/RFC6552, March 2012,
<http://www.rfc-editor.org/info/rfc6552>.
[RFC6553] Hui, J. and JP. Vasseur, "The Routing Protocol for Low-
Power and Lossy Networks (RPL) Option for Carrying RPL
Information in Data-Plane Datagrams", RFC 6553,
DOI 10.17487/RFC6553, March 2012,
<http://www.rfc-editor.org/info/rfc6553>.
[RFC6554] Hui, J., Vasseur, JP., Culler, D., and V. Manral, "An IPv6
Routing Header for Source Routes with the Routing Protocol
for Low-Power and Lossy Networks (RPL)", RFC 6554,
DOI 10.17487/RFC6554, March 2012,
<http://www.rfc-editor.org/info/rfc6554>.
[RFC6719] Gnawali, O. and P. Levis, "The Minimum Rank with
Hysteresis Objective Function", RFC 6719,
DOI 10.17487/RFC6719, September 2012,
<http://www.rfc-editor.org/info/rfc6719>.
Vilajosana, et al. Best Current Practice [Page 20]
^L
RFC 8180 6TiSCH Minimal May 2017
[RFC6775] Shelby, Z., Ed., Chakrabarti, S., Nordmark, E., and C.
Bormann, "Neighbor Discovery Optimization for IPv6 over
Low-Power Wireless Personal Area Networks (6LoWPANs)",
RFC 6775, DOI 10.17487/RFC6775, November 2012,
<http://www.rfc-editor.org/info/rfc6775>.
[RFC8025] Thubert, P., Ed. and R. Cragie, "IPv6 over Low-Power
Wireless Personal Area Network (6LoWPAN) Paging Dispatch",
RFC 8025, DOI 10.17487/RFC8025, November 2016,
<http://www.rfc-editor.org/info/rfc8025>.
[RFC8138] Thubert, P., Ed., Bormann, C., Toutain, L., and R. Cragie,
"IPv6 over Low-Power Wireless Personal Area Network
(6LoWPAN) Routing Header", RFC 8138, DOI 10.17487/RFC8138,
April 2017, <http://www.rfc-editor.org/info/rfc8138>.
[RFC8174] Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC
2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174,
May 2017, <http://www.rfc-editor.org/info/rfc8174>.
10.2. Informative References
[openwsn] Watteyne, T., Vilajosana, X., Kerkez, B., Chraim, F.,
Weekly, K., Wang, Q., Glaser, S., and K. Pister, "OpenWSN:
a standards-based low-power wireless development
environment", Transactions on Emerging Telecommunications
Technologies, Volume 23 Issue 5, pages 480-493, DOI
10.1002/ett.2558, August 2012.
[PROTO-6P]
Wang, Q., Vilajosana, X., and T. Watteyne, "6top Protocol
(6P)", Work in Progress, draft-ietf-6tisch-6top-protocol-
05, May 2017.
[RFC7554] Watteyne, T., Ed., Palattella, M., and L. Grieco, "Using
IEEE 802.15.4e Time-Slotted Channel Hopping (TSCH) in the
Internet of Things (IoT): Problem Statement", RFC 7554,
DOI 10.17487/RFC7554, May 2015,
<http://www.rfc-editor.org/info/rfc7554>.
[SEC-6TISCH]
Vucinic, M., Simon, J., Pister, K., and M. Richardson,
"Minimal Security Framework for 6TiSCH", Work in
Progress, draft-ietf-6tisch-minimal-security-02, March
2017.
Vilajosana, et al. Best Current Practice [Page 21]
^L
RFC 8180 6TiSCH Minimal May 2017
[SEC-JOIN-6TISCH]
Richardson, M., "6tisch Secure Join protocol", Work in
Progress, draft-ietf-6tisch-dtsecurity-secure-join-01,
February 2017.
[TERMS-6TiSCH]
Palattella, M., Thubert, P., Watteyne, T., and Q. Wang,
"Terminology in IPv6 over the TSCH mode of IEEE
802.15.4e", Work in Progress, draft-ietf-6tisch-
terminology-08, December 2016.
Vilajosana, et al. Best Current Practice [Page 22]
^L
RFC 8180 6TiSCH Minimal May 2017
Appendix A. Examples
This section contains several example packets. Each example contains
(1) a schematic header diagram, (2) the corresponding bytestream, and
(3) a description of each of the IEs that form the packet. Packet
formats are specific for the [IEEE.802.15.4] revision and may vary in
future releases of the IEEE standard. In case of differences between
the packet content presented in this section and [IEEE.802.15.4], the
latter has precedence.
The MAC header fields are described in a specific order. All field
formats in this example are depicted in the order in which they are
transmitted, from left to right, where the leftmost bit is
transmitted first. Bits within each field are numbered from 0
(leftmost and least significant) to k - 1 (rightmost and most
significant), where the length of the field is k bits. Fields that
are longer than a single octet are sent to the PHY in the order from
the octet containing the lowest numbered bits to the octet containing
the highest numbered bits (little endian).
A.1. Example: EB with Default Timeslot Template
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Len1 = 0 |Element ID=0x7e|0| Len2 = 26 |GrpId=1|1|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Len3 = 6 |Sub ID = 0x1a|0| ASN
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
ASN | Join Metric |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Len4 = 0x01 |Sub ID = 0x1c|0| TT ID = 0x00 | Len5 = 0x01
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|ID=0x9 |1| CH ID = 0x00 | Len6 = 0x0A |Sub ID = 0x1b|0|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| #SF = 0x01 | SF ID = 0x00 | SF LEN = 0x65 (101 slots) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| #Links = 0x01 | SLOT OFFSET = 0x0000 | CHANNEL
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
OFF = 0x0000 |Link OPT = 0x0F| NO MAC PAYLOAD
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Bytestream:
00 3F 1A 88 06 1A ASN#0 ASN#1 ASN#2 ASN#3 ASN#4 JP 01 1C 00
01 C8 00 0A 1B 01 00 65 00 01 00 00 00 00 0F
Vilajosana, et al. Best Current Practice [Page 23]
^L
RFC 8180 6TiSCH Minimal May 2017
Description of the IEs:
#Header IE Header
Len1 = Header IE Length (0)
Element ID = 0x7e - termination IE indicating Payload IE
coming next
Type 0
#Payload IE Header (MLME)
Len2 = Payload IE Len (26 bytes)
Group ID = 1 MLME (Nested)
Type = 1
#MLME-SubIE TSCH Synchronization
Len3 = Length in bytes of the sub-IE payload (6 bytes)
Sub-ID = 0x1a (MLME-SubIE TSCH Synchronization)
Type = Short (0)
ASN = Absolute Sequence Number (5 bytes)
Join Metric = 1 byte
#MLME-SubIE TSCH Timeslot
Len4 = Length in bytes of the sub-IE payload (1 byte)
Sub-ID = 0x1c (MLME-SubIE Timeslot)
Type = Short (0)
Timeslot template ID = 0x00 (default)
#MLME-SubIE Channel Hopping
Len5 = Length in bytes of the sub-IE payload (1 byte)
Sub-ID = 0x09 (MLME-SubIE Channel Hopping)
Type = Long (1)
Hopping Sequence ID = 0x00 (default)
#MLME-SubIE TSCH Slotframe and Link
Len6 = Length in bytes of the sub-IE payload (10 bytes)
Sub-ID = 0x1b (MLME-SubIE TSCH Slotframe and Link)
Type = Short (0)
Number of slotframes = 0x01
Slotframe handle = 0x00
Slotframe size = 101 slots (0x65)
Number of Links (Cells) = 0x01
Timeslot = 0x0000 (2B)
Channel Offset = 0x0000 (2B)
Link Options = 0x0F
(TX Link = 1, RX Link = 1, Shared Link = 1,
Timekeeping = 1 )
Vilajosana, et al. Best Current Practice [Page 24]
^L
RFC 8180 6TiSCH Minimal May 2017
A.2. Example: EB with Custom Timeslot Template
Using a custom timeslot template in EBs: setting timeslot length to
15 ms.
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Len1 = 0 |Element ID=0x7e|0| Len2 = 53 |GrpId=1|1|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Len3 = 6 |Sub ID = 0x1a|0| ASN
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
ASN | Join Metric |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Len4 = 25 |Sub ID = 0x1c|0| TT ID = 0x01 | macTsCCAOffset
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
= 2700 | macTsCCA = 128 | macTsTxOffset
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
= 3180 | macTsRxOffset = 1680 | macTsRxAckDelay
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
= 1200 | macTsTxAckDelay = 1500 | macTsRxWait
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
= 3300 | macTsAckWait = 600 | macTsRxTx
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
= 192 | macTsMaxAck = 2400 | macTsMaxTx
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
= 4256 | macTsTimeslotLength = 15000 | Len5 = 0x01
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|ID=0x9 |1| CH ID = 0x00 | Len6 = 0x0A | ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Bytestream:
00 3F 1A 88 06 1A ASN#0 ASN#1 ASN#2 ASN#3 ASN#4 JP 19 1C 01 8C 0A 80
00 6C 0C 90 06 B0 04 DC 05 E4 0C 58 02 C0 00 60 09 A0 10 98 3A 01 C8
00 0A ...
Description of the IEs:
#Header IE Header
Len1 = Header IE Length (none)
Element ID = 0x7e - termination IE indicating Payload IE
coming next
Type 0
Vilajosana, et al. Best Current Practice [Page 25]
^L
RFC 8180 6TiSCH Minimal May 2017
#Payload IE Header (MLME)
Len2 = Payload IE Len (53 bytes)
Group ID = 1 MLME (Nested)
Type = 1
#MLME-SubIE TSCH Synchronization
Len3 = Length in bytes of the sub-IE payload (6 bytes)
Sub-ID = 0x1a (MLME-SubIE TSCH Synchronization)
Type = Short (0)
ASN = Absolute Sequence Number (5 bytes)
Join Metric = 1 byte
#MLME-SubIE TSCH Timeslot
Len4 = Length in bytes of the sub-IE payload (25 bytes)
Sub-ID = 0x1c (MLME-SubIE Timeslot)
Type = Short (0)
Timeslot template ID = 0x01 (non-default)
The 15 ms timeslot announced:
+--------------------------------+------------+
| IEEE 802.15.4 TSCH parameter | Value (us) |
+--------------------------------+------------+
| macTsCCAOffset | 2700 |
+--------------------------------+------------+
| macTsCCA | 128 |
+--------------------------------+------------+
| macTsTxOffset | 3180 |
+--------------------------------+------------+
| macTsRxOffset | 1680 |
+--------------------------------+------------+
| macTsRxAckDelay | 1200 |
+--------------------------------+------------+
| macTsTxAckDelay | 1500 |
+--------------------------------+------------+
| macTsRxWait | 3300 |
+--------------------------------+------------+
| macTsAckWait | 600 |
+--------------------------------+------------+
| macTsRxTx | 192 |
+--------------------------------+------------+
| macTsMaxAck | 2400 |
+--------------------------------+------------+
| macTsMaxTx | 4256 |
+--------------------------------+------------+
| macTsTimeslotLength | 15000 |
+--------------------------------+------------+
Vilajosana, et al. Best Current Practice [Page 26]
^L
RFC 8180 6TiSCH Minimal May 2017
#MLME-SubIE Channel Hopping
Len5 = Length in bytes of the sub-IE payload. (1 byte)
Sub-ID = 0x09 (MLME-SubIE Channel Hopping)
Type = Long (1)
Hopping Sequence ID = 0x00 (default)
A.3. Example: Link-layer Acknowledgment
Enhanced Acknowledgment packets carry the Time Correction IE (Header
IE).
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Len1 = 2 |Element ID=0x1e|0| Time Sync Info |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Bytestream:
02 0F TS#0 TS#1
Description of the IEs:
#Header IE Header
Len1 = Header IE Length (2 bytes)
Element ID = 0x1e - ACK/NACK Time Correction IE
Type 0
A.4. Example: Auxiliary Security Header
802.15.4 Auxiliary Security Header with the Security Level set to
ENC-MIC-32.
1
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|L = 5|M=1|1|1|0|Key Index = IDX|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Bytestream:
6D IDX#0
Security Auxiliary Header fields in the example:
#Security Control (1 byte)
L = Security Level ENC-MIC-32 (5)
M = Key Identifier Mode (0x01)
Vilajosana, et al. Best Current Practice [Page 27]
^L
RFC 8180 6TiSCH Minimal May 2017
Frame Counter Suppression = 1 (omitting Frame Counter field)
ASN in Nonce = 1 (construct Nonce from 5 byte ASN)
Reserved = 0
#Key Identifier (1 byte)
Key Index = IDX (deployment-specific KeyIndex parameter that
identifies the cryptographic key)
Acknowledgments
The authors acknowledge the guidance and input from Rene Struik, Pat
Kinney, Michael Richardson, Tero Kivinen, Nicola Accettura, Malisa
Vucinic, and Jonathan Simon. Thanks to Charles Perkins, Brian E.
Carpenter, Ralph Droms, Warren Kumari, Mirja Kuehlewind, Ben
Campbell, Benoit Claise, and Suresh Krishnan for the exhaustive and
detailed reviews. Thanks to Simon Duquennoy, Guillaume Gaillard,
Tengfei Chang, and Jonathan Munoz for the detailed review of the
examples section. Thanks to 6TiSCH co-chair Pascal Thubert for his
guidance and advice.
Authors' Addresses
Xavier Vilajosana (editor)
Universitat Oberta de Catalunya
156 Rambla Poblenou
Barcelona, Catalonia 08018
Spain
Email: xvilajosana@uoc.edu
Kris Pister
University of California Berkeley
512 Cory Hall
Berkeley, California 94720
United States of America
Email: pister@eecs.berkeley.edu
Thomas Watteyne
Analog Devices
32990 Alvarado-Niles Road, Suite 910
Union City, CA 94587
United States of America
Email: twatteyne@linear.com
Vilajosana, et al. Best Current Practice [Page 28]
^L
|