File: rfc8376.html

package info (click to toggle)
doc-rfc 20201128-1
  • links: PTS, VCS
  • area: non-free
  • in suites: bullseye
  • size: 1,307,124 kB
file content (2405 lines) | stat: -rw-r--r-- 126,227 bytes parent folder | download | duplicates (2)
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
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
<pre>Internet Engineering Task Force (IETF)                   S. Farrell, Ed.
Request for Comments: 8376                        Trinity College Dublin
Category: Informational                                         May 2018
ISSN: 2070-1721


              <span class="h1">Low-Power Wide Area Network (LPWAN) Overview</span>

Abstract

   Low-Power Wide Area Networks (LPWANs) are wireless technologies with
   characteristics such as large coverage areas, low bandwidth, possibly
   very small packet and application-layer data sizes, and long battery
   life operation.  This memo is an informational overview of the set of
   LPWAN technologies being considered in the IETF and of the gaps that
   exist between the needs of those technologies and the goal of running
   IP in LPWANs.

Status of This Memo

   This document is not an Internet Standards Track specification; it is
   published for informational purposes.

   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).  Not all documents
   approved by the IESG are candidates for any level of Internet
   Standard; see <a href="./rfc7841#section-2">Section&nbsp;2 of RFC 7841</a>.

   Information about the current status of this document, any errata,
   and how to provide feedback on it may be obtained at
   <a href="https://www.rfc-editor.org/info/rfc8376">https://www.rfc-editor.org/info/rfc8376</a>.

Copyright Notice

   Copyright (c) 2018 IETF Trust and the persons identified as the
   document authors.  All rights reserved.

   This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
   Provisions Relating to IETF Documents
   (<a href="https://trustee.ietf.org/license-info">https://trustee.ietf.org/license-info</a>) 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.



<span class="grey">Farrell                       Informational                     [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


Table of Contents

   <a href="#section-1">1</a>.  Introduction  . . . . . . . . . . . . . . . . . . . . . . . .   <a href="#page-2">2</a>
   <a href="#section-2">2</a>.  LPWAN Technologies  . . . . . . . . . . . . . . . . . . . . .   <a href="#page-3">3</a>
     <a href="#section-2.1">2.1</a>.  LoRaWAN . . . . . . . . . . . . . . . . . . . . . . . . .   <a href="#page-4">4</a>
       <a href="#section-2.1.1">2.1.1</a>.  Provenance and Documents  . . . . . . . . . . . . . .   <a href="#page-4">4</a>
       <a href="#section-2.1.2">2.1.2</a>.  Characteristics . . . . . . . . . . . . . . . . . . .   <a href="#page-4">4</a>
     <a href="#section-2.2">2.2</a>.  Narrowband IoT (NB-IoT) . . . . . . . . . . . . . . . . .  <a href="#page-10">10</a>
       <a href="#section-2.2.1">2.2.1</a>.  Provenance and Documents  . . . . . . . . . . . . . .  <a href="#page-10">10</a>
       <a href="#section-2.2.2">2.2.2</a>.  Characteristics . . . . . . . . . . . . . . . . . . .  <a href="#page-11">11</a>
     <a href="#section-2.3">2.3</a>.  Sigfox  . . . . . . . . . . . . . . . . . . . . . . . . .  <a href="#page-15">15</a>
       <a href="#section-2.3.1">2.3.1</a>.  Provenance and Documents  . . . . . . . . . . . . . .  <a href="#page-15">15</a>
       <a href="#section-2.3.2">2.3.2</a>.  Characteristics . . . . . . . . . . . . . . . . . . .  <a href="#page-16">16</a>
     <a href="#section-2.4">2.4</a>.  Wi-SUN Alliance Field Area Network (FAN)  . . . . . . . .  <a href="#page-20">20</a>
       <a href="#section-2.4.1">2.4.1</a>.  Provenance and Documents  . . . . . . . . . . . . . .  <a href="#page-20">20</a>
       <a href="#section-2.4.2">2.4.2</a>.  Characteristics . . . . . . . . . . . . . . . . . . .  <a href="#page-21">21</a>
   <a href="#section-3">3</a>.  Generic Terminology . . . . . . . . . . . . . . . . . . . . .  <a href="#page-24">24</a>
   <a href="#section-4">4</a>.  Gap Analysis  . . . . . . . . . . . . . . . . . . . . . . . .  <a href="#page-26">26</a>
     <a href="#section-4.1">4.1</a>.  Naive Application of IPv6 . . . . . . . . . . . . . . . .  <a href="#page-26">26</a>
     <a href="#section-4.2">4.2</a>.  6LoWPAN . . . . . . . . . . . . . . . . . . . . . . . . .  <a href="#page-26">26</a>
       <a href="#section-4.2.1">4.2.1</a>.  Header Compression  . . . . . . . . . . . . . . . . .  <a href="#page-27">27</a>
       <a href="#section-4.2.2">4.2.2</a>.  Address Autoconfiguration . . . . . . . . . . . . . .  <a href="#page-27">27</a>
       <a href="#section-4.2.3">4.2.3</a>.  Fragmentation . . . . . . . . . . . . . . . . . . . .  <a href="#page-27">27</a>
       <a href="#section-4.2.4">4.2.4</a>.  Neighbor Discovery  . . . . . . . . . . . . . . . . .  <a href="#page-28">28</a>
     <a href="#section-4.3">4.3</a>.  6lo . . . . . . . . . . . . . . . . . . . . . . . . . . .  <a href="#page-29">29</a>
     <a href="#section-4.4">4.4</a>.  6tisch  . . . . . . . . . . . . . . . . . . . . . . . . .  <a href="#page-29">29</a>
     <a href="#section-4.5">4.5</a>.  RoHC  . . . . . . . . . . . . . . . . . . . . . . . . . .  <a href="#page-29">29</a>
     <a href="#section-4.6">4.6</a>.  ROLL  . . . . . . . . . . . . . . . . . . . . . . . . . .  <a href="#page-30">30</a>
     <a href="#section-4.7">4.7</a>.  CoAP  . . . . . . . . . . . . . . . . . . . . . . . . . .  <a href="#page-30">30</a>
     <a href="#section-4.8">4.8</a>.  Mobility  . . . . . . . . . . . . . . . . . . . . . . . .  <a href="#page-31">31</a>
     <a href="#section-4.9">4.9</a>.  DNS and LPWAN . . . . . . . . . . . . . . . . . . . . . .  <a href="#page-31">31</a>
   <a href="#section-5">5</a>.  Security Considerations . . . . . . . . . . . . . . . . . . .  <a href="#page-31">31</a>
   <a href="#section-6">6</a>.  IANA Considerations . . . . . . . . . . . . . . . . . . . . .  <a href="#page-32">32</a>
   <a href="#section-7">7</a>.  Informative References  . . . . . . . . . . . . . . . . . . .  <a href="#page-32">32</a>
   Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . . .  <a href="#page-39">39</a>
   Contributors  . . . . . . . . . . . . . . . . . . . . . . . . . .  <a href="#page-40">40</a>
   Author's Address  . . . . . . . . . . . . . . . . . . . . . . . .  <a href="#page-43">43</a>

<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>.  Introduction</span>

   This document provides background material and an overview of the
   technologies being considered in the IETF's IPv6 over Low Power Wide-
   Area Networks (LPWAN) Working Group (WG).  It also provides a gap
   analysis between the needs of these technologies and currently
   available IETF specifications.






<span class="grey">Farrell                       Informational                     [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   Most technologies in this space aim for a similar goal of supporting
   large numbers of very low-cost, low-throughput devices with very low
   power consumption, so that even battery-powered devices can be
   deployed for years.  LPWAN devices also tend to be constrained in
   their use of bandwidth, for example, with limited frequencies being
   allowed to be used within limited duty cycles (usually expressed as a
   percentage of time per hour that the device is allowed to transmit).
   As the name implies, coverage of large areas is also a common goal.
   So, by and large, the different technologies aim for deployment in
   very similar circumstances.

   While all constrained networks must balance power consumption /
   battery life, cost, and bandwidth, LPWANs prioritize power and cost
   benefits by accepting severe bandwidth and duty cycle constraints
   when making the required trade-offs.  This prioritization is made in
   order to get the multiple-kilometer radio links implied by "Wide
   Area" in LPWAN's name.

   Existing pilot deployments have shown huge potential and created much
   industrial interest in these technologies.  At the time of writing,
   essentially no LPWAN end devices (other than for Wi-SUN) have IP
   capabilities.  Connecting LPWANs to the Internet would provide
   significant benefits to these networks in terms of interoperability,
   application deployment, and management (among others).  The goal of
   the LPWAN WG is to, where necessary, adapt IETF-defined protocols,
   addressing schemes, and naming conventions to this particular
   constrained environment.

   This document is largely the work of the people listed in the
   Contributors section.

<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>.  LPWAN Technologies</span>

   This section provides an overview of the set of LPWAN technologies
   that are being considered in the LPWAN WG.  The text for each was
   mainly contributed by proponents of each technology.

   Note that this text is not intended to be normative in any sense; it
   simply exists to help the reader in finding the relevant Layer 2 (L2)
   specifications and in understanding how those integrate with IETF-
   defined technologies.  Similarly, there is no attempt here to set out
   the pros and cons of the relevant technologies.









<span class="grey">Farrell                       Informational                     [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>.  LoRaWAN</span>

<span class="h4"><a class="selflink" id="section-2.1.1" href="#section-2.1.1">2.1.1</a>.  Provenance and Documents</span>

   LoRaWAN is a wireless technology based on Industrial, Scientific, and
   Medical (ISM) that is used for long-range low-power low-data-rate
   applications developed by the LoRa Alliance, a membership consortium
   &lt;<a href="https://www.lora-alliance.org/">https://www.lora-alliance.org/</a>&gt;.  This document is based on Version
   1.0.2 of the LoRa specification [<a href="#ref-LoRaSpec" title="&quot;LoRaWAN Specification Version V1.0.2&quot;">LoRaSpec</a>].  That specification is
   publicly available and has already seen several deployments across
   the globe.

<span class="h4"><a class="selflink" id="section-2.1.2" href="#section-2.1.2">2.1.2</a>.  Characteristics</span>

   LoRaWAN aims to support end devices operating on a single battery for
   an extended period of time (e.g., 10 years or more), extended
   coverage through 155 dB maximum coupling loss, and reliable and
   efficient file download (as needed for remote software/firmware
   upgrade).

   LoRaWAN networks are typically organized in a star-of-stars topology
   in which Gateways relay messages between end devices and a central
   "network server" in the backend.  Gateways are connected to the
   network server via IP links while end devices use single-hop LoRaWAN
   communication that can be received at one or more Gateways.
   Communication is generally bidirectional; uplink communication from
   end devices to the network server is favored in terms of overall
   bandwidth availability.

   Figure 1 shows the entities involved in a LoRaWAN network.

   +----------+
   |End Device| * * *
   +----------+       *   +---------+
                        * | Gateway +---+
   +----------+       *   +---------+   |   +---------+
   |End Device| * * *                   +---+ Network +--- Application
   +----------+       *                 |   | Server  |
                        * +---------+   |   +---------+
   +----------+       *   | Gateway +---+
   |End Device| * * *   * +---------+
   +----------+
       Key: *      LoRaWAN Radio
            +---+  IP connectivity

                      Figure 1: LoRaWAN Architecture





<span class="grey">Farrell                       Informational                     [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   o  End Device: a LoRa client device, sometimes called a "mote".
      Communicates with Gateways.

   o  Gateway: a radio on the infrastructure side, sometimes called a
      "concentrator" or "base station".  Communicates with end devices
      and, via IP, with a network server.

   o  Network Server: The Network Server (NS) terminates the LoRaWAN
      Medium Access Control (MAC) layer for the end devices connected to
      the network.  It is the center of the star topology.

   o  Join Server: The Join Server (JS) is a server on the Internet side
      of an NS that processes join requests from an end devices.

   o  Uplink message: refers to communications from an end device to a
      network server or application via one or more Gateways.

   o  Downlink message: refers to communications from a network server
      or application via one Gateway to a single end device or a group
      of end devices (considering multicasting).

   o  Application: refers to application-layer code both on the end
      device and running "behind" the NS.  For LoRaWAN, there will
      generally only be one application running on most end devices.
      Interfaces between the NS and the application are not further
      described here.

   In LoRaWAN networks, end device transmissions may be received at
   multiple Gateways, so, during nominal operation, a network server may
   see multiple instances of the same uplink message from an end device.

   The LoRaWAN network infrastructure manages the data rate and Radio
   Frequency (RF) output power for each end device individually by means
   of an Adaptive Data Rate (ADR) scheme.  End devices may transmit on
   any channel allowed by local regulation at any time.

   LoRaWAN radios make use of ISM bands, for example, 433 MHz and 868
   MHz within the European Union and 915 MHz in the Americas.

   The end device changes channels in a pseudorandom fashion for every
   transmission to help make the system more robust to interference and/
   or to conform to local regulations.









<span class="grey">Farrell                       Informational                     [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   Figure 2 shows that after a transmission slot, a Class A device turns
   on its receiver for two short receive windows that are offset from
   the end of the transmission window.  End devices can only transmit a
   subsequent uplink frame after the end of the associated receive
   windows.  When a device joins a LoRaWAN network, there are similar
   timeouts on parts of that process.

   |----------------------------|         |--------|     |--------|
   |             Tx             |         |   Rx   |     |   Rx   |
   |----------------------------|         |--------|     |--------|
                                |---------|
                                 Rx delay 1
                                |------------------------|
                                 Rx delay 2

        Figure 2: LoRaWAN Class A Transmission and Reception Window

   Given the different regional requirements, the detailed specification
   for the LoRaWAN Physical layer (PHY) (taking up more than 30 pages of
   the specification) is not reproduced here.  Instead, and mainly to
   illustrate the kinds of issue encountered, Table 1 presents some of
   the default settings for one ISM band (without fully explaining those
   here); Table 2 describes maxima and minima for some parameters of
   interest to those defining ways to use IETF protocols over the
   LoRaWAN MAC layer.

   +-----------------------+-------------------------------------------+
   |       Parameters      |               Default Value               |
   +-----------------------+-------------------------------------------+
   |       Rx delay 1      |                    1 s                    |
   |                       |                                           |
   |       Rx delay 2      |     2 s (must be RECEIVE_DELAY1 + 1 s)    |
   |                       |                                           |
   |      join delay 1     |                    5 s                    |
   |                       |                                           |
   |      join delay 2     |                    6 s                    |
   |                       |                                           |
   |     868MHz Default    |  3 (868.1,868.2,868.3), data rate: 0.3-50 |
   |        channels       |                   kbit/s                  |
   +-----------------------+-------------------------------------------+

               Table 1: Default Settings for EU 868 MHz Band









<span class="grey">Farrell                       Informational                     [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   +------------------------------------------------+--------+---------+
   | Parameter/Notes                                |  Min   |   Max   |
   +------------------------------------------------+--------+---------+
   | Duty Cycle: some but not all ISM bands impose  |   1%   |    no   |
   | a limit in terms of how often an end device    |        |  limit  |
   | can transmit.  In some cases, LoRaWAN is more  |        |         |
   | restrictive in an attempt to avoid congestion. |        |         |
   |                                                |        |         |
   | EU 868 MHz band data rate/frame size           |  250   |  50000  |
   |                                                | bits/s |  bits/s |
   |                                                |  : 59  |  : 250  |
   |                                                | octets |  octets |
   |                                                |        |         |
   | US 915 MHz band data rate/frame size           |  980   |  21900  |
   |                                                | bits/s |  bits/s |
   |                                                |  : 19  |  : 250  |
   |                                                | octets |  octets |
   +------------------------------------------------+--------+---------+

         Table 2: Minima and Maxima for Various LoRaWAN Parameters

   Note that, in the case of the smallest frame size (19 octets), 8
   octets are required for LoRa MAC layer headers, leaving only 11
   octets for payload (including MAC layer options).  However, those
   settings do not apply for the join procedure -- end devices are
   required to use a channel and data rate that can send the 23-byte
   Join-Request message for the join procedure.

   Uplink and downlink higher-layer data is carried in a MACPayload.
   There is a concept of "ports" (an optional 8-bit value) to handle
   different applications on an end device.  Port zero is reserved for
   LoRaWAN-specific messaging, such as the configuration of the end
   device's network parameters (available channels, data rates, ADR
   parameters, Rx Delay 1 and 2, etc.).

   In addition to carrying higher-layer PDUs, there are Join-Request and
   Join-Response (aka Join-Accept) messages for handling network access.
   And so-called "MAC commands" (see below) up to 15 bytes long can be
   piggybacked in an options field ("FOpts").

   There are a number of MAC commands for link and device status
   checking, ADR and duty cycle negotiation, and managing the RX windows
   and radio channel settings.  For example, the link check response
   message allows the NS (in response to a request from an end device)
   to inform an end device about the signal attenuation seen most
   recently at a Gateway and to tell the end device how many Gateways
   received the corresponding link request MAC command.




<span class="grey">Farrell                       Informational                     [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   Some MAC commands are initiated by the network server.  For example,
   one command allows the network server to ask an end device to reduce
   its duty cycle to only use a proportion of the maximum allowed in a
   region.  Another allows the network server to query the end device's
   power status with the response from the end device specifying whether
   it has an external power source or is battery powered (in which case,
   a relative battery level is also sent to the network server).

   In order to operate nominally on a LoRaWAN network, a device needs a
   32-bit device address, which is assigned when the device "joins" the
   network (see below for the join procedure) or that is pre-provisioned
   into the device.  In case of roaming devices, the device address is
   assigned based on the 24-bit network identifier (NetID) that is
   allocated to the network by the LoRa Alliance.  Non-roaming devices
   can be assigned device addresses by the network without relying on a
   NetID assigned by the LoRa Alliance.

   End devices are assumed to work with one or quite a limited number of
   applications, identified by a 64-bit AppEUI, which is assumed to be a
   registered IEEE EUI64 value [<a href="#ref-EUI64" title="&quot;Guidelines for 64-bit Global Identifier (EUI),Organizationally Unique Identifier (OUI), and Company ID (CID)&quot;">EUI64</a>].  In addition, a device needs to
   have two symmetric session keys, one for protecting network artifacts
   (port=0), the NwkSKey, and another for protecting application-layer
   traffic, the AppSKey.  Both keys are used for 128-bit AES
   cryptographic operations.  So, one option is for an end device to
   have all of the above plus channel information, somehow
   (pre-)provisioned; in that case, the end device can simply start
   transmitting.  This is achievable in many cases via out-of-band means
   given the nature of LoRaWAN networks.  Table 3 summarizes these
   values.

   +---------+---------------------------------------------------------+
   | Value   | Description                                             |
   +---------+---------------------------------------------------------+
   | DevAddr | DevAddr (32 bits) =  device-specific network address    |
   |         | generated from the NetID                                |
   |         |                                                         |
   | AppEUI  | IEEE EUI64 value corresponding to the join server for   |
   |         | an application                                          |
   |         |                                                         |
   | NwkSKey | 128-bit network session key used with AES-CMAC          |
   |         |                                                         |
   | AppSKey | 128-bit application session key used with AES-CTR       |
   |         |                                                         |
   | AppKey  | 128-bit application session key used with AES-ECB       |
   +---------+---------------------------------------------------------+

              Table 3: Values Required for Nominal Operation




<span class="grey">Farrell                       Informational                     [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   As an alternative, end devices can use the LoRaWAN join procedure
   with a join server behind the NS in order to set up some of these
   values and dynamically gain access to the network.  To use the join
   procedure, an end device must still know the AppEUI and a different
   (long-term) symmetric key that is bound to the AppEUI (this is the
   application key (AppKey), and it is distinct from the application
   session key (AppSKey)).  The AppKey is required to be specific to the
   device; that is, each end device should have a different AppKey
   value.  Finally, the end device also needs a long-term identifier for
   itself, which is syntactically also an EUI-64 and is known as the
   device EUI or DevEUI.  Table 4 summarizes these values.

     +---------+----------------------------------------------------+
     | Value   | Description                                        |
     +---------+----------------------------------------------------+
     | DevEUI  | IEEE EUI64 naming the device                       |
     |         |                                                    |
     | AppEUI  | IEEE EUI64 naming the application                  |
     |         |                                                    |
     | AppKey  | 128-bit long-term application key for use with AES |
     +---------+----------------------------------------------------+

                Table 4: Values Required for Join Procedure

   The join procedure involves a special exchange where the end device
   asserts the AppEUI and DevEUI (integrity protected with the long-term
   AppKey, but not encrypted) in a Join-Request uplink message.  This is
   then routed to the network server, which interacts with an entity
   that knows that AppKey to verify the Join-Request.  If all is going
   well, a Join-Accept downlink message is returned from the network
   server to the end device.  That message specifies the 24-bit NetID,
   32-bit DevAddr, and channel information and from which the AppSKey
   and NwkSKey can be derived based on knowledge of the AppKey.  This
   provides the end device with all the values listed in Table 3.

   All payloads are encrypted and have data integrity.  MAC commands,
   when sent as a payload (port zero), are therefore protected.
   However, MAC commands piggybacked as frame options ("FOpts") are sent
   in clear.  Any MAC commands sent as frame options and not only as
   payload, are visible to a passive attacker, but they are not
   malleable for an active attacker due to the use of the Message
   Integrity Check (MIC) described below.

   For LoRaWAN version 1.0.x, the NwkSKey session key is used to provide
   data integrity between the end device and the network server.  The
   AppSKey is used to provide data confidentiality between the end
   device and network server, or to the application "behind" the network
   server, depending on the implementation of the network.



<span class="grey">Farrell                       Informational                     [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   All MAC-layer messages have an outer 32-bit MIC calculated using AES-
   CMAC with the input being the ciphertext payload and other headers
   and using the NwkSkey.  Payloads are encrypted using AES-128, with a
   counter-mode derived from [<a href="#ref-IEEE.802.15.4">IEEE.802.15.4</a>] using the AppSKey.
   Gateways are not expected to be provided with the AppSKey or NwkSKey,
   all of the infrastructure-side cryptography happens in (or "behind")
   the network server.  When session keys are derived from the AppKey as
   a result of the join procedure, the Join-Accept message payload is
   specially handled.

   The long-term AppKey is directly used to protect the Join-Accept
   message content, but the function used is not an AES-encrypt
   operation, but rather an AES-decrypt operation.  The justification is
   that this means that the end device only needs to implement the AES-
   encrypt operation.  (The counter-mode variant used for payload
   decryption means the end device doesn't need an AES-decrypt
   primitive.)

   The Join-Accept plaintext is always less than 16 bytes long, so
   Electronic Code Book (ECB) mode is used for protecting Join-Accept
   messages.  The Join-Accept message contains an AppNonce (a 24-bit
   value) that is recovered on the end device along with the other Join-
   Accept content (e.g., DevAddr) using the AES-encrypt operation.  Once
   the Join-Accept payload is available to the end device, the session
   keys are derived from the AppKey, AppNonce, and other values, again
   using an ECB mode AES-encrypt operation, with the plaintext input
   being a maximum of 16 octets.

<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>.  Narrowband IoT (NB-IoT)</span>

<span class="h4"><a class="selflink" id="section-2.2.1" href="#section-2.2.1">2.2.1</a>.  Provenance and Documents</span>

   Narrowband Internet of Things (NB-IoT) has been developed and
   standardized by 3GPP.  The standardization of NB-IoT was finalized
   with 3GPP Release 13 in June 2016, and further enhancements for
   NB-IoT are specified in 3GPP Release 14 in 2017 (for example, in the
   form of multicast support).  Further features and improvements will
   be developed in the following releases, but NB-IoT has been ready to
   be deployed since 2016; it is rather simple to deploy, especially in
   the existing LTE networks with a software upgrade in the operator's
   base stations.  For more information of what has been specified for
   NB-IoT, 3GPP specification 36.300 [<a href="#ref-TGPP36300">TGPP36300</a>] provides an overview
   and overall description of the Evolved Universal Terrestrial Radio
   Access Network (E-UTRAN) radio interface protocol architecture, while
   specifications 36.321 [<a href="#ref-TGPP36321">TGPP36321</a>], 36.322 [<a href="#ref-TGPP36322">TGPP36322</a>], 36.323
   [<a href="#ref-TGPP36323">TGPP36323</a>], and 36.331 [<a href="#ref-TGPP36331">TGPP36331</a>] give more detailed descriptions





<span class="grey">Farrell                       Informational                    [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   of MAC, Radio Link Control (RLC), Packet Data Convergence Protocol
   (PDCP), and Radio Resource Control (RRC) protocol layers,
   respectively.  Note that the description below assumes familiarity
   with numerous 3GPP terms.

   For a general overview of NB-IoT, see [<a href="#ref-nbiot-ov" title="&quot;NB-IoT Technology Overview and Experience from Cloud-RAN Implementation&quot;">nbiot-ov</a>].

<span class="h4"><a class="selflink" id="section-2.2.2" href="#section-2.2.2">2.2.2</a>.  Characteristics</span>

   Specific targets for NB-IoT include: module cost that is Less than US
   $5, extended coverage of 164 dB maximum coupling loss, battery life
   of over 10 years, ~55000 devices per cell, and uplink reporting
   latency of less than 10 seconds.

   NB-IoT supports Half Duplex Frequency Division Duplex (FDD) operation
   mode with 60 kbit/s peak rate in uplink and 30 kbit/s peak rate in
   downlink, and a Maximum Transmission Unit (MTU) size of 1600 bytes,
   limited by PDCP layer (see Figure 4 for the protocol structure),
   which is the highest layer in the user plane, as explained later.
   Any packet size up to the said MTU size can be passed to the NB-IoT
   stack from higher layers, segmentation of the packet is performed in
   the RLC layer, which can segment the data to transmission blocks with
   a size as small as 16 bits.  As the name suggests, NB-IoT uses
   narrowbands with bandwidth of 180 kHz in both downlink and uplink.
   The multiple access scheme used in the downlink is Orthogonal
   Frequency-Division Multiplex (OFDMA) with 15 kHz sub-carrier spacing.
   In uplink, Sub-Carrier Frequency-Division Multiplex (SC-FDMA) single
   tone with either 15kHz or 3.75 kHz tone spacing is used, or
   optionally multi-tone SC-FDMA can be used with 15 kHz tone spacing.

   NB-IoT can be deployed in three ways.  In-band deployment means that
   the narrowband is deployed inside the LTE band and radio resources
   are flexibly shared between NB-IoT and normal LTE carrier.  In Guard-
   band deployment, the narrowband uses the unused resource blocks
   between two adjacent LTE carriers.  Standalone deployment is also
   supported, where the narrowband can be located alone in dedicated
   spectrum, which makes it possible, for example, to reframe a GSM
   carrier at 850/900 MHz for NB-IoT.  All three deployment modes are
   used in licensed frequency bands.  The maximum transmission power is
   either 20 or 23 dBm for uplink transmissions, while for downlink
   transmission the eNodeB may use higher transmission power, up to 46
   dBm depending on the deployment.

   A Maximum Coupling Loss (MCL) target for NB-IoT coverage enhancements
   defined by 3GPP is 164 dB.  With this MCL, the performance of NB-IoT
   in downlink varies between 200 bps and 2-3 kbit/s, depending on the
   deployment mode.  Stand-alone operation may achieve the highest data




<span class="grey">Farrell                       Informational                    [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   rates, up to a few kbit/s, while in-band and guard-band operations
   may reach several hundreds of bps.  NB-IoT may even operate with an
   MCL higher than 170 dB with very low bit rates.

   For signaling optimization, two options are introduced in addition to
   the legacy LTE RRC connection setup; mandatory Data-over-NAS (Control
   Plane optimization, solution 2 in [<a href="#ref-TGPP23720">TGPP23720</a>]) and optional RRC
   Suspend/Resume (User Plane optimization, solution 18 in [<a href="#ref-TGPP23720">TGPP23720</a>]).
   In the control-plane optimization, the data is sent over Non-Access
   Stratum (NAS), directly to/from the Mobile Management Entity (MME)
   (see Figure 3 for the network architecture) in the core network to
   the User Equipment (UE) without interaction from the base station.
   This means there is no Access Stratum security or header compression
   provided by the PDCP layer in the eNodeB, as the Access Stratum is
   bypassed, and only limited RRC procedures.  Header compression based
   on Robust Header Compression (RoHC) may still optionally be provided
   and terminated in the MME.

   The RRC Suspend/Resume procedures reduce the signaling overhead
   required for UE state transition from RRC Idle to RRC Connected mode
   compared to a legacy LTE operation in order to have quicker user-
   plane transaction with the network and return to RRC Idle mode
   faster.

   In order to prolong device battery life, both Power-Saving Mode (PSM)
   and extended DRX (eDRX) are available to NB-IoT.  With eDRX, the RRC
   Connected mode DRX cycle is up to 10.24 seconds; in RRC Idle, the
   eDRX cycle can be up to 3 hours.  In PSM, the device is in a deep
   sleep state and only wakes up for uplink reporting.  After the
   reporting, there is a window (configured by the network) during which
   the device receiver is open for downlink connectivity or for
   periodical "keep-alive" signaling (PSM uses periodic TAU signaling
   with additional reception windows for downlink reachability).

   Since NB-IoT operates in a licensed spectrum, it has no channel
   access restrictions allowing up to a 100% duty cycle.

   3GPP access security is specified in [<a href="#ref-TGPP33203">TGPP33203</a>].













<span class="grey">Farrell                       Informational                    [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   +--+
   |UE| \                 +------+      +------+
   +--+  \                | MME  |------| HSS  |
          \             / +------+      +------+
   +--+    \+--------+ /      |
   |UE| ----| eNodeB |-       |
   +--+    /+--------+ \      |
          /             \ +--------+
         /               \|        |    +------+     Service Packet
   +--+ /                 |  S-GW  |----| P-GW |---- Data Network (PDN)
   |UE|                   |        |    +------+     e.g., Internet
   +--+                   +--------+

                    Figure 3: 3GPP Network Architecture

   Figure 3 shows the 3GPP network architecture, which applies to
   NB-IoT.  The MME is responsible for handling the mobility of the UE.
   The MME tasks include tracking and paging UEs, session management,
   choosing the Serving Gateway for the UE during initial attachment and
   authenticating the user.  At the MME, the NAS signaling from the UE
   is terminated.

   The Serving Gateway (S-GW) routes and forwards the user data packets
   through the access network and acts as a mobility anchor for UEs
   during handover between base stations known as eNodeBs and also
   during handovers between NB-IoT and other 3GPP technologies.

   The Packet Data Network Gateway (P-GW) works as an interface between
   the 3GPP network and external networks.

   The Home Subscriber Server (HSS) contains user-related and
   subscription-related information.  It is a database that performs
   mobility management, session-establishment support, user
   authentication, and access authorization.

   E-UTRAN consists of components of a single type, eNodeB. eNodeB is a
   base station that controls the UEs in one or several cells.

   The 3GPP radio protocol architecture is illustrated in Figure 4.












<span class="grey">Farrell                       Informational                    [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   +---------+                                       +---------+
   | NAS     |----|-----------------------------|----| NAS     |
   +---------+    |    +---------+---------+    |    +---------+
   | RRC     |----|----| RRC     | S1-AP   |----|----| S1-AP   |
   +---------+    |    +---------+---------+    |    +---------+
   | PDCP    |----|----| PDCP    | SCTP    |----|----| SCTP    |
   +---------+    |    +---------+---------+    |    +---------+
   | RLC     |----|----| RLC     | IP      |----|----| IP      |
   +---------+    |    +---------+---------+    |    +---------+
   | MAC     |----|----| MAC     | L2      |----|----| L2      |
   +---------+    |    +---------+---------+    |    +---------+
   | PHY     |----|----| PHY     | PHY     |----|----| PHY     |
   +---------+         +---------+---------+         +---------+
               LTE-Uu                         S1-MME
       UE                     eNodeB                     MME

     Figure 4: 3GPP Radio Protocol Architecture for the Control Plane

   The radio protocol architecture of NB-IoT (and LTE) is separated into
   the control plane and the user plane.  The control plane consists of
   protocols that control the radio-access bearers and the connection
   between the UE and the network.  The highest layer of control plane
   is called the Non-Access Stratum (NAS), which conveys the radio
   signaling between the UE and the Evolved Packet Core (EPC), passing
   transparently through the radio network.  The NAS is responsible for
   authentication, security control, mobility management, and bearer
   management.

   The Access Stratum (AS) is the functional layer below the NAS; in the
   control plane, it consists of the Radio Resource Control (RRC)
   protocol [<a href="#ref-TGPP36331">TGPP36331</a>], which handles connection establishment and
   release functions, broadcast of system information, radio-bearer
   establishment, reconfiguration, and release.  The RRC configures the
   user and control planes according to the network status.  There exist
   two RRC states, RRC_Idle or RRC_Connected, and the RRC entity
   controls the switching between these states.  In RRC_Idle, the
   network knows that the UE is present in the network, and the UE can
   be reached in case of an incoming call/downlink data.  In this state,
   the UE monitors paging, performs cell measurements and cell
   selection, and acquires system information.  Also, the UE can receive
   broadcast and multicast data, but it is not expected to transmit or
   receive unicast data.  In RRC_Connected state, the UE has a
   connection to the eNodeB, the network knows the UE location on the
   cell level, and the UE may receive and transmit unicast data.  An RRC
   connection is established when the UE is expected to be active in the
   network, to transmit or receive data.  The RRC connection is
   released, switching back to RRC_Idle, when there is no more traffic;
   this is in order to preserve UE battery life and radio resources.



<span class="grey">Farrell                       Informational                    [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   However, as mentioned earlier, a new feature was introduced for
   NB-IoT that allows data to be transmitted from the MME directly to
   the UE and then transparently to the eNodeB, thus bypassing AS
   functions.

   The PDCP's [<a href="#ref-TGPP36323">TGPP36323</a>] main services in the control plane are
   transfer of control-plane data, ciphering, and integrity protection.

   The RLC protocol [<a href="#ref-TGPP36322">TGPP36322</a>] performs transfer of upper-layer PDUs
   and, optionally, error correction with Automatic Repeat reQuest
   (ARQ), concatenation, segmentation, and reassembly of RLC Service
   Data Units (SDUs), in-sequence delivery of upper-layer PDUs,
   duplicate detection, RLC SDU discarding, RLC-re-establishment, and
   protocol error detection and recovery.

   The MAC protocol [<a href="#ref-TGPP36321">TGPP36321</a>] provides mapping between logical
   channels and transport channels, multiplexing of MAC SDUs, scheduling
   information reporting, error correction with Hybrid ARQ (HARQ),
   priority handling, and transport format selection.

   The PHY [<a href="#ref-TGPP36201">TGPP36201</a>] provides data-transport services to higher
   layers.  These include error detection and indication to higher
   layers, Forward Error Correction (FEC) encoding, HARQ soft-combining,
   rate-matching, mapping of the transport channels onto physical
   channels, power-weighting and modulation of physical channels,
   frequency and time synchronization, and radio characteristics
   measurements.

   The user plane is responsible for transferring the user data through
   the Access Stratum.  It interfaces with IP and the highest layer of
   the user plane is the PDCP, which, in the user plane, performs header
   compression using RoHC, transfer of user-plane data between eNodeB
   and the UE, ciphering, and integrity protection.  Similar to the
   control plane, lower layers in the user plane include RLC, MAC, and
   the PHY performing the same tasks as they do in the control plane.

<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>.  Sigfox</span>

<span class="h4"><a class="selflink" id="section-2.3.1" href="#section-2.3.1">2.3.1</a>.  Provenance and Documents</span>

   The Sigfox LPWAN is in line with the terminology and specifications
   being defined by ETSI [<a href="#ref-etsi_unb" title="&quot;System Reference document (SRdoc); Short Range Devices (SRD); Technical characteristics for Ultra Narrow Band (UNB) SRDs operating in the UHF spectrum below 1 GHz&quot;">etsi_unb</a>].  As of today, Sigfox's network has
   been fully deployed in 12 countries, with ongoing deployments in 26
   other countries, giving in total a geography of 2 million square
   kilometers, containing 512 million people.






<span class="grey">Farrell                       Informational                    [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


<span class="h4"><a class="selflink" id="section-2.3.2" href="#section-2.3.2">2.3.2</a>.  Characteristics</span>

   Sigfox LPWAN autonomous battery-operated devices send only a few
   bytes per day, week, or month, in principle, allowing them to remain
   on a single battery for up to 10-15 years.  Hence, the system is
   designed as to allow devices to last several years, sometimes even
   buried underground.

   Since the radio protocol is connectionless and optimized for uplink
   communications, the capacity of a Sigfox base station depends on the
   number of messages generated by devices, and not on the actual number
   of devices.  Likewise, the battery life of devices depends on the
   number of messages generated by the device.  Depending on the use
   case, devices can vary from sending less than one message per device
   per day to dozens of messages per device per day.

   The coverage of the cell depends on the link budget and on the type
   of deployment (urban, rural, etc.).  The radio interface is compliant
   with the following regulations:

      Spectrum allocation in the USA [<a href="#ref-fcc_ref" title="&quot;Telecommunication Radio Frequency Devices - Operation within the bands 902-928 MHz, 2400-2483.5 MHz, and 5725-5850 MHz.&quot;">fcc_ref</a>]

      Spectrum allocation in Europe [<a href="#ref-etsi_ref1">etsi_ref1</a>] [<a href="#ref-etsi_ref2">etsi_ref2</a>]

      Spectrum allocation in Japan [<a href="#ref-arib_ref" title="&quot;920MHz-Band Telemeter, Telecontrol and Data Transmission Radio Equipment&quot;">arib_ref</a>]

   The Sigfox radio interface is also compliant with the local
   regulations of the following countries: Australia, Brazil, Canada,
   Kenya, Lebanon, Mauritius, Mexico, New Zealand, Oman, Peru,
   Singapore, South Africa, South Korea, and Thailand.

   The radio interface is based on Ultra Narrow Band (UNB)
   communications, which allow an increased transmission range by
   spending a limited amount of energy at the device.  Moreover, UNB
   allows a large number of devices to coexist in a given cell without
   significantly increasing the spectrum interference.

   Both uplink and downlink are supported, although the system is
   optimized for uplink communications.  Due to spectrum optimizations,
   different uplink and downlink frames and time synchronization methods
   are needed.

   The main radio characteristics of the UNB uplink transmission are:

   o  Channelization mask: 100 Hz / 600 Hz (depending on the region)

   o  Uplink baud rate: 100 baud / 600 baud (depending on the region)




<span class="grey">Farrell                       Informational                    [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   o  Modulation scheme: DBPSK

   o  Uplink transmission power: compliant with local regulation

   o  Link budget: 155 dB (or better)

   o  Central frequency accuracy: not relevant, provided there is no
      significant frequency drift within an uplink packet transmission

   For example, in Europe, the UNB uplink frequency band is limited to
   868.00 to 868.60 MHz, with a maximum output power of 25 mW and a duty
   cycle of 1%.

   The format of the uplink frame is the following:

   +--------+--------+--------+------------------+-------------+-----+
   |Preamble|  Frame | Dev ID |     Payload      |Msg Auth Code| FCS |
   |        |  Sync  |        |                  |             |     |
   +--------+--------+--------+------------------+-------------+-----+

                       Figure 5: Uplink Frame Format

   The uplink frame is composed of the following fields:

   o  Preamble: 19 bits

   o  Frame sync and header: 29 bits

   o  Device ID: 32 bits

   o  Payload: 0-96 bits

   o  Authentication: 16-40 bits

   o  Frame check sequence: 16 bits (Cyclic Redundancy Check (CRC))

   The main radio characteristics of the UNB downlink transmission are:

   o  Channelization mask: 1.5 kHz

   o  Downlink baud rate: 600 baud

   o  Modulation scheme: GFSK

   o  Downlink transmission power: 500 mW / 4W (depending on the region)

   o  Link budget: 153 dB (or better)




<span class="grey">Farrell                       Informational                    [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   o  Central frequency accuracy: the center frequency of downlink
      transmission is set by the network according to the corresponding
      uplink transmission.

   For example, in Europe, the UNB downlink frequency band is limited to
   869.40 to 869.65 MHz, with a maximum output power of 500 mW with 10%
   duty cycle.

   The format of the downlink frame is the following:

   +------------+-----+---------+------------------+-------------+-----+
   |  Preamble  |Frame|   ECC   |     Payload      |Msg Auth Code| FCS |
   |            |Sync |         |                  |             |     |
   +------------+-----+---------+------------------+-------------+-----+

                      Figure 6: Downlink Frame Format

   The downlink frame is composed of the following fields:

   o  Preamble: 91 bits

   o  Frame sync and header: 13 bits

   o  Error Correcting Code (ECC): 32 bits

   o  Payload: 0-64 bits

   o  Authentication: 16 bits

   o  Frame check sequence: 8 bits (CRC)

   The radio interface is optimized for uplink transmissions, which are
   asynchronous.  Downlink communications are achieved by devices
   querying the network for available data.

   A device willing to receive downlink messages opens a fixed window
   for reception after sending an uplink transmission.  The delay and
   duration of this window have fixed values.  The network transmits the
   downlink message for a given device during the reception window, and
   the network also selects the BS for transmitting the corresponding
   downlink message.

   Uplink and downlink transmissions are unbalanced due to the
   regulatory constraints on ISM bands.  Under the strictest
   regulations, the system can allow a maximum of 140 uplink messages






<span class="grey">Farrell                       Informational                    [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   and 4 downlink messages per device per day.  These restrictions can
   be slightly relaxed depending on system conditions and the specific
   regulatory domain of operation.

                +---+
                |DEV| *                    +------+
                +---+   *                  |  RA  |
                          *                +------+
                +---+       *                 |
                |DEV| * * *   *               |
                +---+       *   +----+        |
                              * | BS | \  +--------+
                +---+       *   +----+  \ |        |
        DA -----|DEV| * * *               |   SC   |----- NA
                +---+       *           / |        |
                              * +----+ /  +--------+
                +---+       *   | BS |/
                |DEV| * * *   * +----+
                +---+         *
                            *
                +---+     *
                |DEV| * *
                +---+

                   Figure 7: Sigfox Network Architecture

   Figure 7 depicts the different elements of the Sigfox network
   architecture.

   Sigfox has a "one-contract one-network" model allowing devices to
   connect in any country, without any need or notion of either roaming
   or handover.

   The architecture consists of a single cloud-based core network, which
   allows global connectivity with minimal impact on the end device and
   radio access network.  The core network elements are the Service
   Center (SC) and the Registration Authority (RA).  The SC is in charge
   of the data connectivity between the BS and the Internet, as well as
   the control and management of the BSs and End Points (EPs).  The RA
   is in charge of the EP network access authorization.

   The radio access network is comprised of several BSs connected
   directly to the SC.  Each BS performs complex L1/L2 functions,
   leaving some L2 and L3 functionalities to the SC.

   The Devices (DEVs) or EPs are the objects that communicate
   application data between local Device Applications (DAs) and Network
   Applications (NAs).



<span class="grey">Farrell                       Informational                    [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   Devices (or EPs) can be static or nomadic, as they associate with the
   SC and they do not attach to any specific BS.  Hence, they can
   communicate with the SC through one or multiple BSs.

   Due to constraints in the complexity of the Device, it is assumed
   that Devices host only one or very few device applications, which
   most of the time communicate each to a single network application at
   a time.

   The radio protocol authenticates and ensures the integrity of each
   message.  This is achieved by using a unique device ID and an
   AES-128-based message authentication code, ensuring that the message
   has been generated and sent by the device with the ID claimed in the
   message.  Application data can be encrypted at the application level
   or not, depending on the criticality of the use case, to provide a
   balance between cost and effort versus risk.  AES-128 in counter mode
   is used for encryption.  Cryptographic keys are independent for each
   device.  These keys are associated with the device ID and separate
   integrity and confidentiality keys are pre-provisioned.  A
   confidentiality key is only provisioned if confidentiality is to be
   used.  At the time of writing, the algorithms and keying details for
   this are not published.

<span class="h3"><a class="selflink" id="section-2.4" href="#section-2.4">2.4</a>.  Wi-SUN Alliance Field Area Network (FAN)</span>

   Text here is via personal communication from Bob Heile
   (bheile@ieee.org) and was authored by Bob and Sum Chin Sean.  Paul
   Duffy (paduffy@cisco.com) also provided additional comments/input on
   this section.

<span class="h4"><a class="selflink" id="section-2.4.1" href="#section-2.4.1">2.4.1</a>.  Provenance and Documents</span>

   The Wi-SUN Alliance &lt;<a href="https://www.wi-sun.org/">https://www.wi-sun.org/</a>&gt; is an industry alliance
   for smart city, smart grid, smart utility, and a broad set of general
   IoT applications.  The Wi-SUN Alliance Field Area Network (FAN)
   profile is open-standards based (primarily on IETF and IEEE 802
   standards) and was developed to address applications like smart
   municipality/city infrastructure monitoring and management, Electric
   Vehicle (EV) infrastructure, Advanced Metering Infrastructure (AMI),
   Distribution Automation (DA), Supervisory Control and Data
   Acquisition (SCADA) protection/management, distributed generation
   monitoring and management, and many more IoT applications.
   Additionally, the Alliance has created a certification program to
   promote global multi-vendor interoperability.

   The FAN profile is specified within ANSI/TIA as an extension of work
   previously done on Smart Utility Networks [<a href="#ref-ANSI-4957-000">ANSI-4957-000</a>].  Updates
   to those specifications intended to be published in 2017 will contain



<span class="grey">Farrell                       Informational                    [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   details of the FAN profile.  A current snapshot of the work to
   produce that profile is presented in [<a href="#ref-wisun-pressie1">wisun-pressie1</a>] and
   [<a href="#ref-wisun-pressie2">wisun-pressie2</a>].

<span class="h4"><a class="selflink" id="section-2.4.2" href="#section-2.4.2">2.4.2</a>.  Characteristics</span>

   The FAN profile is an IPv6 wireless mesh network with support for
   enterprise-level security.  The frequency-hopping wireless mesh
   topology aims to offer superior network robustness, reliability due
   to high redundancy, good scalability due to the flexible mesh
   configuration, and good resilience to interference.  Very low power
   modes are in development permitting long-term battery operation of
   network nodes.

   The following list contains some overall characteristics of Wi-SUN
   that are relevant to LPWAN applications.

   o  Coverage: The range of Wi-SUN FAN is typically 2 - 3 km in line of
      sight, matching the needs of neighborhood area networks, campus
      area networks, or corporate area networks.  The range can also be
      extended via multi-hop networking.

   o  High-bandwidth, low-link latency: Wi-SUN supports relatively high
      bandwidth, i.e., up to 300 kbit/s [<a href="#ref-FANOV" title="&quot;Wi-SUN Alliance Field Area Network (FAN) Overview&quot;">FANOV</a>], enables remote update
      and upgrade of devices so that they can handle new applications,
      extending their working life.  Wi-SUN supports LPWAN IoT
      applications that require on-demand control by providing low link
      latency (0.02 s) and bidirectional communication.

   o  Low-power consumption: FAN devices draw less than 2 uA when
      resting and only 8 mA when listening.  Such devices can maintain a
      long lifetime, even if they are frequently listening.  For
      instance, suppose the device transmits data for 10 ms once every
      10 s; theoretically, a battery of 1000 mAh can last more than 10
      years.

   o  Scalability: Tens of millions of Wi-SUN FAN devices have been
      deployed in urban, suburban, and rural environments, including
      deployments with more than 1 million devices.

   A FAN contains one or more networks.  Within a network, nodes assume
   one of three operational roles.  First, each network contains a
   Border Router providing WAN connectivity to the network.  The Border
   Router maintains source-routing tables for all nodes within its
   network, provides node authentication and key management services,
   and disseminates network-wide information such as broadcast
   schedules.  Second, Router nodes, which provide upward and downward
   packet forwarding (within a network).  A Router also provides



<span class="grey">Farrell                       Informational                    [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   services for relaying security and address management protocols.
   Finally, Leaf nodes provide minimum capabilities: discovering and
   joining a network, sending/receiving IPv6 packets, etc.  A low-power
   network may contain a mesh topology with Routers at the edges that
   construct a star topology with Leaf nodes.

   The FAN profile is based on various open standards developed by the
   IETF (including [<a href="./rfc768" title="&quot;User Datagram Protocol&quot;">RFC768</a>], [<a href="./rfc2460" title="&quot;Internet Protocol, Version 6 (IPv6) Specification&quot;">RFC2460</a>], [<a href="./rfc4443" title="&quot;Internet Control Message Protocol (ICMPv6) for the Internet Protocol Version 6 (IPv6) Specification&quot;">RFC4443</a>], and [<a href="./rfc6282" title="&quot;Compression Format for IPv6 Datagrams over IEEE 802.15.4-Based Networks&quot;">RFC6282</a>]).
   Related IEEE 802 standards include [<a href="#ref-IEEE.802.15.4">IEEE.802.15.4</a>] and
   [<a href="#ref-IEEE.802.15.9">IEEE.802.15.9</a>].  For Low-Power and Lossy Networks (LLNs), see ANSI/
   TIA [<a href="#ref-ANSI-4957-210">ANSI-4957-210</a>].

   The FAN profile specification provides an application-independent
   IPv6-based transport service.  There are two possible methods for
   establishing IPv6 packet routing: the Routing Protocol for Low-Power
   and Lossy Networks (RPL) at the Network layer is mandatory, and
   Multi-Hop Delivery Service (MHDS) is optional at the Data Link layer.
   Figure 8 provides an overview of the FAN network stack.

   The Transport service is based on UDP (defined in [<a href="./rfc768" title="&quot;User Datagram Protocol&quot;">RFC768</a>]) or TCP
   (defined in [<a href="./rfc793" title="&quot;Transmission Control Protocol&quot;">RFC793</a>].

   The Network service is provided by IPv6 as defined in [<a href="./rfc2460" title="&quot;Internet Protocol, Version 6 (IPv6) Specification&quot;">RFC2460</a>] with
   an IPv6 over Low-Power Wireless Personal Area Networks (6LoWPAN)
   adaptation as defined in [<a href="./rfc4944" title="&quot;Transmission of IPv6 Packets over IEEE 802.15.4 Networks&quot;">RFC4944</a>] and [<a href="./rfc6282" title="&quot;Compression Format for IPv6 Datagrams over IEEE 802.15.4-Based Networks&quot;">RFC6282</a>].  ICMPv6, as defined
   in [<a href="./rfc4443" title="&quot;Internet Control Message Protocol (ICMPv6) for the Internet Protocol Version 6 (IPv6) Specification&quot;">RFC4443</a>], is used for the control plane during information
   exchange.

   The Data Link service provides both control/management of the PHY and
   data transfer/management services to the Network layer.  These
   services are divided into MAC and Logical Link Control (LLC) sub-
   layers.  The LLC sub-layer provides a protocol dispatch service that
   supports 6LoWPAN and an optional MAC sub-layer mesh service.  The MAC
   sub-layer is constructed using data structures defined in
   [<a href="#ref-IEEE.802.15.4">IEEE.802.15.4</a>].  Multiple modes of frequency hopping are defined.
   The entire MAC payload is encapsulated in an [<a href="#ref-IEEE.802.15.9">IEEE.802.15.9</a>]
   Information Element to enable LLC protocol dispatch between upper-
   layer 6LoWPAN processing and MAC sub-layer mesh processing, etc.
   These areas will be expanded once [<a href="#ref-IEEE.802.15.12">IEEE.802.15.12</a>] is completed.

   The PHY service is derived from a subset of the SUN FSK specification
   in [<a href="#ref-IEEE.802.15.4">IEEE.802.15.4</a>].  The 2-FSK modulation schemes, with a channel-
   spacing range from 200 to 600 kHz, are defined to provide data rates
   from 50 to 300 kbit/s, with FEC as an optional feature.  Towards
   enabling ultra-low-power applications, the PHY layer design is also
   extendable to low-energy and critical infrastructure-monitoring
   networks.




<span class="grey">Farrell                       Informational                    [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   +----------------------+--------------------------------------------+
   | Layer                | Description                                |
   +----------------------+--------------------------------------------+
   | IPv6 protocol suite  | TCP/UDP                                    |
   |                      |                                            |
   |                      | 6LoWPAN Adaptation + Header Compression    |
   |                      |                                            |
   |                      | DHCPv6 for IP address management           |
   |                      |                                            |
   |                      | Routing using RPL                          |
   |                      |                                            |
   |                      | ICMPv6                                     |
   |                      |                                            |
   |                      | Unicast and Multicast forwarding           |
   +----------------------+--------------------------------------------+
   | MAC based on         | Frequency hopping                          |
   | [<a href="#ref-IEEE.802.15.4e">IEEE.802.15.4e</a>] +   |                                            |
   | IE extensions        | Discovery and Join                         |
   |                      |                                            |
   |                      | Protocol Dispatch ([<a href="#ref-IEEE.802.15.9">IEEE.802.15.9</a>])        |
   |                      |                                            |
   |                      | Several Frame Exchange patterns            |
   |                      |                                            |
   |                      | Optional Mesh Under routing                |
   |                      | ([<a href="#ref-ANSI-4957-210">ANSI-4957-210</a>])                          |
   +----------------------+--------------------------------------------+
   | PHY based on         | Various data rates and regions             |
   | [<a href="#ref-IEEE.802.15.4g">IEEE.802.15.4g</a>]     |                                            |
   +----------------------+--------------------------------------------+
   | Security             | [<a href="#ref-IEEE.802.1x">IEEE.802.1x</a>]/EAP-TLS/PKI Authentication   |
   |                      | TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8         |
   |                      | required for EAP-TLS                       |
   |                      |                                            |
   |                      | 802.11i Group Key Management               |
   |                      |                                            |
   |                      | Frame security is implemented as AES-CCM*  |
   |                      | as specified in [<a href="#ref-IEEE.802.15.4">IEEE.802.15.4</a>]            |
   |                      |                                            |
   |                      | Optional [<a href="#ref-ETSI-TS-102-887-2">ETSI-TS-102-887-2</a>] Node 2 Node   |
   |                      | Key Management                             |
   +----------------------+--------------------------------------------+

                      Figure 8: Wi-SUN Stack Overview








<span class="grey">Farrell                       Informational                    [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   The FAN security supports Data Link layer network access control,
   mutual authentication, and establishment of a secure pairwise link
   between a FAN node and its Border Router, which is implemented with
   an adaptation of [<a href="#ref-IEEE.802.1x">IEEE.802.1x</a>] and EAP-TLS as described in [<a href="./rfc5216" title="&quot;The EAP-TLS Authentication Protocol&quot;">RFC5216</a>]
   using secure device identity as described in [<a href="#ref-IEEE.802.1AR">IEEE.802.1AR</a>].
   Certificate formats are based upon [<a href="./rfc5280" title="&quot;Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile&quot;">RFC5280</a>].  A secure group link
   between a Border Router and a set of FAN nodes is established using
   an adaptation of the [<a href="#ref-IEEE.802.11">IEEE.802.11</a>] Four-Way Handshake.  A set of four
   group keys are maintained within the network, one of which is the
   current transmit key.  Secure node-to-node links are supported
   between one-hop FAN neighbors using an adaptation of
   [<a href="#ref-ETSI-TS-102-887-2">ETSI-TS-102-887-2</a>].  FAN nodes implement Frame Security as specified
   in [<a href="#ref-IEEE.802.15.4">IEEE.802.15.4</a>].

<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>.  Generic Terminology</span>

   LPWAN technologies, such as those discussed above, have similar
   architectures but different terminology.  We can identify different
   types of entities in a typical LPWAN network:

   o  End devices are the devices or the "things" (e.g., sensors,
      actuators, etc.); they are named differently in each technology
      (End Device, User Equipment, or EP).  There can be a high density
      of end devices per Radio Gateway.

   o  The Radio Gateway, which is the EP of the constrained link.  It is
      known as: Gateway, Evolved Node B or base station.

   o  The Network Gateway or Router is the interconnection node between
      the Radio Gateway and the Internet.  It is known as the Network
      Server, Serving GW, or Service Center.

   o  LPWAN-AAA server, which controls user authentication.  It is known
      as the Join-Server, Home Subscriber Server, or Registration
      Authority.  (We use the term LPWAN-AAA server because we're not
      assuming that this entity speaks RADIUS or Diameter as many/most
      AAA servers do; but, equally, we don't want to rule that out, as
      the functionality will be similar.)

   o  At last we have the Application Server, known also as Packet Data
      Node Gateway or Network Application.










<span class="grey">Farrell                       Informational                    [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


 +---------------------------------------------------------------------+
 | Function/ |           |           |            |        |           |
 |Technology |  LoRaWAN  |   NB-IoT  |   Sigfox   | Wi-SUN |    IETF   |
 +-----------+-----------+-----------+------------+--------+-----------+
 |Sensor,    |           |           |            |        |           |
 |Actuator,  |    End    |    User   |     End    |  Leaf  |   Device  |
 |device,    |  Device   | Equipment |    Point   |  Node  |   (DEV)   |
 |object     |           |           |            |        |           |
 +-----------+-----------+-----------+------------+--------+-----------+
 |Transceiver|           |  Evolved  |    Base    | Router |   Radio   |
 |Antenna    |  Gateway  |  Node B   |   Station  |  Node  |  Gateway  |
 +-----------+-----------+-----------+------------+--------+-----------+
 |Server     |  Network  |  PDN GW/  |   Service  | Border |  Network  |
 |           |  Server   |   SCEF*   |   Center   | Router |  Gateway  |
 |           |           |           |            |        |   (NGW)   |
 +-----------+-----------+-----------+------------+--------+-----------+
 |Security   |   Join    |    Home   |Registration|Authent.|  LPWAN-   |
 |Server     |  Server   | Subscriber| Authority  | Server |   AAA     |
 |           |           |   Server  |            |        |  Server   |
 +-----------+-----------+-----------+------------+--------+-----------+
 |Application|Application|Application|  Network   |Appli-  |Application|
 |           |   Server  |  Server   | Application| cation |   (App)   |
 +---------------------------------------------------------------------+

 * SCEF = Service Capability Exposure Function

                 Figure 9: LPWAN Architecture Terminology

                                                 +------+
 ()    ()   ()         |                         |LPWAN-|
   ()  () () ()       / \         +---------+    | AAA  |
() () () () () ()    /   \========|    /\   |====|Server|  +-----------+
 ()  ()   ()        |             | &lt;--|--&gt; |    +------+  |APPLICATION|
()  ()  ()  ()     / \============|    v    |==============|    (App)  |
  ()  ()  ()      /   \           +---------+              +-----------+
 DEV         Radio Gateways           NGW

                       Figure 10: LPWAN Architecture

   In addition to the names of entities, LPWANs are also subject to
   possibly regional frequency-band regulations.  Those may include
   restrictions on the duty cycle, for example, requiring that hosts
   only transmit for a certain percentage of each hour.








<span class="grey">Farrell                       Informational                    [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>.  Gap Analysis</span>

   This section considers some of the gaps between current LPWAN
   technologies and the goals of the LPWAN WG.  Many of the generic
   considerations described in [<a href="./rfc7452" title="&quot;Architectural Considerations in Smart Object Networking&quot;">RFC7452</a>] will also apply in LPWANs, as
   end devices can also be considered to be a subclass of (so-called)
   "smart objects".  In addition, LPWAN device implementers will also
   need to consider the issues relating to firmware updates described in
   [<a href="./rfc8240" title="&quot;Report from the Internet of Things Software Update (IoTSU) Workshop 2016&quot;">RFC8240</a>].

<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>.  Naive Application of IPv6</span>

   IPv6 [<a href="./rfc8200" title="&quot;Internet Protocol, Version 6 (IPv6) Specification&quot;">RFC8200</a>] has been designed to allocate addresses to all the
   nodes connected to the Internet.  Nevertheless, the header overhead
   of at least 40 bytes introduced by the protocol is incompatible with
   LPWAN constraints.  If IPv6 with no further optimization were used,
   several LPWAN frames could be needed just to carry the IP header.
   Another problem arises from IPv6 MTU requirements, which require the
   layer below to support at least 1280 byte packets [<a href="./rfc2460" title="&quot;Internet Protocol, Version 6 (IPv6) Specification&quot;">RFC2460</a>].

   IPv6 has a configuration protocol: Neighbor Discovery Protocol (NDP)
   [<a href="./rfc4861" title="&quot;Neighbor Discovery for IP version 6 (IPv6)&quot;">RFC4861</a>]).  For a node to learn network parameters, NDP generates
   regular traffic with a relatively large message size that does not
   fit LPWAN constraints.

   In some LPWAN technologies, L2 multicast is not supported.  In that
   case, if the network topology is a star, the solution and
   considerations from <a href="./rfc7668#section-3.2.5">Section&nbsp;3.2.5 of [RFC7668]</a> may be applied.

   Other key protocols (such as DHCPv6 [<a href="./rfc3315" title="&quot;Dynamic Host Configuration Protocol for IPv6 (DHCPv6)&quot;">RFC3315</a>], IPsec [<a href="./rfc4301" title="&quot;Security Architecture for the Internet Protocol&quot;">RFC4301</a>] and
   TLS [<a href="./rfc5246" title="&quot;The Transport Layer Security (TLS) Protocol Version 1.2&quot;">RFC5246</a>]) have similarly problematic properties in this context.
   Each protocol requires relatively frequent round-trips between the
   host and some other host on the network.  In the case of
   cryptographic protocols (such as IPsec and TLS), in addition to the
   round-trips required for secure session establishment, cryptographic
   operations can require padding and addition of authenticators that
   are problematic when considering LPWAN lower layers.  Note that mains
   powered Wi-SUN mesh router nodes will typically be more resource
   capable than the other LPWAN technologies discussed.  This can enable
   use of more "chatty" protocols for some aspects of Wi-SUN.

<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>.  6LoWPAN</span>

   Several technologies that exhibit significant constraints in various
   dimensions have exploited the 6LoWPAN suite of specifications
   ([<a href="./rfc4944" title="&quot;Transmission of IPv6 Packets over IEEE 802.15.4 Networks&quot;">RFC4944</a>], [<a href="./rfc6282" title="&quot;Compression Format for IPv6 Datagrams over IEEE 802.15.4-Based Networks&quot;">RFC6282</a>], and [<a href="./rfc6775" title="&quot;Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)&quot;">RFC6775</a>]) to support IPv6 [<a href="#ref-USES-6LO" title="&quot;IPv6 over Constrained Node Networks(6lo) Applicability &amp; Use cases&quot;">USES-6LO</a>].
   However, the constraints of LPWANs, often more extreme than those
   typical of technologies that have (re-)used 6LoWPAN, constitute a



<span class="grey">Farrell                       Informational                    [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   challenge for the 6LoWPAN suite in order to enable IPv6 over LPWAN.
   LPWANs are characterized by device constraints (in terms of
   processing capacity, memory, and energy availability), and
   especially, link constraints, such as:

   o  tiny L2 payload size (from ~10 to ~100 bytes),

   o  very low bit rate (from ~10 bit/s to ~100 kbit/s), and

   o  in some specific technologies, further message rate constraints
      (e.g., between ~0.1 message/minute and ~1 message/minute) due to
      regional regulations that limit the duty cycle.

<span class="h4"><a class="selflink" id="section-4.2.1" href="#section-4.2.1">4.2.1</a>.  Header Compression</span>

   6LoWPAN header compression reduces IPv6 (and UDP) header overhead by
   eliding header fields when they can be derived from the link layer
   and by assuming that some of the header fields will frequently carry
   expected values. 6LoWPAN provides both stateless and stateful header
   compression.  In the latter, all nodes of a 6LoWPAN are assumed to
   share compression context.  In the best case, the IPv6 header for
   link-local communication can be reduced to only 2 bytes.  For global
   communication, the IPv6 header may be compressed down to 3 bytes in
   the most extreme case.  However, in more practical situations, the
   smallest IPv6 header size may be 11 bytes (one address prefix
   compressed) or 19 bytes (both source and destination prefixes
   compressed).  These headers are large considering the link-layer
   payload size of LPWAN technologies, and in some cases, are even
   bigger than the LPWAN PDUs. 6LoWPAN was initially designed for
   [<a href="#ref-IEEE.802.15.4">IEEE.802.15.4</a>] networks with a frame size up to 127 bytes and a
   throughput of up to 250 kbit/s, which may or may not be duty cycled.

<span class="h4"><a class="selflink" id="section-4.2.2" href="#section-4.2.2">4.2.2</a>.  Address Autoconfiguration</span>

   Traditionally, Interface Identifiers (IIDs) have been derived from
   link-layer identifiers [<a href="./rfc4944" title="&quot;Transmission of IPv6 Packets over IEEE 802.15.4 Networks&quot;">RFC4944</a>].  This allows optimizations such as
   header compression.  Nevertheless, recent guidance has given advice
   on the fact that, due to privacy concerns, 6LoWPAN devices should not
   be configured to embed their link-layer addresses in the IID by
   default.  [<a href="./rfc8065" title="&quot;Privacy Considerations for IPv6 Adaptation- Layer Mechanisms&quot;">RFC8065</a>] provides guidance on better methods for
   generating IIDs.

<span class="h4"><a class="selflink" id="section-4.2.3" href="#section-4.2.3">4.2.3</a>.  Fragmentation</span>

   As stated above, IPv6 requires the layer below to support an MTU of
   1280 bytes [<a href="./rfc8200" title="&quot;Internet Protocol, Version 6 (IPv6) Specification&quot;">RFC8200</a>].  Therefore, given the low maximum payload size
   of LPWAN technologies, fragmentation is needed.




<span class="grey">Farrell                       Informational                    [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   If a layer of an LPWAN technology supports fragmentation, proper
   analysis has to be carried out to decide whether the fragmentation
   functionality provided by the lower layer or fragmentation at the
   adaptation layer should be used.  Otherwise, fragmentation
   functionality shall be used at the adaptation layer.

   6LoWPAN defined a fragmentation mechanism and a fragmentation header
   to support the transmission of IPv6 packets over IEEE.802.15.4
   networks [<a href="./rfc4944" title="&quot;Transmission of IPv6 Packets over IEEE 802.15.4 Networks&quot;">RFC4944</a>].  While the 6LoWPAN fragmentation header is
   appropriate for the 2003 version of [<a href="#ref-IEEE.802.15.4">IEEE.802.15.4</a>] (which has a
   frame payload size of 81-102 bytes), it is not suitable for several
   LPWAN technologies, many of which have a maximum payload size that is
   one order of magnitude below that of the 2003 version of
   [<a href="#ref-IEEE.802.15.4">IEEE.802.15.4</a>].  The overhead of the 6LoWPAN fragmentation header is
   high, considering the reduced payload size of LPWAN technologies, and
   the limited energy availability of the devices using such
   technologies.  Furthermore, its datagram offset field is expressed in
   increments of eight octets.  In some LPWAN technologies, the 6LoWPAN
   fragmentation header plus eight octets from the original datagram
   exceeds the available space in the layer two payload.  In addition,
   the MTU in the LPWAN networks could be variable, which implies a
   variable fragmentation solution.

<span class="h4"><a class="selflink" id="section-4.2.4" href="#section-4.2.4">4.2.4</a>.  Neighbor Discovery</span>

   6LoWPAN Neighbor Discovery [<a href="./rfc6775" title="&quot;Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)&quot;">RFC6775</a>] defines optimizations to IPv6 ND
   [<a href="./rfc4861" title="&quot;Neighbor Discovery for IP version 6 (IPv6)&quot;">RFC4861</a>], in order to adapt functionality of the latter for networks
   of devices using [<a href="#ref-IEEE.802.15.4">IEEE.802.15.4</a>] or similar technologies.  The
   optimizations comprise host-initiated interactions to allow for
   sleeping hosts, replacement of multicast-based address resolution for
   hosts by an address registration mechanism, multihop extensions for
   prefix distribution and duplicate address detection (note that these
   are not needed in a star topology network), and support for 6LoWPAN
   header compression.

   6LoWPAN ND may be used in not so severely constrained LPWAN networks.
   The relative overhead incurred will depend on the LPWAN technology
   used (and on its configuration, if appropriate).  In certain LPWAN
   setups (with a maximum payload size above ~60 bytes and duty-cycle-
   free or equivalent operation), an RS/RA/NS/NA exchange may be
   completed in a few seconds, without incurring packet fragmentation.

   In other LPWANs (with a maximum payload size of ~10 bytes and a
   message rate of ~0.1 message/minute), the same exchange may take
   hours or even days, leading to severe fragmentation and consuming a
   significant amount of the available network resources.  6LoWPAN ND
   behavior may be tuned through the use of appropriate values for the
   default Router Lifetime, the Valid Lifetime in the PIOs, and the



<span class="grey">Farrell                       Informational                    [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   Valid Lifetime in the 6LoWPAN Context Option (6CO), as well as the
   address Registration Lifetime.  However, for the latter LPWANs
   mentioned above, 6LoWPAN ND is not suitable.

<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>.  6lo</span>

   The 6lo WG has been reusing and adapting 6LoWPAN to enable IPv6
   support over link-layer technologies such as Bluetooth Low Energy
   (BTLE), ITU-T G.9959 [<a href="#ref-G9959" title="&quot;Short range narrow-band digital radiocommunication transceivers - PHY, MAC, SAR and LLC layer specifications&quot;">G9959</a>], Digital Enhanced Cordless
   Telecommunications (DECT) Ultra Low Energy (ULE), MS/TP-RS485, Near
   Field Communication (NFC) IEEE 802.11ah.  (See
   &lt;<a href="https://datatracker.ietf.org/wg/6lo/">https://datatracker.ietf.org/wg/6lo/</a>&gt; for details on the 6lo WG.)
   These technologies are similar in several aspects to [<a href="#ref-IEEE.802.15.4">IEEE.802.15.4</a>],
   which was the original 6LoWPAN target technology.

   6lo has mostly used the subset of 6LoWPAN techniques best suited for
   each lower-layer technology and has provided additional optimizations
   for technologies where the star topology is used, such as BTLE or
   DECT-ULE.

   The main constraint in these networks comes from the nature of the
   devices (constrained devices); whereas, in LPWANs, it is the network
   itself that imposes the most stringent constraints.

<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>.  6tisch</span>

   The IPv6 over the TSCH mode of IEEE 802.15.4e (6tisch) solution is
   dedicated to mesh networks that operate using [<a href="#ref-IEEE.802.15.4e">IEEE.802.15.4e</a>] MAC
   with a deterministic slotted channel.  Time-Slotted Channel Hopping
   (TSCH) can help to reduce collisions and to enable a better balance
   over the channels.  It improves the battery life by avoiding the idle
   listening time for the return channel.

   A key element of 6tisch is the use of synchronization to enable
   determinism.  TSCH and 6tisch may provide a standard scheduling
   function.  The LPWAN networks probably will not support
   synchronization like the one used in 6tisch.

<span class="h3"><a class="selflink" id="section-4.5" href="#section-4.5">4.5</a>.  RoHC</span>

   RoHC is a header compression mechanism [<a href="./rfc3095" title="&quot;RObust Header Compression (ROHC): Framework and four profiles: RTP, UDP, ESP, and uncompressed&quot;">RFC3095</a>] developed for
   multimedia flows in a point-to-point channel.  RoHC uses three levels
   of compression, each level having its own header format.  In the
   first level, RoHC sends 52 bytes of header; in the second level, the
   header could be from 34 to 15 bytes; and in the third level, header
   size could be from 7 to 2 bytes.  The level of compression is managed
   by a Sequence Number (SN), which varies in size from 2 bytes to 4
   bits in the minimal compression.  SN compression is done with an



<span class="grey">Farrell                       Informational                    [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   algorithm called Window-Least Significant Bits (W-LSB).  This window
   has a 4-bit size representing 15 packets, so every 15 packets, RoHC
   needs to slide the window in order to receive the correct SN, and
   sliding the window implies a reduction of the level of compression.
   When packets are lost or errored, the decompressor loses context and
   drops packets until a bigger header is sent with more complete
   information.  To estimate the performance of RoHC, an average header
   size is used.  This average depends on the transmission conditions,
   but most of the time is between 3 and 4 bytes.

   RoHC has not been adapted specifically to the constrained hosts and
   networks of LPWANs: it does not take into account energy limitations
   nor the transmission rate.  Additionally, RoHC context is
   synchronized during transmission, which does not allow better
   compression.

<span class="h3"><a class="selflink" id="section-4.6" href="#section-4.6">4.6</a>.  ROLL</span>

   Most technologies considered by the LPWAN WG are based on a star
   topology, which eliminates the need for routing at that layer.
   Future work may address additional use cases that may require
   adaptation of existing routing protocols or the definition of new
   ones.  As of the time of writing, work similar to that done in the
   Routing Over Low-Power and Lossy Network (ROLL) WG and other routing
   protocols are out of scope of the LPWAN WG.

<span class="h3"><a class="selflink" id="section-4.7" href="#section-4.7">4.7</a>.  CoAP</span>

   The Constrained Application Protocol (CoAP) [<a href="./rfc7252" title="&quot;The Constrained Application Protocol (CoAP)&quot;">RFC7252</a>] provides a
   RESTful framework for applications intended to run on constrained IP
   networks.  It may be necessary to adapt CoAP or related protocols to
   take into account the extreme duty cycles and the potentially
   extremely limited throughput of LPWANs.

   For example, some of the timers in CoAP may need to be redefined.
   Taking into account CoAP acknowledgments may allow the reduction of
   L2 acknowledgments.  On the other hand, the current work in progress
   in the CoRE WG where the Constrained Management Interface (COMI) /
   Constrained Objects Language (CoOL) network management interface
   which, uses Structured Identifiers (SIDs) to reduce payload size over
   CoAP may prove to be a good solution for the LPWAN technologies.  The
   overhead is reduced by adding a dictionary that matches a URI to a
   small identifier and a compact mapping of the YANG data model into
   the Concise Binary Object Representation (CBOR).







<span class="grey">Farrell                       Informational                    [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


<span class="h3"><a class="selflink" id="section-4.8" href="#section-4.8">4.8</a>.  Mobility</span>

   LPWAN nodes can be mobile.  However, LPWAN mobility is different from
   the one specified for Mobile IP.  LPWAN implies sporadic traffic and
   will rarely be used for high-frequency, real-time communications.
   The applications do not generate a flow; they need to save energy
   and, most of the time, the node will be down.

   In addition, LPWAN mobility may mostly apply to groups of devices
   that represent a network; in which case, mobility is more a concern
   for the Gateway than the devices.  Network Mobility (NEMO) [<a href="./rfc3963" title="&quot;Network Mobility (NEMO) Basic Support Protocol&quot;">RFC3963</a>]
   or other mobile Gateway solutions (such as a Gateway with an LTE
   uplink) may be used in the case where some end devices belonging to
   the same network Gateway move from one point to another such that
   they are not aware of being mobile.

<span class="h3"><a class="selflink" id="section-4.9" href="#section-4.9">4.9</a>.  DNS and LPWAN</span>

   The Domain Name System (DNS) [<a href="./rfc1035" title="&quot;Domain names - implementation and specification&quot;">RFC1035</a>], enables applications to name
   things with a globally resolvable name.  Many protocols use the DNS
   to identify hosts, for example, applications using CoAP.

   The DNS query/answer protocol as a precursor to other communication
   within the Time-To-Live (TTL) of a DNS answer is clearly problematic
   in an LPWAN, say where only one round-trip per hour can be used, and
   with a TTL that is less than 3600 seconds.  It is currently unclear
   whether and how DNS-like functionality might be provided in LPWANs.

<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>.  Security Considerations</span>

   Most LPWAN technologies integrate some authentication or encryption
   mechanisms that were defined outside the IETF.  The LPWAN WG may need
   to do work to integrate these mechanisms to unify management.  A
   standardized Authentication, Authorization, and Accounting (AAA)
   infrastructure [<a href="./rfc2904" title="&quot;AAA Authorization Framework&quot;">RFC2904</a>] may offer a scalable solution for some of
   the security and management issues for LPWANs.  AAA offers
   centralized management that may be of use in LPWANs, for example
   [<a href="#ref-LoRaWAN-AUTH">LoRaWAN-AUTH</a>] and [<a href="#ref-LoRaWAN-RADIUS">LoRaWAN-RADIUS</a>] suggest possible security
   processes for a LoRaWAN network.  Similar mechanisms may be useful to
   explore for other LPWAN technologies.

   Some applications using LPWANs may raise few or no privacy
   considerations.  For example, temperature sensors in a large office
   building may not raise privacy issues.  However, the same sensors, if
   deployed in a home environment, and especially if triggered due to
   human presence, can raise significant privacy issues: if an end
   device emits a (encrypted) packet every time someone enters a room in
   a home, then that traffic is privacy sensitive.  And the more that



<span class="grey">Farrell                       Informational                    [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   the existence of that traffic is visible to network entities, the
   more privacy sensitivities arise.  At this point, it is not clear
   whether there are workable mitigations for problems like this.  In a
   more typical network, one would consider defining padding mechanisms
   and allowing for cover traffic.  In some LPWANs, those mechanisms may
   not be feasible.  Nonetheless, the privacy challenges do exist and
   can be real; therefore, some solutions will be needed.  Note that
   many aspects of solutions in this space may not be visible in IETF
   specifications but can be, e.g., implementation or deployment
   specific.

   Another challenge for LPWANs will be how to handle key management and
   associated protocols.  In a more traditional network (e.g., the Web),
   servers can "staple" Online Certificate Status Protocol (OCSP)
   responses in order to allow browsers to check revocation status for
   presented certificates [<a href="./rfc6961" title="&quot;The Transport Layer Security (TLS) Multiple Certificate Status Request Extension&quot;">RFC6961</a>].  While the stapling approach is
   likely something that would help in an LPWAN, as it avoids an RTT,
   certificates and OCSP responses are bulky items and will prove
   challenging to handle in LPWANs with bounded bandwidth.

<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>.  IANA Considerations</span>

   This document has no IANA actions.

<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>.  Informative References</span>

   [<a id="ref-ANSI-4957-000">ANSI-4957-000</a>]
              ANSI/TIA, "Architecture Overview for the Smart Utility
              Network", ANSI/TIA-4957.0000 , May 2013.

   [<a id="ref-ANSI-4957-210">ANSI-4957-210</a>]
              ANSI/TIA, "Multi-Hop Delivery Specification of a Data Link
              Sub-Layer", ANSI/TIA-4957.210 , May 2013.

   [<a id="ref-arib_ref">arib_ref</a>] ARIB, "920MHz-Band Telemeter, Telecontrol and Data
              Transmission Radio Equipment", ARIB STD-T108 Version 1.0,
              February 2012.

   [<a id="ref-ETSI-TS-102-887-2">ETSI-TS-102-887-2</a>]
              ETSI, "Electromagnetic compatibility and Radio spectrum
              Matters (ERM); Short Range Devices; Smart Metering
              Wireless Access Protocol; Part 2: Data Link Layer (MAC
              Sub-layer)", ETSI TS 102 887-2, Version V1.1.1, September
              2013.







<span class="grey">Farrell                       Informational                    [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   [<a id="ref-etsi_ref1">etsi_ref1</a>]
              ETSI, "Short Range Devices (SRD) operating in the
              frequency range 25 MHz to 1 000 MHz; Part 1: Technical
              characteristics and methods of measurement", Draft ETSI
              EN 300-220-1, Version V3.1.0, May 2016.

   [<a id="ref-etsi_ref2">etsi_ref2</a>]
              ETSI, "Short Range Devices (SRD) operating in the
              frequency range 25 MHz to 1 000 MHz; Part 2: Harmonised
              Standard covering the essential requirements of article
              3.2 of Directive 2014/53/EU for non specific radio
              equipment", Final draft ETSI EN 300-220-2 P300-220-2,
              Version V3.1.1, November 2016.

   [<a id="ref-etsi_unb">etsi_unb</a>] ETSI ERM, "System Reference document (SRdoc); Short Range
              Devices (SRD); Technical characteristics for Ultra Narrow
              Band (UNB) SRDs operating in the UHF spectrum below 1
              GHz", ETSI TR 103 435, Version V1.1.1, February 2017.

   [<a id="ref-EUI64">EUI64</a>]    IEEE, "Guidelines for 64-bit Global Identifier
              (EUI),Organizationally Unique Identifier (OUI), and
              Company ID (CID)", August 2017,
              &lt;<a href="http://standards.ieee.org/develop/regauth/tut/eui.pdf">http://standards.ieee.org/develop/regauth/tut/eui.pdf</a>&gt;.

   [<a id="ref-FANOV">FANOV</a>]    IETF, "Wi-SUN Alliance Field Area Network (FAN) Overview",
              IETF 97, November 2016,
              &lt;<a href="https://www.ietf.org/proceedings/97/slides/slides-97-lpwan-35-wi-sun-presentation-00.pdf">https://www.ietf.org/proceedings/97/slides/</a>
              <a href="https://www.ietf.org/proceedings/97/slides/slides-97-lpwan-35-wi-sun-presentation-00.pdf">slides-97-lpwan-35-wi-sun-presentation-00.pdf</a>&gt;.

   [<a id="ref-fcc_ref">fcc_ref</a>]  "Telecommunication Radio Frequency Devices - Operation
              within the bands 902-928 MHz, 2400-2483.5 MHz, and
              5725-5850 MHz.", FCC CFR 47 15.247, June 2016.

   [<a id="ref-G9959">G9959</a>]    ITU-T, "Short range narrow-band digital radiocommunication
              transceivers - PHY, MAC, SAR and LLC layer
              specifications", ITU-T Recommendation G.9959, January
              2015, &lt;<a href="http://www.itu.int/rec/T-REC-G.9959">http://www.itu.int/rec/T-REC-G.9959</a>&gt;.

   [<a id="ref-IEEE.802.11">IEEE.802.11</a>]
              IEEE, "IEEE Standard for Information technology--
              Telecommunications and information exchange between
              systems Local and metropolitan area networks--Specific
              requirements Part 11: Wireless LAN Medium Access Control
              (MAC) and Physical Layer (PHY) Specifications",
              IEEE 802.11.






<span class="grey">Farrell                       Informational                    [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   [<a id="ref-IEEE.802.15.12">IEEE.802.15.12</a>]
              IEEE, "Upper Layer Interface (ULI) for IEEE 802.15.4 Low-
              Rate Wireless Networks", IEEE 802.15.12.

   [<a id="ref-IEEE.802.15.4">IEEE.802.15.4</a>]
              IEEE, "IEEE Standard for Low-Rate Wireless Networks",
              IEEE 802.15.4, &lt;<a href="https://standards.ieee.org/findstds/standard/802.15.4-2015.html">https://standards.ieee.org/findstds/</a>
              <a href="https://standards.ieee.org/findstds/standard/802.15.4-2015.html">standard/802.15.4-2015.html</a>&gt;.

   [<a id="ref-IEEE.802.15.4e">IEEE.802.15.4e</a>]
              IEEE, "IEEE Standard for Local and metropolitan area
              networks--Part 15.4: Low-Rate Wireless Personal Area
              Networks (LR-WPANs) Amendment 1: MAC sublayer",
              IEEE 802.15.4e.

   [<a id="ref-IEEE.802.15.4g">IEEE.802.15.4g</a>]
              IEEE, "IEEE Standard for Local and metropolitan area
              networks--Part 15.4: Low-Rate Wireless Personal Area
              Networks (LR-WPANs) Amendment 3: Physical Layer (PHY)
              Specifications for Low-Data-Rate, Wireless, Smart Metering
              Utility Networks", IEEE 802.15.4g.

   [<a id="ref-IEEE.802.15.9">IEEE.802.15.9</a>]
              IEEE, "IEEE Recommended Practice for Transport of Key
              Management Protocol (KMP) Datagrams", IEEE Standard
              802.15.9, 2016, &lt;<a href="https://standards.ieee.org/findstds/standard/802.15.9-2016.html">https://standards.ieee.org/findstds/</a>
              <a href="https://standards.ieee.org/findstds/standard/802.15.9-2016.html">standard/802.15.9-2016.html</a>&gt;.

   [<a id="ref-IEEE.802.1AR">IEEE.802.1AR</a>]
              ANSI/IEEE, "IEEE Standard for Local and metropolitan area
              networks - Secure Device Identity", IEEE 802.1AR.

   [<a id="ref-IEEE.802.1x">IEEE.802.1x</a>]
              IEEE, "Port Based Network Access Control", IEEE 802.1x.

   [<a id="ref-LoRaSpec">LoRaSpec</a>] LoRa Alliance, "LoRaWAN Specification Version V1.0.2",
              July 2016, &lt;<a href="https://lora-alliance.org/sites/default/files/2018-05/lorawan1_0_2-20161012_1398_1.pdf">https://lora-alliance.org/sites/default/</a>
              <a href="https://lora-alliance.org/sites/default/files/2018-05/lorawan1_0_2-20161012_1398_1.pdf">files/2018-05/lorawan1_0_2-20161012_1398_1.pdf</a>&gt;.

   [<a id="ref-LoRaWAN">LoRaWAN</a>]  Farrell, S. and A. Yegin, <a style="text-decoration: none" href='https://www.google.com/search?sitesearch=datatracker.ietf.org%2Fdoc%2Fhtml%2F&amp;q=inurl:draft-+%22LoRaWAN+Overview%22'>"LoRaWAN Overview"</a>, Work in
              Progress, <a href="./draft-farrell-lpwan-lora-overview-01">draft-farrell-lpwan-lora-overview-01</a>, October
              2016.

   [<a id="ref-LoRaWAN-AUTH">LoRaWAN-AUTH</a>]
              Garcia, D., Marin, R., Kandasamy, A., and A. Pelov,
              "LoRaWAN Authentication in Diameter", Work in Progress,
              <a href="./draft-garcia-dime-diameter-lorawan-00">draft-garcia-dime-diameter-lorawan-00</a>, May 2016.




<span class="grey">Farrell                       Informational                    [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   [<a id="ref-LoRaWAN-RADIUS">LoRaWAN-RADIUS</a>]
              Garcia, D., Lopez, R., Kandasamy, A., and A. Pelov,
              "LoRaWAN Authentication in RADIUS", Work in Progress,
              <a href="./draft-garcia-radext-radius-lorawan-03">draft-garcia-radext-radius-lorawan-03</a>, May 2017.

   [<a id="ref-LPWAN-GAP">LPWAN-GAP</a>]
              Minaburo, A., Ed., Gomez, C., Ed., Toutain, L., Paradells,
              J., and J. Crowcroft, "LPWAN Survey and GAP Analysis",
              Work in Progress, <a href="./draft-minaburo-lpwan-gap-analysis-02">draft-minaburo-lpwan-gap-analysis-02</a>,
              October 2016.

   [<a id="ref-NB-IoT">NB-IoT</a>]   Ratilainen, A., <a style="text-decoration: none" href='https://www.google.com/search?sitesearch=datatracker.ietf.org%2Fdoc%2Fhtml%2F&amp;q=inurl:draft-+%22NB-IoT+characteristics%22'>"NB-IoT characteristics"</a>, Work in
              Progress, <a href="./draft-ratilainen-lpwan-nb-iot-00">draft-ratilainen-lpwan-nb-iot-00</a>, July 2016.

   [<a id="ref-nbiot-ov">nbiot-ov</a>] IEEE, "NB-IoT Technology Overview and Experience from
              Cloud-RAN Implementation", Volume 24, Issue 3 Pages 26-32,
              DOI 10.1109/MWC.2017.1600418, June 2017.

   [<a id="ref-RFC768">RFC768</a>]   Postel, J., "User Datagram Protocol", STD 6, <a href="./rfc768">RFC 768</a>,
              DOI 10.17487/RFC0768, August 1980,
              &lt;<a href="https://www.rfc-editor.org/info/rfc768">https://www.rfc-editor.org/info/rfc768</a>&gt;.

   [<a id="ref-RFC793">RFC793</a>]   Postel, J., "Transmission Control Protocol", STD 7,
              <a href="./rfc793">RFC 793</a>, DOI 10.17487/RFC0793, September 1981,
              &lt;<a href="https://www.rfc-editor.org/info/rfc793">https://www.rfc-editor.org/info/rfc793</a>&gt;.

   [<a id="ref-RFC1035">RFC1035</a>]  Mockapetris, P., "Domain names - implementation and
              specification", STD 13, <a href="./rfc1035">RFC 1035</a>, DOI 10.17487/RFC1035,
              November 1987, &lt;<a href="https://www.rfc-editor.org/info/rfc1035">https://www.rfc-editor.org/info/rfc1035</a>&gt;.

   [<a id="ref-RFC2460">RFC2460</a>]  Deering, S. and R. Hinden, "Internet Protocol, Version 6
              (IPv6) Specification", <a href="./rfc2460">RFC 2460</a>, DOI 10.17487/RFC2460,
              December 1998, &lt;<a href="https://www.rfc-editor.org/info/rfc2460">https://www.rfc-editor.org/info/rfc2460</a>&gt;.

   [<a id="ref-RFC2904">RFC2904</a>]  Vollbrecht, J., Calhoun, P., Farrell, S., Gommans, L.,
              Gross, G., de Bruijn, B., de Laat, C., Holdrege, M., and
              D. Spence, "AAA Authorization Framework", <a href="./rfc2904">RFC 2904</a>,
              DOI 10.17487/RFC2904, August 2000,
              &lt;<a href="https://www.rfc-editor.org/info/rfc2904">https://www.rfc-editor.org/info/rfc2904</a>&gt;.

   [<a id="ref-RFC3095">RFC3095</a>]  Bormann, C., Burmeister, C., Degermark, M., Fukushima, H.,
              Hannu, H., Jonsson, L-E., Hakenberg, R., Koren, T., Le,
              K., Liu, Z., Martensson, A., Miyazaki, A., Svanbro, K.,
              Wiebke, T., Yoshimura, T., and H. Zheng, "RObust Header
              Compression (ROHC): Framework and four profiles: RTP, UDP,
              ESP, and uncompressed", <a href="./rfc3095">RFC 3095</a>, DOI 10.17487/RFC3095,
              July 2001, &lt;<a href="https://www.rfc-editor.org/info/rfc3095">https://www.rfc-editor.org/info/rfc3095</a>&gt;.




<span class="grey">Farrell                       Informational                    [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   [<a id="ref-RFC3315">RFC3315</a>]  Droms, R., Ed., Bound, J., Volz, B., Lemon, T., Perkins,
              C., and M. Carney, "Dynamic Host Configuration Protocol
              for IPv6 (DHCPv6)", <a href="./rfc3315">RFC 3315</a>, DOI 10.17487/RFC3315, July
              2003, &lt;<a href="https://www.rfc-editor.org/info/rfc3315">https://www.rfc-editor.org/info/rfc3315</a>&gt;.

   [<a id="ref-RFC3963">RFC3963</a>]  Devarapalli, V., Wakikawa, R., Petrescu, A., and P.
              Thubert, "Network Mobility (NEMO) Basic Support Protocol",
              <a href="./rfc3963">RFC 3963</a>, DOI 10.17487/RFC3963, January 2005,
              &lt;<a href="https://www.rfc-editor.org/info/rfc3963">https://www.rfc-editor.org/info/rfc3963</a>&gt;.

   [<a id="ref-RFC4301">RFC4301</a>]  Kent, S. and K. Seo, "Security Architecture for the
              Internet Protocol", <a href="./rfc4301">RFC 4301</a>, DOI 10.17487/RFC4301,
              December 2005, &lt;<a href="https://www.rfc-editor.org/info/rfc4301">https://www.rfc-editor.org/info/rfc4301</a>&gt;.

   [<a id="ref-RFC4443">RFC4443</a>]  Conta, A., Deering, S., and M. Gupta, Ed., "Internet
              Control Message Protocol (ICMPv6) for the Internet
              Protocol Version 6 (IPv6) Specification", STD 89,
              <a href="./rfc4443">RFC 4443</a>, DOI 10.17487/RFC4443, March 2006,
              &lt;<a href="https://www.rfc-editor.org/info/rfc4443">https://www.rfc-editor.org/info/rfc4443</a>&gt;.

   [<a id="ref-RFC4861">RFC4861</a>]  Narten, T., Nordmark, E., Simpson, W., and H. Soliman,
              "Neighbor Discovery for IP version 6 (IPv6)", <a href="./rfc4861">RFC 4861</a>,
              DOI 10.17487/RFC4861, September 2007,
              &lt;<a href="https://www.rfc-editor.org/info/rfc4861">https://www.rfc-editor.org/info/rfc4861</a>&gt;.

   [<a id="ref-RFC4944">RFC4944</a>]  Montenegro, G., Kushalnagar, N., Hui, J., and D. Culler,
              "Transmission of IPv6 Packets over IEEE 802.15.4
              Networks", <a href="./rfc4944">RFC 4944</a>, DOI 10.17487/RFC4944, September 2007,
              &lt;<a href="https://www.rfc-editor.org/info/rfc4944">https://www.rfc-editor.org/info/rfc4944</a>&gt;.

   [<a id="ref-RFC5216">RFC5216</a>]  Simon, D., Aboba, B., and R. Hurst, "The EAP-TLS
              Authentication Protocol", <a href="./rfc5216">RFC 5216</a>, DOI 10.17487/RFC5216,
              March 2008, &lt;<a href="https://www.rfc-editor.org/info/rfc5216">https://www.rfc-editor.org/info/rfc5216</a>&gt;.

   [<a id="ref-RFC5246">RFC5246</a>]  Dierks, T. and E. Rescorla, "The Transport Layer Security
              (TLS) Protocol Version 1.2", <a href="./rfc5246">RFC 5246</a>,
              DOI 10.17487/RFC5246, August 2008,
              &lt;<a href="https://www.rfc-editor.org/info/rfc5246">https://www.rfc-editor.org/info/rfc5246</a>&gt;.

   [<a id="ref-RFC5280">RFC5280</a>]  Cooper, D., Santesson, S., Farrell, S., Boeyen, S.,
              Housley, R., and W. Polk, "Internet X.509 Public Key
              Infrastructure Certificate and Certificate Revocation List
              (CRL) Profile", <a href="./rfc5280">RFC 5280</a>, DOI 10.17487/RFC5280, May 2008,
              &lt;<a href="https://www.rfc-editor.org/info/rfc5280">https://www.rfc-editor.org/info/rfc5280</a>&gt;.







<span class="grey">Farrell                       Informational                    [Page 36]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-37" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   [<a id="ref-RFC6282">RFC6282</a>]  Hui, J., Ed. and P. Thubert, "Compression Format for IPv6
              Datagrams over IEEE 802.15.4-Based Networks", <a href="./rfc6282">RFC 6282</a>,
              DOI 10.17487/RFC6282, September 2011,
              &lt;<a href="https://www.rfc-editor.org/info/rfc6282">https://www.rfc-editor.org/info/rfc6282</a>&gt;.

   [<a id="ref-RFC6775">RFC6775</a>]  Shelby, Z., Ed., Chakrabarti, S., Nordmark, E., and C.
              Bormann, "Neighbor Discovery Optimization for IPv6 over
              Low-Power Wireless Personal Area Networks (6LoWPANs)",
              <a href="./rfc6775">RFC 6775</a>, DOI 10.17487/RFC6775, November 2012,
              &lt;<a href="https://www.rfc-editor.org/info/rfc6775">https://www.rfc-editor.org/info/rfc6775</a>&gt;.

   [<a id="ref-RFC6961">RFC6961</a>]  Pettersen, Y., "The Transport Layer Security (TLS)
              Multiple Certificate Status Request Extension", <a href="./rfc6961">RFC 6961</a>,
              DOI 10.17487/RFC6961, June 2013,
              &lt;<a href="https://www.rfc-editor.org/info/rfc6961">https://www.rfc-editor.org/info/rfc6961</a>&gt;.

   [<a id="ref-RFC7252">RFC7252</a>]  Shelby, Z., Hartke, K., and C. Bormann, "The Constrained
              Application Protocol (CoAP)", <a href="./rfc7252">RFC 7252</a>,
              DOI 10.17487/RFC7252, June 2014,
              &lt;<a href="https://www.rfc-editor.org/info/rfc7252">https://www.rfc-editor.org/info/rfc7252</a>&gt;.

   [<a id="ref-RFC7452">RFC7452</a>]  Tschofenig, H., Arkko, J., Thaler, D., and D. McPherson,
              "Architectural Considerations in Smart Object Networking",
              <a href="./rfc7452">RFC 7452</a>, DOI 10.17487/RFC7452, March 2015,
              &lt;<a href="https://www.rfc-editor.org/info/rfc7452">https://www.rfc-editor.org/info/rfc7452</a>&gt;.

   [<a id="ref-RFC7668">RFC7668</a>]  Nieminen, J., Savolainen, T., Isomaki, M., Patil, B.,
              Shelby, Z., and C. Gomez, "IPv6 over BLUETOOTH(R) Low
              Energy", <a href="./rfc7668">RFC 7668</a>, DOI 10.17487/RFC7668, October 2015,
              &lt;<a href="https://www.rfc-editor.org/info/rfc7668">https://www.rfc-editor.org/info/rfc7668</a>&gt;.

   [<a id="ref-RFC8065">RFC8065</a>]  Thaler, D., "Privacy Considerations for IPv6 Adaptation-
              Layer Mechanisms", <a href="./rfc8065">RFC 8065</a>, DOI 10.17487/RFC8065,
              February 2017, &lt;<a href="https://www.rfc-editor.org/info/rfc8065">https://www.rfc-editor.org/info/rfc8065</a>&gt;.

   [<a id="ref-RFC8200">RFC8200</a>]  Deering, S. and R. Hinden, "Internet Protocol, Version 6
              (IPv6) Specification", STD 86, <a href="./rfc8200">RFC 8200</a>,
              DOI 10.17487/RFC8200, July 2017,
              &lt;<a href="https://www.rfc-editor.org/info/rfc8200">https://www.rfc-editor.org/info/rfc8200</a>&gt;.

   [<a id="ref-RFC8240">RFC8240</a>]  Tschofenig, H. and S. Farrell, "Report from the Internet
              of Things Software Update (IoTSU) Workshop 2016",
              <a href="./rfc8240">RFC 8240</a>, DOI 10.17487/RFC8240, September 2017,
              &lt;<a href="https://www.rfc-editor.org/info/rfc8240">https://www.rfc-editor.org/info/rfc8240</a>&gt;.







<span class="grey">Farrell                       Informational                    [Page 37]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-38" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   [<a id="ref-Sigfox">Sigfox</a>]   Zuniga, J. and B. PONSARD, <a style="text-decoration: none" href='https://www.google.com/search?sitesearch=datatracker.ietf.org%2Fdoc%2Fhtml%2F&amp;q=inurl:draft-+%22Sigfox+System+Description%22'>"Sigfox System Description"</a>,
              Work in Progress,
              <a href="./draft-zuniga-lpwan-sigfox-system-description-04">draft-zuniga-lpwan-sigfox-system-description-04</a>, December
              2017.

   [<a id="ref-TGPP23720">TGPP23720</a>]
              3GPP, "Study on architecture enhancements for Cellular
              Internet of Things", 3GPP TS 23.720 13.0.0, 2016.

   [<a id="ref-TGPP33203">TGPP33203</a>]
              3GPP, "3G security; Access security for IP-based
              services", 3GPP TS 23.203 13.1.0, 2016.

   [<a id="ref-TGPP36201">TGPP36201</a>]
              3GPP, "Evolved Universal Terrestrial Radio Access
              (E-UTRA); LTE physical layer; General description", 3GPP
              TS 36.201 13.2.0, 2016.

   [<a id="ref-TGPP36300">TGPP36300</a>]
              3GPP, "Evolved Universal Terrestrial Radio Access (E-UTRA)
              and Evolved Universal Terrestrial Radio Access Network
              (E-UTRAN); Overall description; Stage 2", 3GPP TS 36.300
              13.4.0, 2016,
              &lt;<a href="http://www.3gpp.org/ftp/Specs/2016-09/Rel-14/36_series/">http://www.3gpp.org/ftp/Specs/2016-09/Rel-14/36_series/</a>&gt;.

   [<a id="ref-TGPP36321">TGPP36321</a>]
              3GPP, "Evolved Universal Terrestrial Radio Access
              (E-UTRA); Medium Access Control (MAC) protocol
              specification", 3GPP TS 36.321 13.2.0, 2016.

   [<a id="ref-TGPP36322">TGPP36322</a>]
              3GPP, "Evolved Universal Terrestrial Radio Access
              (E-UTRA); Radio Link Control (RLC) protocol
              specification", 3GPP TS 36.322 13.2.0, 2016.

   [<a id="ref-TGPP36323">TGPP36323</a>]
              3GPP, "Evolved Universal Terrestrial Radio Access
              (E-UTRA); Packet Data Convergence Protocol (PDCP)
              specification (Not yet available)", 3GPP TS 36.323 13.2.0,
              2016.

   [<a id="ref-TGPP36331">TGPP36331</a>]
              3GPP, "Evolved Universal Terrestrial Radio Access
              (E-UTRA); Radio Resource Control (RRC); Protocol
              specification", 3GPP TS 36.331 13.2.0, 2016.






<span class="grey">Farrell                       Informational                    [Page 38]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-39" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


   [<a id="ref-USES-6LO">USES-6LO</a>] Hong, Y., Gomez, C., Choi, Y-H., and D-Y. Ko, "IPv6 over
              Constrained Node Networks(6lo) Applicability &amp; Use cases",
              Work in Progress, <a href="./draft-hong-6lo-use-cases-03">draft-hong-6lo-use-cases-03</a>, October
              2016.

   [<a id="ref-wisun-pressie1">wisun-pressie1</a>]
              Beecher, P., "Wi-SUN Alliance", March 2017,
              &lt;<a href="http://indiasmartgrid.org/event2017/10-03-2017/4.%20Roundtable%20on%20Communication%20and%20Cyber%20Security/1.%20Phil%20Beecher.pdf">http://indiasmartgrid.org/event2017/10-03-2017/4.%20Round</a>
              <a href="http://indiasmartgrid.org/event2017/10-03-2017/4.%20Roundtable%20on%20Communication%20and%20Cyber%20Security/1.%20Phil%20Beecher.pdf">table%20on%20Communication%20and%20Cyber%20Security/1.%20P</a>
              <a href="http://indiasmartgrid.org/event2017/10-03-2017/4.%20Roundtable%20on%20Communication%20and%20Cyber%20Security/1.%20Phil%20Beecher.pdf">hil%20Beecher.pdf</a>&gt;.

   [<a id="ref-wisun-pressie2">wisun-pressie2</a>]
              Heile, B., "Wi-SUN Alliance Field Area Network
              (FAN)Overview", As presented at IETF 97, November 2016,
              &lt;<a href="https://www.ietf.org/proceedings/97/slides/slides-97-lpwan-35-wi-sun-presentation-00.pdf">https://www.ietf.org/proceedings/97/slides/</a>
              <a href="https://www.ietf.org/proceedings/97/slides/slides-97-lpwan-35-wi-sun-presentation-00.pdf">slides-97-lpwan-35-wi-sun-presentation-00.pdf</a>&gt;.

Acknowledgments

   Thanks to all those listed in the Contributors section for the
   excellent text.  Errors in the handling of that are solely the
   editor's fault.

   In addition to those in the Contributors section, thanks are due to
   (in alphabetical order) the following for comments:

   Abdussalam Baryun
   Andy Malis
   Arun (arun@acklio.com)
   Behcet SariKaya
   Dan Garcia Carrillo
   Jiazi Yi
   Mirja Kuhlewind
   Paul Duffy
   Russ Housley
   Samita Chakrabarti
   Thad Guidry
   Warren Kumari

   Alexander Pelov and Pascal Thubert were the LPWAN WG Chairs while
   this document was developed.

   Stephen Farrell's work on this memo was supported by Pervasive
   Nation, the Science Foundation Ireland's CONNECT centre national IoT
   network &lt;<a href="https://connectcentre.ie/pervasive-nation/">https://connectcentre.ie/pervasive-nation/</a>&gt;.






<span class="grey">Farrell                       Informational                    [Page 39]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-40" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


Contributors

   As stated above, this document is mainly a collection of content
   developed by the full set of contributors listed below.  The main
   input documents and their authors were:

   o  Text for <a href="#section-2.1">Section 2.1</a> was provided by Alper Yegin and Stephen
      Farrell in [<a href="#ref-LoRaWAN" title="&quot;LoRaWAN Overview&quot;">LoRaWAN</a>].

   o  Text for <a href="#section-2.2">Section 2.2</a> was provided by Antti Ratilainen in [<a href="#ref-NB-IoT" title="&quot;NB-IoT characteristics&quot;">NB-IoT</a>].

   o  Text for <a href="#section-2.3">Section 2.3</a> was provided by Juan Carlos Zuniga and Benoit
      Ponsard in [<a href="#ref-Sigfox" title="&quot;Sigfox System Description&quot;">Sigfox</a>].

   o  Text for <a href="#section-2.4">Section 2.4</a> was provided via personal communication from
      Bob Heile and was authored by Bob and Sum Chin Sean.  There is no
      Internet-Draft for that at the time of writing.

   o  Text for <a href="#section-4">Section 4</a> was provided by Ana Minabiru, Carles Gomez,
      Laurent Toutain, Josep Paradells, and Jon Crowcroft in
      [<a href="#ref-LPWAN-GAP">LPWAN-GAP</a>].  Additional text from that document is also used
      elsewhere above.

   The full list of contributors is as follows:

      Jon Crowcroft
      University of Cambridge
      JJ Thomson Avenue
      Cambridge, CB3 0FD
      United Kingdom

      Email: jon.crowcroft@cl.cam.ac.uk


      Carles Gomez
      UPC/i2CAT
      C/Esteve Terradas, 7
      Castelldefels 08860
      Spain

      Email: carlesgo@entel.upc.edu










<span class="grey">Farrell                       Informational                    [Page 40]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-41" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


      Bob Heile
      Wi-Sun Alliance
      11 Robert Toner Blvd, Suite 5-301
      North Attleboro, MA  02763
      United States of America

      Phone: +1-781-929-4832
      Email: bheile@ieee.org


      Ana Minaburo
      Acklio
      2bis rue de la Chataigneraie
      35510 Cesson-Sevigne Cedex
      France

      Email: ana@ackl.io


      Josep PAradells
      UPC/i2CAT
      C/Jordi Girona, 1-3
      Barcelona 08034
      Spain

      Email: josep.paradells@entel.upc.edu


      Charles E. Perkins
      Futurewei
      2330 Central Expressway
      Santa Clara, CA 95050
      United States of America

      Email: charliep@computer.org


      Benoit Ponsard
      Sigfox
      425 rue Jean Rostand
      Labege  31670
      France

      Email: Benoit.Ponsard@sigfox.com
      URI:   <a href="http://www.sigfox.com/">http://www.sigfox.com/</a>






<span class="grey">Farrell                       Informational                    [Page 41]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-42" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


      Antti Ratilainen
      Ericsson
      Hirsalantie 11
      Jorvas  02420
      Finland

      Email: antti.ratilainen@ericsson.com


      Chin-Sean SUM
      Wi-Sun Alliance
      20, Science Park Rd 117674
      Singapore

      Phone: +65 6771 1011
      Email: sum@wi-sun.org


      Laurent Toutain
      Institut MINES TELECOM ; TELECOM Bretagne
      2 rue de la Chataigneraie
      CS 17607
      35576 Cesson-Sevigne Cedex
      France

      Email: Laurent.Toutain@telecom-bretagne.eu


      Alper Yegin
      Actility
      Paris
      France

      Email: alper.yegin@actility.com


      Juan Carlos Zuniga
      Sigfox
      425 rue Jean Rostand
      Labege  31670
      France

      Email: JuanCarlos.Zuniga@sigfox.com
      URI:   <a href="http://www.sigfox.com/">http://www.sigfox.com/</a>







<span class="grey">Farrell                       Informational                    [Page 42]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-43" ></span>
<span class="grey"><a href="./rfc8376">RFC 8376</a>                     LPWAN Overview                     May 2018</span>


Author's Address

   Stephen Farrell (editor)
   Trinity College Dublin
   Dublin  2
   Ireland

   Phone: +353-1-896-2354
   Email: stephen.farrell@cs.tcd.ie










































Farrell                       Informational                    [Page 43]
</pre>