SlideShare una empresa de Scribd logo
1 de 54
1 
IP Based Architecture for the Internet of 
Things 
November 20, 2014 
IPV6 and Related Standards 
for 
IoT Interoperability
IoT Architecture – Problems to Solve 
2 
 Interoperability 
 In the way in which software interacts with physical resources 
 Decouple IoT devices from the software that manages them 
 Discovery, Management and Reporting, Security, Authorization 
 Scalability 
 Large number of devices, users, interactions, connections 
 Scale-less interaction 
 Technology Reuse and Modularity 
 Software, networks, protocols, data models 
 Across vendors in a vertical application segment 
 Across diverse vertical application segments 
 Low Barrier to Innovation 
 Anyone can participate and innovate
These Problems are Already Solved 
3 
 In the context of the Internet and the WWW 
 Any Web Browser works with any web service, more or less 
 Regardless of wire protocols used in the network 
 Regardless of the data models and content types 
 Across vertical application segments 
 The WWW scales to planetary size 
 Low barrier to Innovation 
 We want the same qualities for IoT 
 What are the important design patterns in Internet and WWW 
Architecture? 
 How can these design patterns apply to IoT?
Internet and WWW Design Patterns 
 Narrow Waist, endpoint oriented 
4 
 Innovation happens at the endpoints, enabled by common, openly available 
network protocols (the narrow waist) 
 Layered Protocols 
 Common set of IP protocols (TCP, UDP) abstract the lower communication 
layers 
 Common Application Protocols (HTTP, REST) abstract resources 
 Uniform Addressing 
 URIs and Hyperlinks point to resources 
 IP Addresses, DNS names are globally unique 
 Stateless Interaction 
 Client-Server pattern 
 Hypermedia As The Engine Of Application State
How Does it Apply to IoT? 
5 
 Internet Protocol (IP) on Constrained Devices 
 Machine to Machine (M2M) Application Protocols 
 Standard Object Models and Data Models 
 Hypermedia for Machine APIs
IP on Constrained Devices 
6 
CoAP HTTP 
6LowPAN IPV4/IPV6 
802.15.4 WiFi, Ethernet 
MCU – 16KiB RAM MPU 
Application Protocol 
Routing 
HW Network 
Hardware
Machine to Machine Application Protocols 
7 
 CoAP and Related IETF Standards 
 Machine to Machine (M2M) protocol modeled after HTTP 
 Compressed Binary mapping of REST API protocol 
 Asynchronous Notifications to support M2M use cases 
 Format for Machine Hyperlinks, CoRE Link-Format 
 HTTP 
 Useful for less resource constrained environments 
 Works with existing libraries and servers 
 Well known extensions for asynchronous notification
Object Models and Data Models 
8 
 IPSO Smart Objects 
 Object/Resource URI template for M2M REST API 
 Defines Structure and Data Types for functionally specialized objects 
 E.g. Temperature Sensor, Light Controller, Load Controller 
 Compatible with CoAP, HTTP, and other underlying protocols 
 Others being considered by various IoT Interest Groups (IOTWF, 
IIC, OIC) 
 W3C Community group on Web of Things considering work on 
data models
Hypermedia for Machine APIs 
9 
 CoRE Link-Format 
 Format for Semantic Hyperlinks that describe resources 
 Mechanism for embedding links within data sources 
 CoRE Resource Directory 
 Centralized directory to store Semantic Hyperlinks registered by devices 
 Mechanism for applications to discover resources by link attribute 
 IPSO Smart Objects 
 Self-contained description in URI schema 
 Hypercat 
 Catalog format for general purpose Semantic Hyperlinks
IPSO Smart Objects 
10 
 A simple Data Model for 
 Semantic Interoperability across IoT Devices 
 Requires only simple URI addressing and a few data types 
 Mapping to internet content-types 
 Usable on many different transport protocols (CoAP, HTTP, 
MQTT) 
 This presentation discusses the architecture and features of 
a feature rich implementation of IPSO Smart Objects on 
constrained devices and networks using CoAP and OMA 
LWM2M
IPSO Smart Object Architecture Use Cases 
11 
Web 
Application 
Application 
Application 
Service e.g. 
LWM2M 
Server 
Client 
Peer- 
Peer 
Managed 
Device, e.g. 
16KB RAM, 
128KB 
Flash 
Smart Object Registration, 
Discovery and Data Layer 
Service, Device Proxy and 
Cache 
Applications can Discover and 
Interact with devices using Peer- 
Peer networking or through 
Services, using the Same 
Semantics 
Web Applications 
running on Servers, 
Browsers, 
Smartphones, Tablets 
Sensor/ 
Actuator 
Device 
Devices with 
Embedded 
Applications 
Service e.g. 
LWM2M
IPSO Smart Objects And Related IoT Standards 
12 
Application Software 
IPSO Objects 
OMA LWM2M 
CoAP HTTP 
6LowPAN IPV4/IPV6 
802.15.4 WiFi, Ethernet 
MCU – 16KiB RAM MPU 
Application 
Data Models 
API and Services 
Application Protocol 
Routing 
HW Network 
Hardware 
Web Server
IoT Standards That Build On Each Other 
13 
 CoAP and related standards from IETF 
 REST API for constrained networks and devices 
 HTTP Proxy provides abstraction through standard web APIs 
 Core-link-format (RFC 6690) provides semantic descriptors in the form of web links 
 Resource Directory provides an API for scalable discovery and linking using core link-format 
mediatype 
 OMA LWM2M is based on CoAP 
 Provides a server profile for IoT middleware 
 Defines a simple reusable object model 
 Defines management objects and reuses REST API for onboarding and device life cycle 
management 
 IPSO Smart Objects are based on OMA LWM2M 
 Defines application objects using the LWM2M Object Model 
 Complex objects can be composed from simple objects 
 Easy to add new resource and object types as needed
14 
CoAP
CoAP Protocol 
15 
 Makes each device a lightweight server 
that exposes a REST API 
 A CoAP endpoint can be both client and 
server 
 Roles can be reversed and the sensor, as 
a client, can also interact with a REST API 
at another endpoint or server node 
 Peer to Peer interaction is based on a 
duplex client-server pattern
CoAP Use Case Requirements 
16 
REST API 
Less 
Constraine 
d 
Resource 
Constrained
CoAP Scope 
17 
• Transport 
– CoAP currently defines: 
– UDP binding with DTLS security 
– CoAP over SMS or TCP possible 
• Base Messaging 
– Simple message exchange between endpoints 
– Confirmable or Non-Confirmable Message 
– Answered by Acknowledgement or Reset Message 
• REST Semantics 
– REST Request/Response mapped onto CoAP Messages 
– Method, Response Code and Options (URI, content-type etc.) 
define REST exchanges, very similar to HTTP (HTTP 404 
response semantics (not found) mapped to CoAP 4.04 
response code) 
• Asynchronous Notifications 
– Observer option for GET allows asynchronous state update 
responses from a single request – actually a separate IETF 
Draft
CoAP Maps HTTP-like protocol to a binary format 
18
CoAP Example: GET Transaction 
19 
Confirmable Request 
Response with Data Payload
CoAP Proxy Caching 
20
CoAP Asynchronous Notification 
21
Publish-Subscribe Over CoAP (IETF Draft) 
22 
core.pubs 
ub service 
EP1 EP2 
EP3 
Publish 
PUT /pubsub/A 
2.04 Changed 
Publish 
PUT /pubsub/A 
2.04 Changed 
SUBSCRIBE 
GET obs:0 /pubsub/A 
Publish 
2.05 Content obs: 1 
Publish 
2.05 Content obs: 2 
EP4 
SUBSCRIBE 
GET obs:0 /pubsub/A 
Publish 
2.05 Content obs: 2
CoRE Link-Format (RFC 6690) - Web Linking for 
Machines 
23 
 RFC6690 is aimed at Resource Discovery and Linking for M2M 
 Defines semantic link serialization and content-types suitable for M2M 
 Defines a well-known resource where links are stored 
 Enables query string parameters for discovery by attribute and relation 
 Can be used with unicast or multicast (CoAP) 
 Resource Discovery with RFC6690 
 Discovering the links hosted by CoAP (or HTTP) servers 
 GET /.well-known/core?optional_query_string 
 Returns a link-format document 
 URL, resource type, interface type, content-type, size are some basic relations
RFC 6690 CoRE Link-Format Example 
24 
<4001/0/9002>;rt=“oma.lwm2m”;ct=50;obs=1 
Resource Type 
Content Type 
Observable
Local Network Discovery 
25 
CoAP 
Server 
DISCOVERY 
Could use 
multicast 
GET /.well-known/core 
2.05 Content 
Could return a link-format document: 
CoAP 
Client 
</3//9>;obs;rt=“urn:X-ipso:batt-level”;ct=”50”, 
</3//0>;rt=”urn:X-ipso:dev-mdl”;ct=”50”, 
</3//1>;rt=”urn:X-ipso:dev-mfg”;ct=”50”, 
</3305/0/5800>;obs;rt=”urn:X-ipso:pwr-w”;ct=”50”, 
</3305/0/5805>;obs;rt=”urn:X-ipso:pwr-accum-wh”;ct=”50”, 
</3303/0/5700>;obs;rt=”urn:X-ipso:temp-C”;ct=”50”
Resource Discovery 
26 
See draft-ietf-core-resource- 
directory 
• RFC 6690 CoRE Link Format defines 
– The link format media type 
– Peer-to-peer discovery 
• A directory approach is also useful 
– Supports sleeping nodes 
– No multicast traffic, longer battery life 
– Remote lookup, hierarchical and federated distribution 
• CoRE Link Format is used in Resource 
Directories 
– Nodes register their resource links to an RD 
– Nodes refresh the RD periodically 
– Nodes may unregister (remove) their RD entry 
Application 
GET /rd-lookup/ep 
</nodea/sensor/temp> 
</nodeb/actuator/led>
Resource Discovery Example Flow 
27 
See draft-ietf-core-resource-directory 
core.rd 
service 
REGISTRATION 
POST /rd?ep=“235598376”&lt=19999 
</3303/0/5700>;rt=“urn:X-ipso:temp-C” 
Endpoint 
2.01 Created Location:/rd/235598376 
DISCOVERY 
GET /rd-lookup?ep&rt=“urn:X-ipso:temp-C” 
2.05 Content 
</235598376/3303/0/5700>;rt=“urn:X-ipso:temp-C” 
Endpoint
28 
OMA LWM2M
OMA LWM2M Reference Architecture 
29 
 M2M Applications 
 Application abstraction through 
REST API 
 Resource Discovery and Linking 
 LWM2M Server 
 CoAP Protocol 
 Supports HTTP Caching Proxy 
 Resource Directory 
 Gateway and Cloud deployable 
 LWM2M Clients are Devices 
 Device abstraction through CoAP 
 LWM2M Clients are CoAP Servers 
 Any IP network connection
LWM2M Interfaces 
30 
• Bootstrap Interface 
– Configure Servers & Keying 
– Pre-Configured, Smart Card, or Server 
Initiated Bootstrap 
– CoAP REST API 
• Registration Interface 
– RFC6690 and Resource Directory 
• Management Interface Using Objects 
– Management Objects and Resources 
– CoAP REST API 
• Reporting Interface 
– Object Instances and Resources Report 
– Asynchronous notification using CoAP 
Observe
LWM2M Object Model 
31 
• A Client has one or more Object Instances 
• An Object is a collection of Resources 
• A Resource is an atomic piece of information that 
can be 
– Read, Written or Executed 
• Objects can have multiple instances 
• Objects and Resources are identified by a 16-bit 
Integer, Instances by an 8-bit Integer 
• Objects/Resources are accessed with simple URIs: 
/{Object ID}/{Object Instance}/{Resource ID} 
Example: 
/3/0/1 - Object Type=3 (Device), Instance=0, 
Resource Type = 1 (Device Mfg.)
LWM2M Management Objects 
32 
Object Object ID 
LWM2M Security 0 
LWM2M Server 1 
Access Control 2 
Device 3 
Connectivity Monitoring 4 
Firmware 5 
Location 6 
Connectivity Statistics 7
LWM2M Position Object Example, OMA Template 
33
LWM2M Application Server 
34 
Web App 
LWM2M 
Server 
Soft Endpoints 
IP 
Devic 
e 
/domain/endpoints/3303/0/5700 
/3303/0/5700 
IP 
Devic 
e 
LWM2M Clients
LWM2M Application Server 
35 
Web App 
LWM2M 
Server 
/domain/endpoints/3303/0/5700 
IP 
Devic 
e 
/3303/0/5700 
IP 
Devic 
e 
LWM2M Clients
LWM2M Application Server 
36 
Web App 
LWM2M 
Server 
IP 
Devic 
e 
IP 
Devic 
e 
LWM2M Clients
LWM2M Supports Sleeping Endpoints “b=uq” 
 Client uses the registration 
refresh to inform LWM2M 
server that it is awake, 
and listens for any queued 
operations 
37
LWM2M Communication Through NAT Router 
38 
Web App 
http/REST 
Mbed 
Device 
Server 
CoAP 
NAT Router 
IP 
Devic 
e 
IP 
Devic 
e 
HW Device Endpoints
LWM2M Observe Parameters 
 LWM2M provides a mechanism to control Observation 
 “Write Attributes” Interface using query parameters to set observe attributes: 
 Pmin – minimum observation quiet period, to limit notification frequency 
 Pmax – maximum observation quiet period, to guarantee notifications 
 Lt – low limit measurement notification, like low alarm, engineering units 
 Gt – high limit measurement notification, like a high alarm, engineering units 
 Step – Minimum delta change required to notify, in engineering units 
39
LWM2M Bulk Read 
40 
 Returns TLV or JSON based 
on requested content-format 
 CBOR needs to be added 
 Linked Objects are 
supported 
{“e”:[ 
{"n":"0","sv":"Open Mobile Alliance"}, 
{"n":"1","sv":"Lightweight M2M Client"}, 
{"n":"2","sv":"345000123"}, 
{"n":"3","sv":"1.0"}, 
{"n":"6/0","v":"1"}, 
{"n":"6/1","v":"5"}, 
{"n":"7/0","v":"3800"}, 
{"n":"7/1","v":"5000"}, 
{"n":"8/0","v":"125"}, 
{"n":"8/1","v":"900"}, 
{"n":"9","v":"100"}, 
{"n":"10","v":"15"}, 
{"n":"11/0","v":"0"}, 
{"n":"13","v":"1367491215"}, 
{"n":"14","sv":"+02:00"}, 
{"n":"15","sv":"U"}] 
}
LWM2M Discovery Returns RFC 6690 Links 
41 
<4001/0/9002>;rt=“oma.lwm2m”;ct=50;obs=1 
 Links are uploaded during registration to inform the LWM2M 
server about resources on the endpoint 
 Links are discovered using GET with content type 
“application/link-format” 
 JSON representation using content type “application/link-format+ 
json” 
Resource Type 
Content Type 
Observable
42 
IPSO Smart Objects
Smart Objects Use the LWM2M Object Model 
43 
 REST API with a URI template 
 Objects 
 Object Instances 
 Resources 
 (Resource Instances) 
 Reusable resource and object 
IDs 
 Common definitions for concepts 
 Map to semantic terms e.g. 
temperature, currentValue 
 IDs are registered with the OMNA 
 Can be embedded in a path 
hierarchy on the server 
 /home/weather/3303/0/5700 
3303/0/5700 
Object ID, defines object type 
Object Instance, one or more 
Resource ID, defines resource 
type
IPSO Smart Object Example 
44 
Object with 
Internal Resources
IPSO Smart Object Starter Pack 
45
Ad-Hoc IPSO Smart Object – Smart Thermostat 
46
Composite IPSO Smart Objects 
47
IPSO Smart Object Development 
48 
 Smart Objects are Easy to Modify and Customize 
 Based on Consistent Design Patterns and Reusable Resource 
Definitions 
 Object Sets can be Forked and Modified 
 Expecting Domain-Specific Object Sets to be Created by 
Collaborative Vertical Working Groups 
 New Object Sets can be Released as new Smart Object Guidelines 
 Objects in Released Smart Object Guidelines are Registered with the 
OMA, Use Standard OMA DDF (XML) File Format Object Descriptors
IPSO Smart Objects Roadmap 
49 
 More Objects, Domain Specific 
 Gateway Management Objects – TR-069 
 Media Objects 
 HVAC 
 Smart Appliances 
 Mapping and Binding of Smart Objects to Zigbee Application Clusters 
 Mapping and Binding of Smart Objects to Bluetooth Application Profiles 
 Advanced Lighting Objects 
 Behavioral Objects – Timers, Controllers, Rules and Bindings 
 Object Model 
 Linked Composite Objects 
 Semantic Annotation and Application Templates
Ad-Hoc IPSO Smart Object – BLE Heart Rate Sensor 
Profile 
50
Semantic Annotation of Smart Objects 
51 
 Object annotation could use RFC 6690 for associating additional semantic descriptions 
with Smart Objects and Resources 
 Can be used to add contextual metadata and dynamic link relations 
 Described in IETF CoRE Interfaces document (http://datatracker.ietf.org/doc/draft-ietf-core-interfaces), 
enables Discovery by relation and attribute 
 For example, GET /rd-lookup?ep&rt=“urn:X-ipso:temperature” 
Returns: </sensors/3303/0/5700>;obs;if=“urn:X-ipso:sensor”;rt=“urn:X-ipso: 
temperature”;ct=50;u=“ucum:degC” 
 Refers to qualified, resolvable namespaces and concepts 
 Local discovery in .well-known/core or using Resource Directories 
 GET/PUT can use semantic query GET <URL>?rt=“urn:X-ipso:temperature”
Application Templates 
52 
“objects”:{ 
3303:{ 
“description”:”ipso temperature sensor”, 
“attributes”:{“pmin’:60, “pmax”:300, “max-age”:360}, 
“link-attributes”:{“rt”:[”oma.lwm2m”, “urn:X-ipso:temperature”]}, 
“instances”:{ 
0:{ 
“attributes”:{}, 
“link-attributes”:{“rt”:”urn:oma:lwm2m:ext:3303”}, 
“resources”:{ 
5700:{ 
“description”:”Current Measured Value” 
“attributes”:{“pmin”:10,”step”:0.5}, 
“link-attributes”:{“rt”:”ucum:temperature”,”obs”, “ct”:50} 
}, 
5701:{ 
“description”:”units”, 
”value”:”ucum:Cel”, 
“operations”:[“r”] 
}, 
5601:{“description”:”Min Measured Value”,”value”:100}, 
5602:{“description”:”Max Measured Value”,”value”:0}, 
5603:{“description”:”Min Range Value”,”value”:0}, 
5604:{“description”:”Max Range Value”,”value”:100}, 
5605:{“description”:”Reset Min/Max”} 
} 
 JSON templates for instance 
constructor and application schema 
 Interface to high level semantic 
models – not part of the wire 
protocol 
 Example template fragment for 
OMA LWM2M Application 
 Can carry Semantic Annotation as 
link attributes
Summary 
53 
Application Software 
IPSO Smart Objects 
OMA LWM2M 
CoAP 
Not tied to specific device or protocol 
Any Programming Language 
Runs on devices, gateways, and services 
Application Level Interoperability 
Reusable Device to Application API 
Not tied to any specific protocol 
Service Layer Specification 
Device Management over CoAP 
Object Model for DM and Applications 
REST protocol for constrained devices 
IETF Standard (RFC 7252) 
Uses TCP or UDP, any IP connection 
Discovery using IP Multicast or Directory
References 
54 
IPSO Smart Object Guideline 
http://www.ipso-alliance.org/smart-object-guidelines 
OMA LWM2M Specification 
http://openmobilealliance.hs-sites.com/lightweight-m2m-specification-from-oma 
IETF CoAP and Related Specifications 
CoAP (RFC 7252): 
http://tools.ietf.org/html/rfc7252 
CoRE Link-Format (RFC 6690): 
http://tools.ietf.org/html/rfc6690 
CoRE Resource Directory: http://tools.ietf.org/html/draft-ietf-core-resource-directory- 
01 
CoAP Community Site 
http://coap.technology/

Más contenido relacionado

La actualidad más candente

Web 3.0 & IoT (English)
Web 3.0 & IoT (English)Web 3.0 & IoT (English)
Web 3.0 & IoT (English)Peter Waher
 
A basic PPT on Internet Of Things(IOT)
A basic PPT on Internet Of Things(IOT)A basic PPT on Internet Of Things(IOT)
A basic PPT on Internet Of Things(IOT)jaswinder singh thind
 
The Internet of Things (IoT) and its evolution
The Internet of Things (IoT) and its evolutionThe Internet of Things (IoT) and its evolution
The Internet of Things (IoT) and its evolutionSathvik N Prasad
 
Artificial intelligence and IoT
Artificial intelligence and IoTArtificial intelligence and IoT
Artificial intelligence and IoTVeselin Pizurica
 
Seminar report on python 3 course
Seminar report on python 3 courseSeminar report on python 3 course
Seminar report on python 3 courseHimanshuPanwar38
 
Internet of Things with Cloud Computing and M2M Communication
Internet of Things with Cloud Computing and M2M CommunicationInternet of Things with Cloud Computing and M2M Communication
Internet of Things with Cloud Computing and M2M CommunicationSherin C Abraham
 
Prompt Engineering by Dr. Naveed.pdf
Prompt Engineering by Dr. Naveed.pdfPrompt Engineering by Dr. Naveed.pdf
Prompt Engineering by Dr. Naveed.pdfNaveed Ahmed Siddiqui
 
Machine Learning and AI
Machine Learning and AIMachine Learning and AI
Machine Learning and AIJames Serra
 
Introduction to WAMP, a protocol enabling PUB/SUB and RPC over Websocket
Introduction to WAMP, a protocol enabling PUB/SUB and RPC over WebsocketIntroduction to WAMP, a protocol enabling PUB/SUB and RPC over Websocket
Introduction to WAMP, a protocol enabling PUB/SUB and RPC over Websocketsametmax
 
What is chat gpt
What is chat gptWhat is chat gpt
What is chat gptHome
 
LanGCHAIN Framework
LanGCHAIN FrameworkLanGCHAIN Framework
LanGCHAIN FrameworkKeymate.AI
 
TOSCA and OpenTOSCA: TOSCA Introduction and OpenTOSCA Ecosystem Overview
TOSCA and OpenTOSCA: TOSCA Introduction and OpenTOSCA Ecosystem OverviewTOSCA and OpenTOSCA: TOSCA Introduction and OpenTOSCA Ecosystem Overview
TOSCA and OpenTOSCA: TOSCA Introduction and OpenTOSCA Ecosystem OverviewOpenTOSCA
 
Essential Capabilities of an IoT Platform
Essential Capabilities of an IoT PlatformEssential Capabilities of an IoT Platform
Essential Capabilities of an IoT PlatformAmazon Web Services
 
IoT, SDN and Virtualization Meetup - Quiz Questions
IoT, SDN and Virtualization Meetup - Quiz QuestionsIoT, SDN and Virtualization Meetup - Quiz Questions
IoT, SDN and Virtualization Meetup - Quiz QuestionsGanesh Samarthyam
 
R Hadoop integration
R Hadoop integrationR Hadoop integration
R Hadoop integrationDzung Nguyen
 

La actualidad más candente (20)

Web 3.0 & IoT (English)
Web 3.0 & IoT (English)Web 3.0 & IoT (English)
Web 3.0 & IoT (English)
 
Python
PythonPython
Python
 
A basic PPT on Internet Of Things(IOT)
A basic PPT on Internet Of Things(IOT)A basic PPT on Internet Of Things(IOT)
A basic PPT on Internet Of Things(IOT)
 
Machine Learning Applications to IoT
Machine Learning Applications to IoTMachine Learning Applications to IoT
Machine Learning Applications to IoT
 
The Internet of Things (IoT) and its evolution
The Internet of Things (IoT) and its evolutionThe Internet of Things (IoT) and its evolution
The Internet of Things (IoT) and its evolution
 
Artificial intelligence and IoT
Artificial intelligence and IoTArtificial intelligence and IoT
Artificial intelligence and IoT
 
Seminar report on python 3 course
Seminar report on python 3 courseSeminar report on python 3 course
Seminar report on python 3 course
 
Introduction to Scala
Introduction to ScalaIntroduction to Scala
Introduction to Scala
 
Internet of Things with Cloud Computing and M2M Communication
Internet of Things with Cloud Computing and M2M CommunicationInternet of Things with Cloud Computing and M2M Communication
Internet of Things with Cloud Computing and M2M Communication
 
Prompt Engineering by Dr. Naveed.pdf
Prompt Engineering by Dr. Naveed.pdfPrompt Engineering by Dr. Naveed.pdf
Prompt Engineering by Dr. Naveed.pdf
 
Machine Learning and AI
Machine Learning and AIMachine Learning and AI
Machine Learning and AI
 
Introduction to WAMP, a protocol enabling PUB/SUB and RPC over Websocket
Introduction to WAMP, a protocol enabling PUB/SUB and RPC over WebsocketIntroduction to WAMP, a protocol enabling PUB/SUB and RPC over Websocket
Introduction to WAMP, a protocol enabling PUB/SUB and RPC over Websocket
 
What is chat gpt
What is chat gptWhat is chat gpt
What is chat gpt
 
IoT Networking Part 2
IoT Networking Part 2IoT Networking Part 2
IoT Networking Part 2
 
IBM Watson Overview
IBM Watson OverviewIBM Watson Overview
IBM Watson Overview
 
LanGCHAIN Framework
LanGCHAIN FrameworkLanGCHAIN Framework
LanGCHAIN Framework
 
TOSCA and OpenTOSCA: TOSCA Introduction and OpenTOSCA Ecosystem Overview
TOSCA and OpenTOSCA: TOSCA Introduction and OpenTOSCA Ecosystem OverviewTOSCA and OpenTOSCA: TOSCA Introduction and OpenTOSCA Ecosystem Overview
TOSCA and OpenTOSCA: TOSCA Introduction and OpenTOSCA Ecosystem Overview
 
Essential Capabilities of an IoT Platform
Essential Capabilities of an IoT PlatformEssential Capabilities of an IoT Platform
Essential Capabilities of an IoT Platform
 
IoT, SDN and Virtualization Meetup - Quiz Questions
IoT, SDN and Virtualization Meetup - Quiz QuestionsIoT, SDN and Virtualization Meetup - Quiz Questions
IoT, SDN and Virtualization Meetup - Quiz Questions
 
R Hadoop integration
R Hadoop integrationR Hadoop integration
R Hadoop integration
 

Destacado

Iot Toolkit and the Smart Object API - Architecture for Interoperability
Iot Toolkit and the Smart Object API - Architecture for InteroperabilityIot Toolkit and the Smart Object API - Architecture for Interoperability
Iot Toolkit and the Smart Object API - Architecture for InteroperabilityMichael Koster
 
ARM CoAP Tutorial
ARM CoAP TutorialARM CoAP Tutorial
ARM CoAP Tutorialzdshelby
 
Tools for the Open Source Internet of Things
Tools for the Open Source Internet of ThingsTools for the Open Source Internet of Things
Tools for the Open Source Internet of ThingsMichael Koster
 
CoAP, Copper, and Embedded Web Resources
CoAP, Copper, and Embedded Web ResourcesCoAP, Copper, and Embedded Web Resources
CoAP, Copper, and Embedded Web ResourcesMatthias Kovatsch
 
Elements of Connected Products
Elements of Connected ProductsElements of Connected Products
Elements of Connected ProductsJordan Husney
 
Parabol Angel Pitch Deck
Parabol Angel Pitch DeckParabol Angel Pitch Deck
Parabol Angel Pitch DeckJordan Husney
 
IoT Standards are Stupid, Just Ship Something
IoT Standards are Stupid, Just Ship SomethingIoT Standards are Stupid, Just Ship Something
IoT Standards are Stupid, Just Ship SomethingJordan Husney
 
IoT Toolkit and the Smart Object API Tutorial Introduction
IoT Toolkit and the Smart Object API Tutorial IntroductionIoT Toolkit and the Smart Object API Tutorial Introduction
IoT Toolkit and the Smart Object API Tutorial IntroductionMichael Koster
 
Open-source IoT cookbook
Open-source IoT cookbookOpen-source IoT cookbook
Open-source IoT cookbookBenjamin Cabé
 
Open Source and Open Standards
Open Source and Open StandardsOpen Source and Open Standards
Open Source and Open StandardsJonathan Jeon
 
Ietf91 ad hoc-coap-lwm2m-ipso
Ietf91 ad hoc-coap-lwm2m-ipsoIetf91 ad hoc-coap-lwm2m-ipso
Ietf91 ad hoc-coap-lwm2m-ipsoMichael Koster
 
Ipso smart object seminar
Ipso smart object seminarIpso smart object seminar
Ipso smart object seminarMichael Koster
 
IoT Standards & Ecosystem
IoT Standards & EcosystemIoT Standards & Ecosystem
IoT Standards & EcosystemHarish Vadada
 
IoT Toolkit and the Smart Object API - Architecture for Interoperability
IoT Toolkit and the Smart Object API - Architecture for InteroperabilityIoT Toolkit and the Smart Object API - Architecture for Interoperability
IoT Toolkit and the Smart Object API - Architecture for InteroperabilityMichael Koster
 
OMA LwM2M Workshop - Friedhelm Rodermund, OMA LwM2M in the IoT Space
OMA LwM2M Workshop - Friedhelm Rodermund, OMA LwM2M in the IoT SpaceOMA LwM2M Workshop - Friedhelm Rodermund, OMA LwM2M in the IoT Space
OMA LwM2M Workshop - Friedhelm Rodermund, OMA LwM2M in the IoT SpaceOpen Mobile Alliance
 
MQTT - REST Bridge using the Smart Object API
MQTT - REST Bridge using the Smart Object APIMQTT - REST Bridge using the Smart Object API
MQTT - REST Bridge using the Smart Object APIMichael Koster
 
M2M Protocol Interoperability using IoT Toolkit
M2M Protocol Interoperability using IoT ToolkitM2M Protocol Interoperability using IoT Toolkit
M2M Protocol Interoperability using IoT ToolkitMichael Koster
 
Linked Data (in low-resource) Platforms: a mapping for Constrained Applicatio...
Linked Data (in low-resource) Platforms: a mapping for Constrained Applicatio...Linked Data (in low-resource) Platforms: a mapping for Constrained Applicatio...
Linked Data (in low-resource) Platforms: a mapping for Constrained Applicatio...SisInfLab-SWoT @Politecnico di Bari
 

Destacado (20)

Iot Toolkit and the Smart Object API - Architecture for Interoperability
Iot Toolkit and the Smart Object API - Architecture for InteroperabilityIot Toolkit and the Smart Object API - Architecture for Interoperability
Iot Toolkit and the Smart Object API - Architecture for Interoperability
 
ARM CoAP Tutorial
ARM CoAP TutorialARM CoAP Tutorial
ARM CoAP Tutorial
 
Tools for the Open Source Internet of Things
Tools for the Open Source Internet of ThingsTools for the Open Source Internet of Things
Tools for the Open Source Internet of Things
 
CoAP, Copper, and Embedded Web Resources
CoAP, Copper, and Embedded Web ResourcesCoAP, Copper, and Embedded Web Resources
CoAP, Copper, and Embedded Web Resources
 
Elements of Connected Products
Elements of Connected ProductsElements of Connected Products
Elements of Connected Products
 
Parabol Angel Pitch Deck
Parabol Angel Pitch DeckParabol Angel Pitch Deck
Parabol Angel Pitch Deck
 
IoT Standards are Stupid, Just Ship Something
IoT Standards are Stupid, Just Ship SomethingIoT Standards are Stupid, Just Ship Something
IoT Standards are Stupid, Just Ship Something
 
IoT Toolkit and the Smart Object API Tutorial Introduction
IoT Toolkit and the Smart Object API Tutorial IntroductionIoT Toolkit and the Smart Object API Tutorial Introduction
IoT Toolkit and the Smart Object API Tutorial Introduction
 
Open-source IoT cookbook
Open-source IoT cookbookOpen-source IoT cookbook
Open-source IoT cookbook
 
Open Source and Open Standards
Open Source and Open StandardsOpen Source and Open Standards
Open Source and Open Standards
 
Ietf91 ad hoc-coap-lwm2m-ipso
Ietf91 ad hoc-coap-lwm2m-ipsoIetf91 ad hoc-coap-lwm2m-ipso
Ietf91 ad hoc-coap-lwm2m-ipso
 
Ipso smart object seminar
Ipso smart object seminarIpso smart object seminar
Ipso smart object seminar
 
IoT Standards & Ecosystem
IoT Standards & EcosystemIoT Standards & Ecosystem
IoT Standards & Ecosystem
 
IoT Toolkit and the Smart Object API - Architecture for Interoperability
IoT Toolkit and the Smart Object API - Architecture for InteroperabilityIoT Toolkit and the Smart Object API - Architecture for Interoperability
IoT Toolkit and the Smart Object API - Architecture for Interoperability
 
Iottoolkit osiot
Iottoolkit osiotIottoolkit osiot
Iottoolkit osiot
 
OMA LwM2M Workshop - Friedhelm Rodermund, OMA LwM2M in the IoT Space
OMA LwM2M Workshop - Friedhelm Rodermund, OMA LwM2M in the IoT SpaceOMA LwM2M Workshop - Friedhelm Rodermund, OMA LwM2M in the IoT Space
OMA LwM2M Workshop - Friedhelm Rodermund, OMA LwM2M in the IoT Space
 
MQTT - REST Bridge using the Smart Object API
MQTT - REST Bridge using the Smart Object APIMQTT - REST Bridge using the Smart Object API
MQTT - REST Bridge using the Smart Object API
 
Iottoolkit wot
Iottoolkit wotIottoolkit wot
Iottoolkit wot
 
M2M Protocol Interoperability using IoT Toolkit
M2M Protocol Interoperability using IoT ToolkitM2M Protocol Interoperability using IoT Toolkit
M2M Protocol Interoperability using IoT Toolkit
 
Linked Data (in low-resource) Platforms: a mapping for Constrained Applicatio...
Linked Data (in low-resource) Platforms: a mapping for Constrained Applicatio...Linked Data (in low-resource) Platforms: a mapping for Constrained Applicatio...
Linked Data (in low-resource) Platforms: a mapping for Constrained Applicatio...
 

Similar a IP based standards for IoT

Hypermedia for Machine APIs
Hypermedia for Machine APIsHypermedia for Machine APIs
Hypermedia for Machine APIsMichael Koster
 
Ietf91 ad hoc-coap-lwm2m-ipso
Ietf91 ad hoc-coap-lwm2m-ipsoIetf91 ad hoc-coap-lwm2m-ipso
Ietf91 ad hoc-coap-lwm2m-ipsoMichael Koster
 
Ietf91 ad hoc-coap-lwm2m-ipso
Ietf91 ad hoc-coap-lwm2m-ipsoIetf91 ad hoc-coap-lwm2m-ipso
Ietf91 ad hoc-coap-lwm2m-ipsoMichael Koster
 
Web of Things to the edge
Web of Things to the edgeWeb of Things to the edge
Web of Things to the edgeMichael Koster
 
IRJET- Rest API for E-Commerce Site
IRJET- Rest API for E-Commerce SiteIRJET- Rest API for E-Commerce Site
IRJET- Rest API for E-Commerce SiteIRJET Journal
 
Mphasis Digital POV - Emerging Open Standard Protocol stack for IoT
Mphasis Digital POV - Emerging Open Standard Protocol stack for IoTMphasis Digital POV - Emerging Open Standard Protocol stack for IoT
Mphasis Digital POV - Emerging Open Standard Protocol stack for IoTAniruddha Chakrabarti
 
ASP.NET Mvc 4 web api
ASP.NET Mvc 4 web apiASP.NET Mvc 4 web api
ASP.NET Mvc 4 web apiTiago Knoch
 
Semantic Web Servers
Semantic Web ServersSemantic Web Servers
Semantic Web Serverswebhostingguy
 
04.m3 cms streaming-protocol
04.m3 cms streaming-protocol04.m3 cms streaming-protocol
04.m3 cms streaming-protocoltarensi
 
Phalcon 2 High Performance APIs - DevWeekPOA 2015
Phalcon 2 High Performance APIs - DevWeekPOA 2015Phalcon 2 High Performance APIs - DevWeekPOA 2015
Phalcon 2 High Performance APIs - DevWeekPOA 2015Jackson F. de A. Mafra
 
Session 8 Android Web Services - Part 1.pdf
Session 8 Android Web Services - Part 1.pdfSession 8 Android Web Services - Part 1.pdf
Session 8 Android Web Services - Part 1.pdfEngmohammedAlzared
 
CCNA-Open-Platform-IoT
CCNA-Open-Platform-IoTCCNA-Open-Platform-IoT
CCNA-Open-Platform-IoTMichael Koster
 
Internet-Of-Things-For-Smart-Cities
Internet-Of-Things-For-Smart-CitiesInternet-Of-Things-For-Smart-Cities
Internet-Of-Things-For-Smart-CitiesSitakanta Mishra
 
IOT15_Unit6.pptx
IOT15_Unit6.pptxIOT15_Unit6.pptx
IOT15_Unit6.pptxsuptel
 

Similar a IP based standards for IoT (20)

Embedded to connected
Embedded to connectedEmbedded to connected
Embedded to connected
 
Ipso eclipse-summary
Ipso eclipse-summaryIpso eclipse-summary
Ipso eclipse-summary
 
Hypermedia for Machine APIs
Hypermedia for Machine APIsHypermedia for Machine APIs
Hypermedia for Machine APIs
 
Ietf91 ad hoc-coap-lwm2m-ipso
Ietf91 ad hoc-coap-lwm2m-ipsoIetf91 ad hoc-coap-lwm2m-ipso
Ietf91 ad hoc-coap-lwm2m-ipso
 
Ietf91 ad hoc-coap-lwm2m-ipso
Ietf91 ad hoc-coap-lwm2m-ipsoIetf91 ad hoc-coap-lwm2m-ipso
Ietf91 ad hoc-coap-lwm2m-ipso
 
Web of Things to the edge
Web of Things to the edgeWeb of Things to the edge
Web of Things to the edge
 
Design patternsforiot
Design patternsforiotDesign patternsforiot
Design patternsforiot
 
IRJET- Rest API for E-Commerce Site
IRJET- Rest API for E-Commerce SiteIRJET- Rest API for E-Commerce Site
IRJET- Rest API for E-Commerce Site
 
Mphasis Digital POV - Emerging Open Standard Protocol stack for IoT
Mphasis Digital POV - Emerging Open Standard Protocol stack for IoTMphasis Digital POV - Emerging Open Standard Protocol stack for IoT
Mphasis Digital POV - Emerging Open Standard Protocol stack for IoT
 
Api 101
Api 101Api 101
Api 101
 
Unit 2
Unit 2Unit 2
Unit 2
 
CoAP - Web Protocol for IoT
CoAP - Web Protocol for IoTCoAP - Web Protocol for IoT
CoAP - Web Protocol for IoT
 
ASP.NET Mvc 4 web api
ASP.NET Mvc 4 web apiASP.NET Mvc 4 web api
ASP.NET Mvc 4 web api
 
Semantic Web Servers
Semantic Web ServersSemantic Web Servers
Semantic Web Servers
 
04.m3 cms streaming-protocol
04.m3 cms streaming-protocol04.m3 cms streaming-protocol
04.m3 cms streaming-protocol
 
Phalcon 2 High Performance APIs - DevWeekPOA 2015
Phalcon 2 High Performance APIs - DevWeekPOA 2015Phalcon 2 High Performance APIs - DevWeekPOA 2015
Phalcon 2 High Performance APIs - DevWeekPOA 2015
 
Session 8 Android Web Services - Part 1.pdf
Session 8 Android Web Services - Part 1.pdfSession 8 Android Web Services - Part 1.pdf
Session 8 Android Web Services - Part 1.pdf
 
CCNA-Open-Platform-IoT
CCNA-Open-Platform-IoTCCNA-Open-Platform-IoT
CCNA-Open-Platform-IoT
 
Internet-Of-Things-For-Smart-Cities
Internet-Of-Things-For-Smart-CitiesInternet-Of-Things-For-Smart-Cities
Internet-Of-Things-For-Smart-Cities
 
IOT15_Unit6.pptx
IOT15_Unit6.pptxIOT15_Unit6.pptx
IOT15_Unit6.pptx
 

Más de Michael Koster

Hypermedia System Architecture for a Web of Things
Hypermedia System Architecture for a Web of ThingsHypermedia System Architecture for a Web of Things
Hypermedia System Architecture for a Web of ThingsMichael Koster
 
Hypermedia design for machine apis
Hypermedia design for machine apisHypermedia design for machine apis
Hypermedia design for machine apisMichael Koster
 
Ipso smart objects for iot
Ipso smart objects for iotIpso smart objects for iot
Ipso smart objects for iotMichael Koster
 
Ipso application templates
Ipso application templatesIpso application templates
Ipso application templatesMichael Koster
 
REST APIs for an Internet of Things
REST APIs for an Internet of ThingsREST APIs for an Internet of Things
REST APIs for an Internet of ThingsMichael Koster
 
A Modular Open Source Platform for IoT
A Modular Open Source Platform for IoTA Modular Open Source Platform for IoT
A Modular Open Source Platform for IoTMichael Koster
 
M2M Protocol Interoperability using IoT Toolkit
M2M Protocol Interoperability using IoT ToolkitM2M Protocol Interoperability using IoT Toolkit
M2M Protocol Interoperability using IoT ToolkitMichael Koster
 
MQTT REST Bridge using the Smart Object API
MQTT REST Bridge using the Smart Object APIMQTT REST Bridge using the Smart Object API
MQTT REST Bridge using the Smart Object APIMichael Koster
 
The Network Effect - Open Source and the Internet Of Things - Helsinki Keynote
The Network Effect - Open Source and the Internet Of Things - Helsinki KeynoteThe Network Effect - Open Source and the Internet Of Things - Helsinki Keynote
The Network Effect - Open Source and the Internet Of Things - Helsinki KeynoteMichael Koster
 
IoT Toolkit and the Smart Object API - Architecture for Interoperability
IoT Toolkit and the Smart Object API - Architecture for InteroperabilityIoT Toolkit and the Smart Object API - Architecture for Interoperability
IoT Toolkit and the Smart Object API - Architecture for InteroperabilityMichael Koster
 
Open Standards for IoT - GSM Workshop on IoT Standards Atlanta 2013
Open Standards for IoT - GSM Workshop on IoT Standards Atlanta 2013Open Standards for IoT - GSM Workshop on IoT Standards Atlanta 2013
Open Standards for IoT - GSM Workshop on IoT Standards Atlanta 2013Michael Koster
 
Personal Agency on the IoT
Personal Agency on the IoTPersonal Agency on the IoT
Personal Agency on the IoTMichael Koster
 
Open Horizontal Platform - Web Scale Interoperability for the Internet of Thi...
Open Horizontal Platform - Web Scale Interoperability for the Internet of Thi...Open Horizontal Platform - Web Scale Interoperability for the Internet of Thi...
Open Horizontal Platform - Web Scale Interoperability for the Internet of Thi...Michael Koster
 
A Modular Open Source Platform for Web Scale IoT Interoperability
A Modular Open Source Platform for Web Scale IoT InteroperabilityA Modular Open Source Platform for Web Scale IoT Interoperability
A Modular Open Source Platform for Web Scale IoT InteroperabilityMichael Koster
 
Object models for interoperability
Object models for interoperabilityObject models for interoperability
Object models for interoperabilityMichael Koster
 
Friend Of A Thing and IoT Resource access control #OSIOT
Friend Of A Thing and IoT Resource access control #OSIOTFriend Of A Thing and IoT Resource access control #OSIOT
Friend Of A Thing and IoT Resource access control #OSIOTMichael Koster
 

Más de Michael Koster (18)

Hypermedia System Architecture for a Web of Things
Hypermedia System Architecture for a Web of ThingsHypermedia System Architecture for a Web of Things
Hypermedia System Architecture for a Web of Things
 
Hypermedia design for machine apis
Hypermedia design for machine apisHypermedia design for machine apis
Hypermedia design for machine apis
 
Osiot14 buildout
Osiot14 buildoutOsiot14 buildout
Osiot14 buildout
 
Osiot13 IoT buildout
Osiot13 IoT buildoutOsiot13 IoT buildout
Osiot13 IoT buildout
 
Ipso smart objects for iot
Ipso smart objects for iotIpso smart objects for iot
Ipso smart objects for iot
 
Ipso application templates
Ipso application templatesIpso application templates
Ipso application templates
 
REST APIs for an Internet of Things
REST APIs for an Internet of ThingsREST APIs for an Internet of Things
REST APIs for an Internet of Things
 
A Modular Open Source Platform for IoT
A Modular Open Source Platform for IoTA Modular Open Source Platform for IoT
A Modular Open Source Platform for IoT
 
M2M Protocol Interoperability using IoT Toolkit
M2M Protocol Interoperability using IoT ToolkitM2M Protocol Interoperability using IoT Toolkit
M2M Protocol Interoperability using IoT Toolkit
 
MQTT REST Bridge using the Smart Object API
MQTT REST Bridge using the Smart Object APIMQTT REST Bridge using the Smart Object API
MQTT REST Bridge using the Smart Object API
 
The Network Effect - Open Source and the Internet Of Things - Helsinki Keynote
The Network Effect - Open Source and the Internet Of Things - Helsinki KeynoteThe Network Effect - Open Source and the Internet Of Things - Helsinki Keynote
The Network Effect - Open Source and the Internet Of Things - Helsinki Keynote
 
IoT Toolkit and the Smart Object API - Architecture for Interoperability
IoT Toolkit and the Smart Object API - Architecture for InteroperabilityIoT Toolkit and the Smart Object API - Architecture for Interoperability
IoT Toolkit and the Smart Object API - Architecture for Interoperability
 
Open Standards for IoT - GSM Workshop on IoT Standards Atlanta 2013
Open Standards for IoT - GSM Workshop on IoT Standards Atlanta 2013Open Standards for IoT - GSM Workshop on IoT Standards Atlanta 2013
Open Standards for IoT - GSM Workshop on IoT Standards Atlanta 2013
 
Personal Agency on the IoT
Personal Agency on the IoTPersonal Agency on the IoT
Personal Agency on the IoT
 
Open Horizontal Platform - Web Scale Interoperability for the Internet of Thi...
Open Horizontal Platform - Web Scale Interoperability for the Internet of Thi...Open Horizontal Platform - Web Scale Interoperability for the Internet of Thi...
Open Horizontal Platform - Web Scale Interoperability for the Internet of Thi...
 
A Modular Open Source Platform for Web Scale IoT Interoperability
A Modular Open Source Platform for Web Scale IoT InteroperabilityA Modular Open Source Platform for Web Scale IoT Interoperability
A Modular Open Source Platform for Web Scale IoT Interoperability
 
Object models for interoperability
Object models for interoperabilityObject models for interoperability
Object models for interoperability
 
Friend Of A Thing and IoT Resource access control #OSIOT
Friend Of A Thing and IoT Resource access control #OSIOTFriend Of A Thing and IoT Resource access control #OSIOT
Friend Of A Thing and IoT Resource access control #OSIOT
 

Último

Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.soniya singh
 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...singhpriety023
 
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445ruhi
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)Delhi Call girls
 
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...SUHANI PANDEY
 
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...roncy bisnoi
 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Servicegwenoracqe6
 
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...SUHANI PANDEY
 
Real Escorts in Al Nahda +971524965298 Dubai Escorts Service
Real Escorts in Al Nahda +971524965298 Dubai Escorts ServiceReal Escorts in Al Nahda +971524965298 Dubai Escorts Service
Real Escorts in Al Nahda +971524965298 Dubai Escorts ServiceEscorts Call Girls
 
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceDelhi Call girls
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableSeo
 
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...nilamkumrai
 
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.soniya singh
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirtrahman018755
 
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceBusty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceDelhi Call girls
 
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Delhi Call girls
 

Último (20)

VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
 
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
 
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
 
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
 
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
 
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
 
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
 
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
 
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
 
Real Escorts in Al Nahda +971524965298 Dubai Escorts Service
Real Escorts in Al Nahda +971524965298 Dubai Escorts ServiceReal Escorts in Al Nahda +971524965298 Dubai Escorts Service
Real Escorts in Al Nahda +971524965298 Dubai Escorts Service
 
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
 
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
 
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceBusty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
 
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
 

IP based standards for IoT

  • 1. 1 IP Based Architecture for the Internet of Things November 20, 2014 IPV6 and Related Standards for IoT Interoperability
  • 2. IoT Architecture – Problems to Solve 2  Interoperability  In the way in which software interacts with physical resources  Decouple IoT devices from the software that manages them  Discovery, Management and Reporting, Security, Authorization  Scalability  Large number of devices, users, interactions, connections  Scale-less interaction  Technology Reuse and Modularity  Software, networks, protocols, data models  Across vendors in a vertical application segment  Across diverse vertical application segments  Low Barrier to Innovation  Anyone can participate and innovate
  • 3. These Problems are Already Solved 3  In the context of the Internet and the WWW  Any Web Browser works with any web service, more or less  Regardless of wire protocols used in the network  Regardless of the data models and content types  Across vertical application segments  The WWW scales to planetary size  Low barrier to Innovation  We want the same qualities for IoT  What are the important design patterns in Internet and WWW Architecture?  How can these design patterns apply to IoT?
  • 4. Internet and WWW Design Patterns  Narrow Waist, endpoint oriented 4  Innovation happens at the endpoints, enabled by common, openly available network protocols (the narrow waist)  Layered Protocols  Common set of IP protocols (TCP, UDP) abstract the lower communication layers  Common Application Protocols (HTTP, REST) abstract resources  Uniform Addressing  URIs and Hyperlinks point to resources  IP Addresses, DNS names are globally unique  Stateless Interaction  Client-Server pattern  Hypermedia As The Engine Of Application State
  • 5. How Does it Apply to IoT? 5  Internet Protocol (IP) on Constrained Devices  Machine to Machine (M2M) Application Protocols  Standard Object Models and Data Models  Hypermedia for Machine APIs
  • 6. IP on Constrained Devices 6 CoAP HTTP 6LowPAN IPV4/IPV6 802.15.4 WiFi, Ethernet MCU – 16KiB RAM MPU Application Protocol Routing HW Network Hardware
  • 7. Machine to Machine Application Protocols 7  CoAP and Related IETF Standards  Machine to Machine (M2M) protocol modeled after HTTP  Compressed Binary mapping of REST API protocol  Asynchronous Notifications to support M2M use cases  Format for Machine Hyperlinks, CoRE Link-Format  HTTP  Useful for less resource constrained environments  Works with existing libraries and servers  Well known extensions for asynchronous notification
  • 8. Object Models and Data Models 8  IPSO Smart Objects  Object/Resource URI template for M2M REST API  Defines Structure and Data Types for functionally specialized objects  E.g. Temperature Sensor, Light Controller, Load Controller  Compatible with CoAP, HTTP, and other underlying protocols  Others being considered by various IoT Interest Groups (IOTWF, IIC, OIC)  W3C Community group on Web of Things considering work on data models
  • 9. Hypermedia for Machine APIs 9  CoRE Link-Format  Format for Semantic Hyperlinks that describe resources  Mechanism for embedding links within data sources  CoRE Resource Directory  Centralized directory to store Semantic Hyperlinks registered by devices  Mechanism for applications to discover resources by link attribute  IPSO Smart Objects  Self-contained description in URI schema  Hypercat  Catalog format for general purpose Semantic Hyperlinks
  • 10. IPSO Smart Objects 10  A simple Data Model for  Semantic Interoperability across IoT Devices  Requires only simple URI addressing and a few data types  Mapping to internet content-types  Usable on many different transport protocols (CoAP, HTTP, MQTT)  This presentation discusses the architecture and features of a feature rich implementation of IPSO Smart Objects on constrained devices and networks using CoAP and OMA LWM2M
  • 11. IPSO Smart Object Architecture Use Cases 11 Web Application Application Application Service e.g. LWM2M Server Client Peer- Peer Managed Device, e.g. 16KB RAM, 128KB Flash Smart Object Registration, Discovery and Data Layer Service, Device Proxy and Cache Applications can Discover and Interact with devices using Peer- Peer networking or through Services, using the Same Semantics Web Applications running on Servers, Browsers, Smartphones, Tablets Sensor/ Actuator Device Devices with Embedded Applications Service e.g. LWM2M
  • 12. IPSO Smart Objects And Related IoT Standards 12 Application Software IPSO Objects OMA LWM2M CoAP HTTP 6LowPAN IPV4/IPV6 802.15.4 WiFi, Ethernet MCU – 16KiB RAM MPU Application Data Models API and Services Application Protocol Routing HW Network Hardware Web Server
  • 13. IoT Standards That Build On Each Other 13  CoAP and related standards from IETF  REST API for constrained networks and devices  HTTP Proxy provides abstraction through standard web APIs  Core-link-format (RFC 6690) provides semantic descriptors in the form of web links  Resource Directory provides an API for scalable discovery and linking using core link-format mediatype  OMA LWM2M is based on CoAP  Provides a server profile for IoT middleware  Defines a simple reusable object model  Defines management objects and reuses REST API for onboarding and device life cycle management  IPSO Smart Objects are based on OMA LWM2M  Defines application objects using the LWM2M Object Model  Complex objects can be composed from simple objects  Easy to add new resource and object types as needed
  • 15. CoAP Protocol 15  Makes each device a lightweight server that exposes a REST API  A CoAP endpoint can be both client and server  Roles can be reversed and the sensor, as a client, can also interact with a REST API at another endpoint or server node  Peer to Peer interaction is based on a duplex client-server pattern
  • 16. CoAP Use Case Requirements 16 REST API Less Constraine d Resource Constrained
  • 17. CoAP Scope 17 • Transport – CoAP currently defines: – UDP binding with DTLS security – CoAP over SMS or TCP possible • Base Messaging – Simple message exchange between endpoints – Confirmable or Non-Confirmable Message – Answered by Acknowledgement or Reset Message • REST Semantics – REST Request/Response mapped onto CoAP Messages – Method, Response Code and Options (URI, content-type etc.) define REST exchanges, very similar to HTTP (HTTP 404 response semantics (not found) mapped to CoAP 4.04 response code) • Asynchronous Notifications – Observer option for GET allows asynchronous state update responses from a single request – actually a separate IETF Draft
  • 18. CoAP Maps HTTP-like protocol to a binary format 18
  • 19. CoAP Example: GET Transaction 19 Confirmable Request Response with Data Payload
  • 22. Publish-Subscribe Over CoAP (IETF Draft) 22 core.pubs ub service EP1 EP2 EP3 Publish PUT /pubsub/A 2.04 Changed Publish PUT /pubsub/A 2.04 Changed SUBSCRIBE GET obs:0 /pubsub/A Publish 2.05 Content obs: 1 Publish 2.05 Content obs: 2 EP4 SUBSCRIBE GET obs:0 /pubsub/A Publish 2.05 Content obs: 2
  • 23. CoRE Link-Format (RFC 6690) - Web Linking for Machines 23  RFC6690 is aimed at Resource Discovery and Linking for M2M  Defines semantic link serialization and content-types suitable for M2M  Defines a well-known resource where links are stored  Enables query string parameters for discovery by attribute and relation  Can be used with unicast or multicast (CoAP)  Resource Discovery with RFC6690  Discovering the links hosted by CoAP (or HTTP) servers  GET /.well-known/core?optional_query_string  Returns a link-format document  URL, resource type, interface type, content-type, size are some basic relations
  • 24. RFC 6690 CoRE Link-Format Example 24 <4001/0/9002>;rt=“oma.lwm2m”;ct=50;obs=1 Resource Type Content Type Observable
  • 25. Local Network Discovery 25 CoAP Server DISCOVERY Could use multicast GET /.well-known/core 2.05 Content Could return a link-format document: CoAP Client </3//9>;obs;rt=“urn:X-ipso:batt-level”;ct=”50”, </3//0>;rt=”urn:X-ipso:dev-mdl”;ct=”50”, </3//1>;rt=”urn:X-ipso:dev-mfg”;ct=”50”, </3305/0/5800>;obs;rt=”urn:X-ipso:pwr-w”;ct=”50”, </3305/0/5805>;obs;rt=”urn:X-ipso:pwr-accum-wh”;ct=”50”, </3303/0/5700>;obs;rt=”urn:X-ipso:temp-C”;ct=”50”
  • 26. Resource Discovery 26 See draft-ietf-core-resource- directory • RFC 6690 CoRE Link Format defines – The link format media type – Peer-to-peer discovery • A directory approach is also useful – Supports sleeping nodes – No multicast traffic, longer battery life – Remote lookup, hierarchical and federated distribution • CoRE Link Format is used in Resource Directories – Nodes register their resource links to an RD – Nodes refresh the RD periodically – Nodes may unregister (remove) their RD entry Application GET /rd-lookup/ep </nodea/sensor/temp> </nodeb/actuator/led>
  • 27. Resource Discovery Example Flow 27 See draft-ietf-core-resource-directory core.rd service REGISTRATION POST /rd?ep=“235598376”&lt=19999 </3303/0/5700>;rt=“urn:X-ipso:temp-C” Endpoint 2.01 Created Location:/rd/235598376 DISCOVERY GET /rd-lookup?ep&rt=“urn:X-ipso:temp-C” 2.05 Content </235598376/3303/0/5700>;rt=“urn:X-ipso:temp-C” Endpoint
  • 29. OMA LWM2M Reference Architecture 29  M2M Applications  Application abstraction through REST API  Resource Discovery and Linking  LWM2M Server  CoAP Protocol  Supports HTTP Caching Proxy  Resource Directory  Gateway and Cloud deployable  LWM2M Clients are Devices  Device abstraction through CoAP  LWM2M Clients are CoAP Servers  Any IP network connection
  • 30. LWM2M Interfaces 30 • Bootstrap Interface – Configure Servers & Keying – Pre-Configured, Smart Card, or Server Initiated Bootstrap – CoAP REST API • Registration Interface – RFC6690 and Resource Directory • Management Interface Using Objects – Management Objects and Resources – CoAP REST API • Reporting Interface – Object Instances and Resources Report – Asynchronous notification using CoAP Observe
  • 31. LWM2M Object Model 31 • A Client has one or more Object Instances • An Object is a collection of Resources • A Resource is an atomic piece of information that can be – Read, Written or Executed • Objects can have multiple instances • Objects and Resources are identified by a 16-bit Integer, Instances by an 8-bit Integer • Objects/Resources are accessed with simple URIs: /{Object ID}/{Object Instance}/{Resource ID} Example: /3/0/1 - Object Type=3 (Device), Instance=0, Resource Type = 1 (Device Mfg.)
  • 32. LWM2M Management Objects 32 Object Object ID LWM2M Security 0 LWM2M Server 1 Access Control 2 Device 3 Connectivity Monitoring 4 Firmware 5 Location 6 Connectivity Statistics 7
  • 33. LWM2M Position Object Example, OMA Template 33
  • 34. LWM2M Application Server 34 Web App LWM2M Server Soft Endpoints IP Devic e /domain/endpoints/3303/0/5700 /3303/0/5700 IP Devic e LWM2M Clients
  • 35. LWM2M Application Server 35 Web App LWM2M Server /domain/endpoints/3303/0/5700 IP Devic e /3303/0/5700 IP Devic e LWM2M Clients
  • 36. LWM2M Application Server 36 Web App LWM2M Server IP Devic e IP Devic e LWM2M Clients
  • 37. LWM2M Supports Sleeping Endpoints “b=uq”  Client uses the registration refresh to inform LWM2M server that it is awake, and listens for any queued operations 37
  • 38. LWM2M Communication Through NAT Router 38 Web App http/REST Mbed Device Server CoAP NAT Router IP Devic e IP Devic e HW Device Endpoints
  • 39. LWM2M Observe Parameters  LWM2M provides a mechanism to control Observation  “Write Attributes” Interface using query parameters to set observe attributes:  Pmin – minimum observation quiet period, to limit notification frequency  Pmax – maximum observation quiet period, to guarantee notifications  Lt – low limit measurement notification, like low alarm, engineering units  Gt – high limit measurement notification, like a high alarm, engineering units  Step – Minimum delta change required to notify, in engineering units 39
  • 40. LWM2M Bulk Read 40  Returns TLV or JSON based on requested content-format  CBOR needs to be added  Linked Objects are supported {“e”:[ {"n":"0","sv":"Open Mobile Alliance"}, {"n":"1","sv":"Lightweight M2M Client"}, {"n":"2","sv":"345000123"}, {"n":"3","sv":"1.0"}, {"n":"6/0","v":"1"}, {"n":"6/1","v":"5"}, {"n":"7/0","v":"3800"}, {"n":"7/1","v":"5000"}, {"n":"8/0","v":"125"}, {"n":"8/1","v":"900"}, {"n":"9","v":"100"}, {"n":"10","v":"15"}, {"n":"11/0","v":"0"}, {"n":"13","v":"1367491215"}, {"n":"14","sv":"+02:00"}, {"n":"15","sv":"U"}] }
  • 41. LWM2M Discovery Returns RFC 6690 Links 41 <4001/0/9002>;rt=“oma.lwm2m”;ct=50;obs=1  Links are uploaded during registration to inform the LWM2M server about resources on the endpoint  Links are discovered using GET with content type “application/link-format”  JSON representation using content type “application/link-format+ json” Resource Type Content Type Observable
  • 42. 42 IPSO Smart Objects
  • 43. Smart Objects Use the LWM2M Object Model 43  REST API with a URI template  Objects  Object Instances  Resources  (Resource Instances)  Reusable resource and object IDs  Common definitions for concepts  Map to semantic terms e.g. temperature, currentValue  IDs are registered with the OMNA  Can be embedded in a path hierarchy on the server  /home/weather/3303/0/5700 3303/0/5700 Object ID, defines object type Object Instance, one or more Resource ID, defines resource type
  • 44. IPSO Smart Object Example 44 Object with Internal Resources
  • 45. IPSO Smart Object Starter Pack 45
  • 46. Ad-Hoc IPSO Smart Object – Smart Thermostat 46
  • 47. Composite IPSO Smart Objects 47
  • 48. IPSO Smart Object Development 48  Smart Objects are Easy to Modify and Customize  Based on Consistent Design Patterns and Reusable Resource Definitions  Object Sets can be Forked and Modified  Expecting Domain-Specific Object Sets to be Created by Collaborative Vertical Working Groups  New Object Sets can be Released as new Smart Object Guidelines  Objects in Released Smart Object Guidelines are Registered with the OMA, Use Standard OMA DDF (XML) File Format Object Descriptors
  • 49. IPSO Smart Objects Roadmap 49  More Objects, Domain Specific  Gateway Management Objects – TR-069  Media Objects  HVAC  Smart Appliances  Mapping and Binding of Smart Objects to Zigbee Application Clusters  Mapping and Binding of Smart Objects to Bluetooth Application Profiles  Advanced Lighting Objects  Behavioral Objects – Timers, Controllers, Rules and Bindings  Object Model  Linked Composite Objects  Semantic Annotation and Application Templates
  • 50. Ad-Hoc IPSO Smart Object – BLE Heart Rate Sensor Profile 50
  • 51. Semantic Annotation of Smart Objects 51  Object annotation could use RFC 6690 for associating additional semantic descriptions with Smart Objects and Resources  Can be used to add contextual metadata and dynamic link relations  Described in IETF CoRE Interfaces document (http://datatracker.ietf.org/doc/draft-ietf-core-interfaces), enables Discovery by relation and attribute  For example, GET /rd-lookup?ep&rt=“urn:X-ipso:temperature” Returns: </sensors/3303/0/5700>;obs;if=“urn:X-ipso:sensor”;rt=“urn:X-ipso: temperature”;ct=50;u=“ucum:degC”  Refers to qualified, resolvable namespaces and concepts  Local discovery in .well-known/core or using Resource Directories  GET/PUT can use semantic query GET <URL>?rt=“urn:X-ipso:temperature”
  • 52. Application Templates 52 “objects”:{ 3303:{ “description”:”ipso temperature sensor”, “attributes”:{“pmin’:60, “pmax”:300, “max-age”:360}, “link-attributes”:{“rt”:[”oma.lwm2m”, “urn:X-ipso:temperature”]}, “instances”:{ 0:{ “attributes”:{}, “link-attributes”:{“rt”:”urn:oma:lwm2m:ext:3303”}, “resources”:{ 5700:{ “description”:”Current Measured Value” “attributes”:{“pmin”:10,”step”:0.5}, “link-attributes”:{“rt”:”ucum:temperature”,”obs”, “ct”:50} }, 5701:{ “description”:”units”, ”value”:”ucum:Cel”, “operations”:[“r”] }, 5601:{“description”:”Min Measured Value”,”value”:100}, 5602:{“description”:”Max Measured Value”,”value”:0}, 5603:{“description”:”Min Range Value”,”value”:0}, 5604:{“description”:”Max Range Value”,”value”:100}, 5605:{“description”:”Reset Min/Max”} }  JSON templates for instance constructor and application schema  Interface to high level semantic models – not part of the wire protocol  Example template fragment for OMA LWM2M Application  Can carry Semantic Annotation as link attributes
  • 53. Summary 53 Application Software IPSO Smart Objects OMA LWM2M CoAP Not tied to specific device or protocol Any Programming Language Runs on devices, gateways, and services Application Level Interoperability Reusable Device to Application API Not tied to any specific protocol Service Layer Specification Device Management over CoAP Object Model for DM and Applications REST protocol for constrained devices IETF Standard (RFC 7252) Uses TCP or UDP, any IP connection Discovery using IP Multicast or Directory
  • 54. References 54 IPSO Smart Object Guideline http://www.ipso-alliance.org/smart-object-guidelines OMA LWM2M Specification http://openmobilealliance.hs-sites.com/lightweight-m2m-specification-from-oma IETF CoAP and Related Specifications CoAP (RFC 7252): http://tools.ietf.org/html/rfc7252 CoRE Link-Format (RFC 6690): http://tools.ietf.org/html/rfc6690 CoRE Resource Directory: http://tools.ietf.org/html/draft-ietf-core-resource-directory- 01 CoAP Community Site http://coap.technology/