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
|
<pre>Internet Architecture Board (IAB) H. Tschofenig
Request for Comments: 7452 ARM Ltd.
Category: Informational J. Arkko
ISSN: 2070-1721 D. Thaler
D. McPherson
March 2015
<span class="h1">Architectural Considerations in Smart Object Networking</span>
Abstract
The term "Internet of Things" (IoT) denotes a trend where a large
number of embedded devices employ communication services offered by
Internet protocols. Many of these devices, often called "smart
objects", are not directly operated by humans but exist as components
in buildings or vehicles, or are spread out in the environment.
Following the theme "Everything that can be connected will be
connected", engineers and researchers designing smart object networks
need to decide how to achieve this in practice.
This document offers guidance to engineers designing Internet-
connected smart objects.
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 Architecture Board (IAB)
and represents information that the IAB has deemed valuable to
provide for permanent record. It represents the consensus of the
Internet Architecture Board (IAB). Documents approved for
publication by the IAB are not a candidate for any level of Internet
Standard; see <a href="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc7452">http://www.rfc-editor.org/info/rfc7452</a>.
<span class="grey">Tschofenig, et al. Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
Copyright Notice
Copyright (c) 2015 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="http://trustee.ietf.org/license-info">http://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.
Table of Contents
<a href="#section-1">1</a>. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-2">2</a>
<a href="#section-2">2</a>. Smart Object Communication Patterns . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-2.1">2.1</a>. Device-to-Device Communication Pattern . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-2.2">2.2</a>. Device-to-Cloud Communication Pattern . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-2.3">2.3</a>. Device-to-Gateway Communication Pattern . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-2.4">2.4</a>. Back-End Data Sharing Pattern . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-3">3</a>. Reuse Internet Protocols . . . . . . . . . . . . . . . . . . <a href="#page-10">10</a>
<a href="#section-4">4</a>. The Deployed Internet Matters . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-5">5</a>. Design for Change . . . . . . . . . . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-6">6</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-7">7</a>. Privacy Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#section-8">8</a>. Informative References . . . . . . . . . . . . . . . . . . . <a href="#page-19">19</a>
<a href="#appendix-A">Appendix A</a>. IAB Members at the Time of Approval . . . . . . . . <a href="#page-23">23</a>
Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
<a href="./rfc6574">RFC 6574</a> [<a href="./rfc6574" title=""Report from the Smart Object Workshop"">RFC6574</a>] refers to smart objects as devices with
constraints on energy, bandwidth, memory, size, cost, etc. This is a
fuzzy definition, as there is clearly a continuum in device
capabilities and there is no hard line to draw between devices that
can run Internet protocols and those that can't.
Interconnecting smart objects with the Internet enables exciting new
use cases and products. An increasing number of products put the
Internet Protocol Suite on smaller and smaller devices and offer the
ability to process, visualize, and gain insight from the collected
sensor data. The network effect can be increased if the data
collected from many different devices can be combined.
<span class="grey">Tschofenig, et al. Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
Developing embedded systems is a complex task, and designers must
make a number of design decisions such as:
o How long is the device designed to operate?
o How does it interact with the physical world? Is it a sensor or
actuator or both?
o How many "owners" does it have? One? Many? Is the owner likely
to change over the lifetime of the device?
o Is it continuously or intermittently powered? Does it sleep?
o Is it connected to a network, and if so, how?
o Will it be physically accessible for direct maintenance after
deployment? How does that affect the security model?
While developing embedded systems is itself a complex task, designing
Internet-connected smart objects is even harder since it requires
expertise with Internet protocols in addition to software programming
and hardware skills. To simplify the development task, and thereby
to lower the cost of developing new products and prototypes, we
believe that reuse of prior work is essential. Therefore, we provide
high-level guidance on the use of Internet technology for the
development of smart objects, and connected systems in general.
Utilize Existing Design Patterns
Design patterns are generally reusable solutions to a commonly
occurring design problem (see [<a href="#ref-Gamma" title=""Design Patterns: Elements of Reusable Object- Oriented Software"">Gamma</a>] for more discussion).
Existing smart object deployments show communication patterns that
can be reused by engineers with the benefit of lowering the design
effort. As discussed in the sections below, individual patterns
also have an implication on the required interoperability between
the different entities. Depending on the desired functionality,
already-existing patterns can be reused and adjusted. <a href="#section-2">Section 2</a>
talks about various communication patterns.
Reuse Internet Protocols
Most smart object deployments can make use of the already-
standardized Internet Protocol Suite. Internet protocols can be
applied to almost any environment due to their generic design and
typically offer plenty of potential for reconfiguration, which
allows them to be tailored for the specific needs. <a href="#section-3">Section 3</a>
discusses this topic.
<span class="grey">Tschofenig, et al. Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
The Deployed Internet Matters
When connecting smart objects to the Internet, take existing
deployment into consideration to avoid unpleasant surprises.
Assuming an ideal, clean-slate deployment is, in many cases, far
too optimistic since the already-deployed infrastructure is
convenient to use. In <a href="#section-4">Section 4</a>, we highlight the importance of
this topic.
Design for Change
The Internet infrastructure, applications, and preferred building
blocks evolve over time. Especially long-lived smart object
deployments need to take this change into account, and <a href="#section-5">Section 5</a>
is dedicated to that topic.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Smart Object Communication Patterns</span>
This section illustrates a number of communication patterns utilized
in the smart object environment. It is possible that more than one
pattern can be applied at the same time in a product. Developers
reusing those patterns will benefit from the experience of others as
well as from documentation, source code, and available products.
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Device-to-Device Communication Pattern</span>
Figure 1 illustrates a communication pattern where two devices
developed by different manufacturers are desired to interoperate and
communicate directly. To pick an example from [<a href="./rfc6574" title=""Report from the Smart Object Workshop"">RFC6574</a>], consider a
light switch that talks to a light bulb with the requirement that
each may be manufactured by a different company, represented as
Manufacturer A and B. Other cases can be found with fitness
equipment, such as heart rate monitors and cadence sensors.
_,,,, ,,,,
/ -'`` \
| Wireless |
\ Network |
/ \
,''''''''| / . ,''''''''|
| Light | ------|------------------\------| Light |
| Bulb | . | | Switch |
|........' `'- / |........'
\ _-...-`
Manufacturer `. ,.' Manufacturer
A ` B
Figure 1: Device-to-Device Communication Pattern
<span class="grey">Tschofenig, et al. Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
In order to fulfill the promise that devices from different
manufacturers are able to communicate out of the box, these vendors
need to agree on the protocol stack. They need to make decisions
about the following protocol-design aspects:
o Which physical layer(s) should be supported? Does it use low-
power radio technologies (e.g., Bluetooth Smart, IEEE 802.15.4)?
o Can devices be IPv6-only, or must they also support IPv4 for
backward-compatibility reasons? What IPv4-IPv6 transition
technologies are needed?
o Which IP address configuration mechanism(s) is integrated into the
device?
o Which communication architectures shall be supported? Which
devices are constrained, and what are those constraints? Is there
a classical client-server model or rather a peer-to-peer model?
o Is there a need for a service-discovery mechanism to allow users
to discover light bulbs they have in their home or office?
o Which transport-layer protocol (e.g., UDP) is used for conveying
the sensor readings/commands?
o Which application-layer protocol is used (for example, the
Constrained Application Protocol (CoAP) [<a href="./rfc7252" title=""The Constrained Application Protocol (CoAP)"">RFC7252</a>])?
o What information model is used for expressing the different light
levels?
o What data model is used to encode information? (See [<a href="./rfc3444" title=""On the Difference between Information Models and Data Models"">RFC3444</a>] for
a discussion about the difference between data models and
information models.)
o Finally, security and privacy require careful thought. This
includes questions like: What are the security threats? What
security services need to be provided to deal with the identified
threats? Where do the security credentials come from? At what
layer(s) in the protocol stack should the security mechanism(s)
reside? What privacy implications are caused by various design
decisions?
This list is not meant to be exhaustive but aims to illustrate that
for every usage scenario, many design decisions will have to be made
in order to accommodate the constrained nature of a specific device
in a certain usage scenario. Standardizing such a complete solution
<span class="grey">Tschofenig, et al. Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
to accomplish a full level of interoperability between two devices
manufactured by different vendors takes time, but there are obvious
rewards for end customers and vendors.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Device-to-Cloud Communication Pattern</span>
Figure 2 shows a communication pattern for uploading sensor data to
an application service provider. Often the application service
provider (example.com in our illustration) also sells smart objects.
In that case, the entire communication happens internal to the
provider and no need for interoperability arises. Still, it is
useful for example.com to reuse existing specifications to lower the
design, implementation, testing, and development effort.
While this pattern allows using IP-based communication end to end, it
may still lead to silos. To prevent silos, example.com may allow
third-party device vendors to connect to their server infrastructure
as well. For those cases, the protocol interface used to communicate
with the server infrastructure needs to be made available, and
various standards are available, such as CoAP, Datagram Transport
Layer Security (DTLS) [<a href="./rfc6347" title=""Datagram Transport Layer Security Version 1.2"">RFC6347</a>], UDP, IP, etc., as shown in Figure 2.
A frequent concern from end users is that a change in the business
model (or bankruptcy) of the IoT device/service provide might make
the hardware become unusable. Companies might consider the
possibility of releasing their source code for the IoT device or
allowing other IoT operating systems (plus application software) to
be installed on the IoT device.
Similarly, in many situations it is desirable to change which cloud
service a device connects to, such as when an application service
provider changes its hosting provider. Again, standard Internet
protocols are needed.
Since the access networks to which various smart objects are
connected are typically not under the control of the application
service provider, commonly used radio technologies (such as WLAN,
wired Ethernet, and cellular radio) together with the network access
authentication technology have to be reused. The same applies to
standards used for IP address configuration.
<span class="grey">Tschofenig, et al. Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
.................
| Application |
| Service |
| Provider |
| example.com |
|_______________|
_, .
HTTP ,' `. CoAP
TLS _,' `. DTLS
TCP ,' `._ UDP
IP -' - IP
,'''''''''''''| ,'''''''''''''''''|
| Device with | | Device with |
| Temperature | | Carbon Monoxide |
| Sensor | | Sensor |
|.............' |.................'
TLS = Transport Layer Security
Figure 2: Device-to-Cloud Communication Pattern
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>. Device-to-Gateway Communication Pattern</span>
The device-to-cloud communication pattern, described in <a href="#section-2.2">Section 2.2</a>,
is convenient for vendors of smart objects and works well if they
choose a radio technology that is widely deployed in the targeted
market, such as Wi-Fi based on IEEE 802.11 for smart home use cases.
Sometimes, less-widely-available radio technologies are needed (such
as IEEE 802.15.4) or special application-layer functionality (e.g.,
local authentication and authorization) has to be provided or
interoperability is needed with legacy, non-IP-based devices. In
those cases, some form of gateway has to be introduced into the
communication architecture that bridges between the different
technologies and performs other networking and security
functionality. Figure 3 shows this pattern graphically. Often,
these gateways are provided by the same vendor that offers the IoT
product, for example, because of the use of proprietary protocols, to
lower the dependency on other vendors or to avoid potential
interoperability problems. It is expected that in the future, more
generic gateways will be deployed to lower cost and infrastructure
complexity for end consumers, enterprises, and industrial
environments. Such generic gateways are more likely to exist if IoT
device designs make use of generic Internet protocols and not require
application-layer gateways that translate one application-layer
protocol to another one. The use of application-layer gateways will,
in general, lead to a more fragile deployment, as has been observed
in the past with [<a href="./rfc3724" title=""The Rise of the Middle and the Future of End-to-End: Reflections on the Evolution of the Internet Architecture"">RFC3724</a>] and [<a href="./rfc3238" title=""IAB Architectural and Policy Considerations for Open Pluggable Edge Services"">RFC3238</a>].
<span class="grey">Tschofenig, et al. Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
This communication pattern can frequently be found with smart object
deployments that require remote configuration capabilities and real-
time interactions. The gateway is thereby assumed to be always
connected to the Internet.
.................
| Application |
| Service |
| Provider |
| example.com |
|_______________|
|
|
| IPv4/IPv6
.................
| Local |
| Gateway |
| |
|_______________|
_, .
HTTP ,' `. CoAP
TLS _,' Bluetooth Smart `. DTLS
TCP ,' IEEE 802.11 `._ UDP
IPv6 -' IEEE 802.15.4 - IPv6
,'''''''''''''| ,'''''''''''''''''|
| Device with | | Device with |
| Temperature | | Carbon Monoxide |
| Sensor | | Sensor |
|.............' |.................'
Figure 3: Device-to-Gateway Communication Pattern
If the gateway is mobile, such as when the gateway is a smartphone,
connectivity between the devices and the Internet may be
intermittent. This limits the applicability of such a communication
pattern but is nevertheless very common with wearables and other IoT
devices that do not need always-on Internet or real-time Internet
connectivity. From an interoperability point of view, it is worth
noting that smartphones, with their sophisticated software update
mechanism via app stores, allow new functionality to be updated
regularly at the smartphone and sometimes even at the IoT device.
With special apps that are tailored to each specific IoT device,
interoperability is mainly a concern with regard to the lower layers
of the protocol stack, such as the radio interface, and less so at
the application layer (if users are willing to download a new app for
each IoT device).
<span class="grey">Tschofenig, et al. Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
It is also worth pointing out that a gateway allows supporting both
IPv6 and IPv4 (for compatibility with legacy application service
providers) externally, while allowing devices to be IPv6-only to
reduce footprint requirements. If devices do not have the resources
to support both IPv4 and IPv6 themselves, being IPv6-only (rather
than IPv4-only) with a gateway enables the most flexibility, avoiding
the need to update devices to support IPv6 later, whereas IPv4
address exhaustion makes it ill-suited to scale to smart object
networks. See [<a href="./rfc6540" title=""IPv6 Support Required for All IP-Capable Nodes"">RFC6540</a>] for further discussion.
<span class="h3"><a class="selflink" id="section-2.4" href="#section-2.4">2.4</a>. Back-End Data Sharing Pattern</span>
The device-to-cloud pattern often leads to silos; IoT devices upload
data only to a single application service provider. However, users
often demand the ability to export and to analyze data in combination
with data from other sources. Hence, the desire for granting access
to the uploaded sensor data to third parties arises. This design is
shown in Figure 4. This pattern is known from the Web in case of
mashups and is, therefore, reapplied to the smart object context. To
offer familiarity for developers, typically a RESTful API design in
combination with a federated authentication and authorization
technology (like OAuth 2.0 [<a href="./rfc6749" title=""The OAuth 2.0 Authorization Framework"">RFC6749</a>]) is reused. While this offers
reuse at the level of building blocks, the entire protocol stack
(including the information/data model and RESTful Web APIs) is often
not standardized.
<span class="grey">Tschofenig, et al. Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
.................
| Application |
.| Service |
,-` | Provider |
.` | b-example.com |
,-` |_______________|
.`
................. ,-`
| Application |-` HTTPS
| Service | OAuth 2.0
| Provider | JSON
| example.com |-,
|_______________| '.
_, `',
,' '.
_,' CoAP or `', .................
,' HTTP '. | Application |
-' `'| Service |
,''''''''| | Provider |
| Light | | c-example.com |
| Sensor | |_______________|
|........'
Figure 4: Back-End Data Sharing Pattern
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Reuse Internet Protocols</span>
When discussing the need for reuse of available standards versus
extending or redesigning protocols, it is useful to look back at the
criteria for success of the Internet.
<a href="./rfc1958">RFC 1958</a> [<a href="./rfc1958" title=""Architectural Principles of the Internet"">RFC1958</a>] provides lessons from the early days of the
Internet and says:
The Internet and its architecture have grown in evolutionary
fashion from modest beginnings, rather than from a Grand Plan.
And adds:
A good analogy for the development of the Internet is that of
constantly renewing the individual streets and buildings of a
city, rather than razing the city and rebuilding it.
Yet, because building very small, battery-powered devices is
challenging, it may be difficult to resist the temptation to build
solutions tailored to specific applications, or even to redesign
networks from scratch to suit a particular application.
<span class="grey">Tschofenig, et al. Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
While developing consensus-based standards in an open and transparent
process takes longer than developing proprietary solutions, the
resulting solutions often remain relevant over a longer period of
time.
<a href="./rfc1263">RFC 1263</a> [<a href="./rfc1263" title=""TCP Extensions Considered Harmful"">RFC1263</a>] considers protocol-design strategy and the
decision to design new protocols or to use existing protocols in a
non-backward compatible way:
We hope to be able to design and distribute protocols in less time
than it takes a standards committee to agree on an acceptable
meeting time. This is inevitable because the basic problem with
networking is the standardization process. Over the last several
years, there has been a push in the research community for
lightweight protocols, when in fact what is needed are lightweight
standards. Also note that we have not proposed to implement some
entirely new set of 'superior' communications protocols, we have
simply proposed a system for making necessary changes to the
existing protocol suites fast enough to keep up with the
underlying change in the network. In fact, the first standards
organization that realizes that the primary impediment to
standardization is poor logistical support will probably win.
While [<a href="./rfc1263" title=""TCP Extensions Considered Harmful"">RFC1263</a>] was written in 1991 when the standardization process
was more lightweight than today, these thoughts remain relevant in
smart object development.
Interestingly, a large number of already-standardized protocols are
relevant for smart object deployments. <a href="./rfc6272">RFC 6272</a> [<a href="./rfc6272" title=""Internet Protocols for the Smart Grid"">RFC6272</a>], for
example, made the attempt to identify relevant IETF specifications
for use in smart grids.
Still, many commercial products contain proprietary or industry-
specific protocol mechanisms, and researchers have made several
attempts to design new architectures for the entire Internet system.
There are several architectural concerns that deserve to be
highlighted:
Vertical Profiles
The discussions at the IAB workshop (see <a href="./rfc6574#section-3.1.2">Section 3.1.2 of
[RFC6574]</a>) revealed the preference of many participants to develop
domain-specific profiles that select a minimum subset of protocols
needed for a specific operating environment. Various
standardization organizations and industry fora are currently
engaged in activities of defining their preferred profile(s).
<span class="grey">Tschofenig, et al. Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
Ultimately, however, the number of domains where smart objects can
be used is essentially unbounded. There is also an ever-evolving
set of protocols and protocol extensions.
However, merely changing the networking protocol to IP does not
necessarily bring the kinds of benefits that industries are
looking for in their evolving smart object deployments. In
particular, a profile is rigid and leaves little room for
interoperability among slightly differing or competing technology
variations. As an example, Layer 1 through 7 type profiles do not
account for the possibility that some devices may use different
physical media than others, and that in such situations, a simple
router could still provide an ability to communicate between the
parties.
Industry-Specific Solutions
The Internet Protocol Suite is more extensive than merely the use
of IP. Often, significant benefits can be gained from using
additional, widely available, generic technologies, such as the
Web. Benefits from using these kinds of tools include access to a
large available workforce, software, and education already geared
towards employing the technology.
Tight Coupling
Many applications are built around a specific set of servers,
devices, and users. However, often the same data and devices
could be useful for many purposes, some of which may not be easily
identifiable at the time the devices are deployed.
In addition to the architectural concerns, developing new protocols
and mechanisms is generally more risky and expensive than reusing
existing standards, due to the additional costs involved in design,
implementation, testing, and deployment. Secondary costs, such as
the training of technical staff and, in the worst case, the training
of end users, can be substantial.
As a result, while there are some cases where specific solutions are
needed, the benefits of general-purpose technology are often
compelling, be it choosing IP over some more specific communication
mechanism, a widely deployed link layer (such as wireless LAN) over a
more specific one, web technology over application-specific
protocols, and so on.
However, when employing these technologies, it is important to
embrace them in their entirety, allowing for the architectural
flexibility that is built into them. As an example, it rarely makes
<span class="grey">Tschofenig, et al. Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
sense to limit communications to on-link or to specific media.
Design your applications so that the participating devices can easily
interact with multiple other applications.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. The Deployed Internet Matters</span>
Despite the applicability of Internet protocols for smart objects,
picking the specific protocols for a particular use case can be
tricky. As the Internet has evolved, certain protocols and protocol
extensions have become the norm, and others have become difficult to
use in all circumstances.
Taking into account these constraints is particularly important for
smart objects, as there is often a desire to employ specific features
to support smart object communication. For instance, from a pure
protocol-specification perspective, some transport protocols may be
more desirable than others. These constraints apply both to the use
of existing protocols as well as designing new ones on top of the
Internet protocol stack.
The following list illustrates a few of those constraints, but every
communication protocol comes with its own challenges.
In 2005, Fonseca, et al. [<a href="#ref-IPoptions">IPoptions</a>] studied the usage of IP
options-enabled packets in the Internet and found that overall,
approximately half of Internet paths drop packets with options,
making extensions using IP options "less ideal" for extending IP.
In 2010, Honda, et al. [<a href="#ref-HomeGateway">HomeGateway</a>] tested 34 different home
gateways regarding their packet dropping policy of UDP, TCP, the
Datagram Congestion Control Protocol (DCCP), the Stream Control
Transmission Protocol (SCTP), ICMP, and various timeout behavior.
For example, more than half of the tested devices do not conform to
the IETF-recommended timeouts for UDP, and for TCP the measured
timeouts are highly variable, ranging from less than 4 minutes to
longer than 25 hours. For NAT traversal of DCCP and SCTP, the
situation is poor. None of the tested devices, for example, allowed
establishing a DCCP connection.
In 2011, the behavior of networks with regard to various TCP
extensions was tested in [<a href="#ref-TCPextensions">TCPextensions</a>]: "From our results we
conclude that the middleboxes implementing layer 4 functionality are
very common -- at least 25% of paths interfered with TCP in some way
beyond basic firewalling."
Extending protocols to fulfill new uses and to add new functionality
may range from very easy to difficult, as [<a href="./rfc6709" title=""Design Considerations for Protocol Extensions"">RFC6709</a>] explains in great
detail. A challenge many protocol designers are facing is to ensure
<span class="grey">Tschofenig, et al. Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
incremental deployability and interoperability with incumbent
elements in a number of areas. In various cases, the effort it takes
to design incrementally deployable protocols has not been taken
seriously enough at the outset. <a href="./rfc5218">RFC 5218</a> on "What Makes For a
Successful Protocol" [<a href="./rfc5218" title=""What Makes For a Successful Protocol?"">RFC5218</a>] defines wildly successful protocols as
protocols that are widely deployed beyond their envisioned use cases.
As these examples illustrate, protocol architects have to take
developments in the greater Internet into account, as not all
features can be expected to be usable in all environments. For
instance, middleboxes [<a href="./rfc3234" title=""Middleboxes: Taxonomy and Issues"">RFC3234</a>] complicate the use of extensions in
basic IP protocols and transport layers.
<a href="./rfc1958">RFC 1958</a> [<a href="./rfc1958" title=""Architectural Principles of the Internet"">RFC1958</a>] considers this aspect and says "... the community
believes that the goal is connectivity, the tool is the Internet
Protocol, and the intelligence is end to end rather than hidden in
the network." This statement is challenged more than ever with the
perceived need to develop intermediaries interacting with less
intelligent end devices. However, <a href="./rfc3724">RFC 3724</a> [<a href="./rfc3724" title=""The Rise of the Middle and the Future of End-to-End: Reflections on the Evolution of the Internet Architecture"">RFC3724</a>] has this to say
about this crucial aspect: "One desirable consequence of the
end-to-end principle is protection of innovation. Requiring
modification in the network in order to deploy new services is still
typically more difficult than modifying end nodes." Even this
statement will become challenged, as large numbers of devices are
deployed, and it indeed might be the case that changing those devices
will be hard. But <a href="./rfc4924">RFC 4924</a> [<a href="./rfc4924" title=""Reflections on Internet Transparency"">RFC4924</a>] adds that a network that does
not filter or transform the data that it carries may be said to be
"transparent" or "oblivious" to the content of packets. Networks
that provide oblivious transport enable the deployment of new
services without requiring changes to the core. It is this
flexibility that is perhaps both the Internet's most essential
characteristic as well as one of the most important contributors to
its success.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Design for Change</span>
How to embrace rapid innovation and at the same time accomplish a
high level of interoperability is one of the key aspects for
competing in the marketplace. <a href="./rfc1263">RFC 1263</a> [<a href="./rfc1263" title=""TCP Extensions Considered Harmful"">RFC1263</a>] points out that
"protocol change happens and is currently happening at a very
respectable clip...We simply propose [for engineers developing the
technology] to explicitly deal with the changes rather [than] keep
trying to hold back the flood."
In [<a href="#ref-Tussles" title=""Tussle in Cyberspace: Defining Tomorrow's Internet"">Tussles</a>], Clark, et al. suggest to "design for variation in
outcome, so that the outcome can be different in different places,
and the tussle takes place within the design, not by distorting or
violating it. Do not design so as to dictate the outcome. Rigid
<span class="grey">Tschofenig, et al. Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
designs will be broken; designs that permit variation will flex under
pressure and survive." The term "tussle" refers to the process
whereby different parties, which are part of the Internet milieu and
have interests that may be adverse to each other, adapt their mix of
mechanisms to try to achieve their conflicting goals, and others
respond by adapting the mechanisms to push back.
In order to accomplish this, Clark, et al. suggest to:
1. Break complex systems into modular parts, so that one tussle does
not spill over and distort unrelated issues.
2. Design for choice to permit the different players to express
their preferences. Choice often requires open interfaces.
The main challenge with the suggested approach is predicting how
conflicts among the different players will evolve. Since tussles
evolve over time, there will be changes to the architecture, too. It
is certainly difficult to pick the right set of building blocks and
to develop a communication architecture that will last a long time,
and many smart object deployments are envisioned to be rather long
lived.
Luckily, the design of the system does not need to be cast in stone
during the design phase. It may adjust dynamically since many of the
protocols allow for configurability and dynamic discovery. But,
ultimately, software update mechanisms may provide the flexibility
needed to deal with more substantial changes.
A solid software update mechanism is needed not only for dealing with
the changing Internet communication environment and for
interoperability improvements but also for adding new features and
for fixing security bugs. This approach may appear to be in conflict
with classes of severely restricted devices since, in addition to a
software update mechanism, spare flash and RAM capacity is needed.
It is, however, a trade-off worth thinking about since better product
support comes with a price.
As technology keeps advancing, the constraints that technology places
on devices evolve as well. Microelectronics have become more capable
as time goes by, often making it possible for new devices to be both
less expensive and more capable than their predecessors. This trend
can, however, be in some cases offset by the desire to embed
communications technology in even smaller and cheaper objects. But
it is important to design communications technology not just for
today's constraints but also for tomorrow's. This is particularly
important since the cost of a product is not only determined by the
<span class="grey">Tschofenig, et al. Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
cost of hardware but also by the cost of not reusing already-
available protocol stacks and software libraries by developing custom
solutions.
Software updates are common in operating systems and application
programs today. Without them, most devices would pose a latent risk
to the Internet at large. Arguably, the JavaScript-based web employs
a very rapid software update mechanism with code being provided by
many different parties (e.g., by websites loaded into the browser or
by smartphone apps).
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Security Considerations</span>
Security is often even more important for smart objects than for more
traditional computing systems, since interacting directly with the
physical world can present greater dangers, and smart objects often
operate autonomously without any human interaction for a long time
period. The problem is compounded by the fact that there are often
fewer resources available in constrained devices to actually
implement security (e.g., see the discussion of "Class 0 devices" in
<a href="./rfc7228#section-3">Section 3 of [RFC7228]</a>). As such, it is critical to design for
security, taking into account a number of key considerations:
o A key part of any smart object design is the problem of how to
establish trust for a smart object. Typically, bootstrapping
trust involves giving the device the credentials it needs to
operate within a larger network of devices or services.
o Smart objects will, in many cases, be deployed in places where
additional physical security is difficult or impossible.
Designers should take into account that any such device can and
will be compromised by an attacker with direct physical access.
Thus, trust models should distinguish between devices susceptible
to physical compromise and devices with some level of physical
security. Physical attacks, such as timing, power analysis, and
glitching, are commonly applied to extract secrets
[<a href="#ref-PhysicalAttacks">PhysicalAttacks</a>].
o Smart objects will, in many cases, be deployed as collections of
identical or near identical devices. Protocols should be designed
so that a compromise of a single device does not result in
compromise of the entire collection, especially since the
compromise of a large number of devices can enable additional
attacks such as a distributed denial of service. Sharing secret
keys across an entire product family is, therefore, also
problematic since compromise of a single device might leave all
devices from that product family vulnerable.
<span class="grey">Tschofenig, et al. Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
o Smart objects will, in many cases, be deployed in ways that the
designer never considered. Designers should either seek to
minimize the impact of misuse of their systems and devices or
implement controls to prevent such misuse where applicable.
o It is anticipated that smart objects will be deployed with a long
(e.g., 5-40 years) life cycle. Any security mechanism chosen at
the outset may not be "good enough" for the full lifespan of the
device. Thus, long-lived devices should start with good security
and provide a path to deploy new security mechanisms over the
lifetime of the device.
o Security protocols often rely on random numbers, and offering
randomness in embedded devices is challenging. For this reason,
it is important to consider the use of hardware-based random
number generators during early states of the design process.
A more detailed security discussion can be found in the "Report from
the Smart Object Security Workshop" [<a href="./rfc7397" title=""Report from the Smart Object Security Workshop"">RFC7397</a>] that was held prior to
the IETF meeting in Paris, March 2012, and in the report from the
National Science Foundation's "Cybersecurity Ideas Lab" workshop
[<a href="#ref-NSF" title=""Interdisciplinary Pathways towards a More Secure Internet"">NSF</a>] that was held in February 2014. For example, [<a href="#ref-NSF" title=""Interdisciplinary Pathways towards a More Secure Internet"">NSF</a>] includes,
among other recommendations, these recommendations specific to the
Internet of Things:
Enhance the Security of the Internet of Things by Identifying
Enclaves: The security challenges posed by the emerging Internet
of Things should be addressed now, to prepare before it is fully
upon us. By identifying specific use segments, or "enclaves",
Internet of Things infrastructure stakeholders can address the
security requirements and devise event remediations for that
enclave.
Create a Framework for Managing Software Updates: The Internet of
Things will challenge our current channels for distributing
security updates. An environment must be developed for
distributing security patches that scales to a world where almost
everything is connected to the Internet and many "things" are
largely unattended.
Finally, we reiterate that use of standards that have gotten wide
review can often avoid a number of security issues that could
otherwise arise. <a href="./rfc6574#section-3.3">Section 3.3 of [RFC6574]</a> reminds us about the IETF
work style regarding security:
<span class="grey">Tschofenig, et al. Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
In the development of smart object applications, as with any other
protocol application solution, security has to be considered early
in the design process. As such, the recommendations currently
provided to IETF protocol architects, such as <a href="./rfc3552">RFC 3552</a> [<a href="./rfc3552" title=""Guidelines for Writing RFC Text on Security Considerations"">RFC3552</a>],
and <a href="./rfc4101">RFC 4101</a> [<a href="./rfc4101" title=""Writing Protocol Models"">RFC4101</a>], apply also to the smart object space.
In the IETF, security functionality is incorporated into each
protocol as appropriate, to deal with threats that are specific to
them. It is extremely unlikely that there is a one-size-fits-all
security solution given the large number of choices for the 'right'
protocol architecture (particularly at the application layer). For
this purpose, [<a href="./rfc6272" title=""Internet Protocols for the Smart Grid"">RFC6272</a>] offers a survey of IETF security mechanisms
instead of suggesting a preferred one.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Privacy Considerations</span>
This document mainly focuses on an engineering audience, i.e., those
who are designing smart object protocols and architectures. Since
there is no value-free design, privacy-related decisions also have to
be made, even if they are just implicit in the reuse of certain
technologies. <a href="./rfc6973">RFC 6973</a> [<a href="./rfc6973" title=""Privacy Considerations for Internet Protocols"">RFC6973</a>] and the threat model in
[<a href="#ref-CONFIDENTIALITY">CONFIDENTIALITY</a>] were written as guidance specifically for that
audience and are also applicable to the smart object context.
For those looking at privacy from a deployment point of view, the
following additional guidelines are suggested:
Transparency: Transparency of data collection and processing is key
to avoid unpleasant surprises for owners and users of smart
objects. Users and impacted parties must be put in a position to
understand what items of personal data concerning them are
collected and stored, as well for what purposes they are sought.
Data Collection / Use Limitation: Smart objects should only store
personal data that is adequate, relevant, and not excessive in
relation to the purpose(s) for which they are processed. The use
of anonymized data should be preferred wherever possible.
Data Access: Before deployment starts, it is necessary to consider
who can access personal data collected by smart objects and under
which conditions. Appropriate and clear procedures should be
established in order to allow data subjects to properly exercise
their rights.
<span class="grey">Tschofenig, et al. Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
Data Security: Standardized data security measures to prevent
unlawful access, alteration, or loss of smart object data need to
be defined and deployed. Robust cryptographic techniques and
proper authentication frameworks have to be used to limit the risk
of unintended data transfers or unauthorized access.
A more detailed treatment of privacy considerations that extend
beyond engineering can be found in a publication from the Article 29
Working Party [<a href="#ref-WP223" title=""Opinion 8/2014 on the Recent Developments on the Internet of Things"">WP223</a>].
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Informative References</span>
[<a id="ref-CONFIDENTIALITY">CONFIDENTIALITY</a>]
Barnes, R., Schneier, B., Jennings, C., Hardie, T.,
Trammell, B., Huitema, C., and D. Borkmann,
"Confidentiality in the Face of Pervasive Surveillance: A
Threat Model and Problem Statement", Work in Progress,
<a href="./draft-iab-privsec-confidentiality-threat-04">draft-iab-privsec-confidentiality-threat-04</a>, March 2015.
[<a id="ref-Gamma">Gamma</a>] Gamma, E., "Design Patterns: Elements of Reusable Object-
Oriented Software", 1995.
[<a id="ref-HomeGateway">HomeGateway</a>]
Eggert, L., "An Experimental Study of Home Gateway
Characteristics", In Proceedings of the 10th annual
Internet Measurement Conference, 2010,
<<a href="http://eggert.org/papers/2010-imc-hgw-study.pdf">http://eggert.org/papers/2010-imc-hgw-study.pdf</a>>.
[<a id="ref-IPoptions">IPoptions</a>]
Fonseca, R., Porter, G., Katz, R., Shenker, S., and I.
Stoica, "IP options are not an option", Technical Report
UCB/EECS2005-24, 2005,
<<a href="http://citeseer.ist.psu.edu/viewdoc/summary?doi=10.1.1.123.4251">http://citeseer.ist.psu.edu/viewdoc/</a>
<a href="http://citeseer.ist.psu.edu/viewdoc/summary?doi=10.1.1.123.4251">summary?doi=10.1.1.123.4251</a>>.
[<a id="ref-NSF">NSF</a>] National Science Foundation, "Interdisciplinary Pathways
towards a More Secure Internet", A report on the NSF-
sponsored Cybersecurity Ideas Lab held in Arlington,
Virginia, February 2014, <<a href="http://www.nsf.gov/cise/news/CybersecurityIdeasLab_July2014.pdf">http://www.nsf.gov/cise/news/</a>
<a href="http://www.nsf.gov/cise/news/CybersecurityIdeasLab_July2014.pdf">CybersecurityIdeasLab_July2014.pdf</a>>.
[<a id="ref-PhysicalAttacks">PhysicalAttacks</a>]
Koeune, F. and F. Standaert, "A Tutorial on Physical
Security and Side-Channel Attacks", in Foundations of
Security Analysis and Design III: FOSAD 2004/2005 Tutorial
Lectures; Lecture Notes in Computer Science, Vol. 3655,
pp. 78-108, September 2005,
<<a href="http://link.springer.com/chapter/10.1007%2F11554578_3">http://link.springer.com/chapter/10.1007%2F11554578_3</a>>.
<span class="grey">Tschofenig, et al. Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
[<a id="ref-RFC1263">RFC1263</a>] O'Malley, S. and L. Peterson, "TCP Extensions Considered
Harmful", <a href="./rfc1263">RFC 1263</a>, October 1991,
<<a href="http://www.rfc-editor.org/info/rfc1263">http://www.rfc-editor.org/info/rfc1263</a>>.
[<a id="ref-RFC1958">RFC1958</a>] Carpenter, B., "Architectural Principles of the Internet",
<a href="./rfc1958">RFC 1958</a>, June 1996,
<<a href="http://www.rfc-editor.org/info/rfc1958">http://www.rfc-editor.org/info/rfc1958</a>>.
[<a id="ref-RFC3234">RFC3234</a>] Carpenter, B. and S. Brim, "Middleboxes: Taxonomy and
Issues", <a href="./rfc3234">RFC 3234</a>, February 2002,
<<a href="http://www.rfc-editor.org/info/rfc3234">http://www.rfc-editor.org/info/rfc3234</a>>.
[<a id="ref-RFC3238">RFC3238</a>] Floyd, S. and L. Daigle, "IAB Architectural and Policy
Considerations for Open Pluggable Edge Services", <a href="./rfc3238">RFC</a>
<a href="./rfc3238">3238</a>, January 2002,
<<a href="http://www.rfc-editor.org/info/rfc3238">http://www.rfc-editor.org/info/rfc3238</a>>.
[<a id="ref-RFC3444">RFC3444</a>] Pras, A. and J. Schoenwaelder, "On the Difference between
Information Models and Data Models", <a href="./rfc3444">RFC 3444</a>, January
2003, <<a href="http://www.rfc-editor.org/info/rfc3444">http://www.rfc-editor.org/info/rfc3444</a>>.
[<a id="ref-RFC3552">RFC3552</a>] Rescorla, E. and B. Korver, "Guidelines for Writing RFC
Text on Security Considerations", <a href="https://www.rfc-editor.org/bcp/bcp72">BCP 72</a>, <a href="./rfc3552">RFC 3552</a>, July
2003, <<a href="http://www.rfc-editor.org/info/rfc3552">http://www.rfc-editor.org/info/rfc3552</a>>.
[<a id="ref-RFC3724">RFC3724</a>] Kempf, J., Austein, R., and IAB, "The Rise of the Middle
and the Future of End-to-End: Reflections on the Evolution
of the Internet Architecture", <a href="./rfc3724">RFC 3724</a>, March 2004,
<<a href="http://www.rfc-editor.org/info/rfc3724">http://www.rfc-editor.org/info/rfc3724</a>>.
[<a id="ref-RFC4101">RFC4101</a>] Rescorla, E. and IAB, "Writing Protocol Models", <a href="./rfc4101">RFC 4101</a>,
June 2005, <<a href="http://www.rfc-editor.org/info/rfc4101">http://www.rfc-editor.org/info/rfc4101</a>>.
[<a id="ref-RFC4924">RFC4924</a>] Aboba, B. and E. Davies, "Reflections on Internet
Transparency", <a href="./rfc4924">RFC 4924</a>, July 2007,
<<a href="http://www.rfc-editor.org/info/rfc4924">http://www.rfc-editor.org/info/rfc4924</a>>.
[<a id="ref-RFC5218">RFC5218</a>] Thaler, D. and B. Aboba, "What Makes For a Successful
Protocol?", <a href="./rfc5218">RFC 5218</a>, July 2008,
<<a href="http://www.rfc-editor.org/info/rfc5218">http://www.rfc-editor.org/info/rfc5218</a>>.
[<a id="ref-RFC6272">RFC6272</a>] Baker, F. and D. Meyer, "Internet Protocols for the Smart
Grid", <a href="./rfc6272">RFC 6272</a>, June 2011,
<<a href="http://www.rfc-editor.org/info/rfc6272">http://www.rfc-editor.org/info/rfc6272</a>>.
[<a id="ref-RFC6347">RFC6347</a>] Rescorla, E. and N. Modadugu, "Datagram Transport Layer
Security Version 1.2", <a href="./rfc6347">RFC 6347</a>, January 2012,
<<a href="http://www.rfc-editor.org/info/rfc6347">http://www.rfc-editor.org/info/rfc6347</a>>.
<span class="grey">Tschofenig, et al. Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
[<a id="ref-RFC6540">RFC6540</a>] George, W., Donley, C., Liljenstolpe, C., and L. Howard,
"IPv6 Support Required for All IP-Capable Nodes", <a href="https://www.rfc-editor.org/bcp/bcp177">BCP 177</a>,
<a href="./rfc6540">RFC 6540</a>, April 2012,
<<a href="http://www.rfc-editor.org/info/rfc6540">http://www.rfc-editor.org/info/rfc6540</a>>.
[<a id="ref-RFC6574">RFC6574</a>] Tschofenig, H. and J. Arkko, "Report from the Smart Object
Workshop", <a href="./rfc6574">RFC 6574</a>, April 2012,
<<a href="http://www.rfc-editor.org/info/rfc6574">http://www.rfc-editor.org/info/rfc6574</a>>.
[<a id="ref-RFC6709">RFC6709</a>] Carpenter, B., Aboba, B., and S. Cheshire, "Design
Considerations for Protocol Extensions", <a href="./rfc6709">RFC 6709</a>,
September 2012, <<a href="http://www.rfc-editor.org/info/rfc6709">http://www.rfc-editor.org/info/rfc6709</a>>.
[<a id="ref-RFC6749">RFC6749</a>] Hardt, D., "The OAuth 2.0 Authorization Framework", <a href="./rfc6749">RFC</a>
<a href="./rfc6749">6749</a>, October 2012,
<<a href="http://www.rfc-editor.org/info/rfc6749">http://www.rfc-editor.org/info/rfc6749</a>>.
[<a id="ref-RFC6973">RFC6973</a>] Cooper, A., Tschofenig, H., Aboba, B., Peterson, J.,
Morris, J., Hansen, M., and R. Smith, "Privacy
Considerations for Internet Protocols", <a href="./rfc6973">RFC 6973</a>, July
2013, <<a href="http://www.rfc-editor.org/info/rfc6973">http://www.rfc-editor.org/info/rfc6973</a>>.
[<a id="ref-RFC7228">RFC7228</a>] Bormann, C., Ersue, M., and A. Keranen, "Terminology for
Constrained-Node Networks", <a href="./rfc7228">RFC 7228</a>, May 2014,
<<a href="http://www.rfc-editor.org/info/rfc7228">http://www.rfc-editor.org/info/rfc7228</a>>.
[<a id="ref-RFC7252">RFC7252</a>] Shelby, Z., Hartke, K., and C. Bormann, "The Constrained
Application Protocol (CoAP)", <a href="./rfc7252">RFC 7252</a>, June 2014,
<<a href="http://www.rfc-editor.org/info/rfc7252">http://www.rfc-editor.org/info/rfc7252</a>>.
[<a id="ref-RFC7397">RFC7397</a>] Gilger, J. and H. Tschofenig, "Report from the Smart
Object Security Workshop", <a href="./rfc7397">RFC 7397</a>, December 2014,
<<a href="http://www.rfc-editor.org/info/rfc7397">http://www.rfc-editor.org/info/rfc7397</a>>.
[<a id="ref-TCPextensions">TCPextensions</a>]
Honda, M., Nishida, Y., Greenhalgh, A., Handley, M., and
H. Tokuda, "Is it Still Possible to Extend TCP?", In
Proceedings of the ACM Internet Measurement Conference
(IMC), Berlin, Germany, November 2011,
<<a href="http://conferences.sigcomm.org/imc/2011/docs/p181.pdf">http://conferences.sigcomm.org/imc/2011/docs/p181.pdf</a>>.
[<a id="ref-Tussles">Tussles</a>] Clark, D., Wroclawski, J., Sollins, K., and R. Braden,
"Tussle in Cyberspace: Defining Tomorrow's Internet", In
Proceedings of ACM SIGCOMM, 2002,
<<a href="http://conferences.sigcomm.org/sigcomm/2002/papers/tussle.html">http://conferences.sigcomm.org/sigcomm/2002/papers/</a>
<a href="http://conferences.sigcomm.org/sigcomm/2002/papers/tussle.html">tussle.html</a>>.
<span class="grey">Tschofenig, et al. Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
[<a id="ref-WP223">WP223</a>] Article 29 Data Protection Working Party, "Opinion 8/2014
on the Recent Developments on the Internet of Things", 14/
EN, WP 223, September 2014, <<a href="http://ec.europa.eu/justice/data-protection/article-29/documentation/opinion-recommendation/files/2014/wp223_en.pdf">http://ec.europa.eu/justice/</a>
<a href="http://ec.europa.eu/justice/data-protection/article-29/documentation/opinion-recommendation/files/2014/wp223_en.pdf">data-protection/article-29/documentation/</a>
<a href="http://ec.europa.eu/justice/data-protection/article-29/documentation/opinion-recommendation/files/2014/wp223_en.pdf">opinion-recommendation/files/2014/wp223_en.pdf</a>>.
<span class="grey">Tschofenig, et al. Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. IAB Members at the Time of Approval</span>
Jari Arkko
Mary Barnes
Marc Blanchet
Joel Halpern
Ted Hardie
Joe Hildebrand
Russ Housley
Eliot Lear
Xing Li
Erik Nordmark
Andrew Sullivan
Dave Thaler
Brian Trammell
Acknowledgements
We would like to thank the participants of the IAB Smart Object
workshop for their input to the overall discussion about smart
objects.
Furthermore, we would like to thank Mike St. Johns, Jan Holler,
Patrick Wetterwald, Atte Lansisalmi, Hannu Flinck, Bernard Aboba,
Markku Tuohino, Wes George, Robert Sparks, S. Moonsesamy, Dave
Crocker, and Steve Crocker in particular for their review comments.
<span class="grey">Tschofenig, et al. Informational [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc7452">RFC 7452</a> Smart Object Architectural Considerations March 2015</span>
Authors' Addresses
Hannes Tschofenig
ARM Ltd.
6060 Hall in Tirol
Austria
EMail: Hannes.Tschofenig@gmx.net
URI: <a href="http://www.tschofenig.priv.at">http://www.tschofenig.priv.at</a>
Jari Arkko
Jorvas 02420
Finland
EMail: jari.arkko@piuha.net
Dave Thaler
One Microsoft Way
Redmond, WA 98052
United States
EMail: dthaler@microsoft.com
Danny McPherson
12061 Bluemont Way
Reston, VA 20190
United States
EMail: dmcpherson@verisign.com
Tschofenig, et al. Informational [Page 24]
</pre>
|