SlideShare a Scribd company logo
Device Management with
OMA Lightweight M2M
Simon Lemay and
Hannes Tschofenig
Overview
 Why Lightweight Device Management
 OMA Lightweight M2M Standard
 Bootstrapping Interface
 Object Model
 Access Control Model
 Application Server Interaction
 Example Flows
©Sensinode 2013
Why Lightweight Device
Management
 Traditional Device Management (DM) is widely used in mobile devices
 Used by operators and enterprises for managing smart phones, tablets and
laptops
 Some M2M DM use today with cellular devices, mostly proprietary
 OMA DM was one of the first standards for device management in the
mobile handset sector.
 In the meanwhile various standards exist that provide similar functionality,
such as TR 69, or IEEE 802.1AR.
 OMA Lightweight M2M (LWM2M) created to serve the IoT market with
a focus on lightweight nature:
 Applicable to various radio technologies (devices just need IP connectivity)
 Extensible object model and registry open to the whole industry
 Enables both management and application data handling with the same
solution
 Addresses security need for software updates and device re-configuration.
 Re-uses IETF specifications.
Why Lightweight Device
Management?
©Sensinode 2013
Features
Mobile Device
Management
Device
Management
Bootstrap
ping
Device
Configurat
ion
Firmware
Update
Fault
Managem
ent
 Key management
 Service
provisioning
 Access Control
 Changes to settings
 Changes to parameters
of the device
 Update application and system
software
 Bug fixes
 Report Errors from devices
 Query about status of devices
Application Configurat
ion &
Control
Reporting
 Configure settings of the
application
 Send control commands
 Notify changes in sensor values
 Notify alarms and events
OMA LWM2M Architecture
 M2M Applications
 Application abstraction
through REST API
 Resource Discovery and
Linking
 LWM2M Clients are Devices
 Device abstraction through CoAP
 LWM2M Clients are CoAP Servers
 Any IP network connection
 LWM2M Server
 Reuses IETF technologies,
such as the CoAP protocol,
DTLS, Resource Directory.
 Deployable on gateways and in
the cloud
UDP
SMSDTLS
CoAP
LWM2M
Objects
LWM2M Interfaces
• Bootstrap Interface
– Configure Servers & Keys &
ACLs
– Pre-Configured, Smart Card, or
Server Initiated Bootstrap
– CoAP REST API
• Registration Interface
– RFC 6690 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
Bootstrap Interface
Bootstrapping Architecture
Client Server
KDC
DTLS Secured Communication
Bootstrapping
©Sensinode 2013
Device Management with OMA Lightweight M2M
Bootstrapping Features
 OMA LWM2M supports different credential provisioning
procedures:
 Pre-shared Secrets
 Raw Public Keys
 Certificates
 These credentials are provisioned by the Bootstrap
Server for use with LWM2M servers.
 It is possible to mix credentials for use with different
servers and even to use different credentials in a single
client/server interaction.
 The LWM2M client is assumed to possess credentials
for authentication to the Bootstrap Server. These
credentials are typically pre-provisioned during
manufacturing time.
Pre-Shared Key Mode
Raw Public Key Mode
Certificate Mode
 LWM2M Client may be pre-provisioned with information about the
LWM2M Server (rather than distributing credentials with the
bootstrapping protocol)
 LWM2M Client MUST have a LWM2M Bootstrap Server Account
(+Bootstrap Server URI, Endpoint Client Name)
 LWM2M Security Object
 Security Mode (PSK, raw public key, certificate, no-sec)
 Public Key or Identity (certificate, public key, or PSK identity)
 Server Public Key or Identity (LWM2M server or bootstrap
server certificate, public key or PSK identity)
 Secret Key (secret key or private key)
 LWM2M Server URI (bootstrap server or LWM2M server)
 Bootstrap Server (true – false)
A few more details
Object Model
 A LWM2M 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
 Resources can have multiple instances
 Access control list (ACL) objects control access
to objects accessed by LWM2M Servers
 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 =
3 = Device Object,
0 = Object Instance #0,
1 = Manufacturer Resource
Object Model
©Sensinode 2013
 The LWM2M Technical Specification defines eight normative Objects
Standard Device Management
Objects
©Sensinode 2013
Object Name ID Multiple Instances? Description
LWM2M Security 0 Yes This LWM2M Object provides the keying material of a
LWM2M Client appropriate to access a specified
LWM2M Server.
LWM2M Server 1 Yes This LWM2M objects provides the data related to a
LWM2M server.
Access Control 2 Yes Access Control Object is used to check whether the
LWM2M Server has access right for performing an
operation.
Device 3 No This LWM2M Object provides a range of device related
information which can be queried by the LWM2M
Server, and a device reboot and factory reset function.
Connectivity Monitoring 4 No This LWM2M objects enables monitoring of parameters
related to network connectivity.
Firmware 5 No This Object includes installing firmware package,
updating firmware, and performing actions after
updating firmware.
Location 6 No The GPS location of the device.
Connectivity Statistics 7 No This LWM2M Objects enables client to collect statistical
information and enables the LWM2M Server to retrieve
these information, set the collection duration and reset
the statistical parameters.
 Example of the LWM2M Location Object, which has 6
Resources
Object Example
©Sensinode 2013
 Defining a new Object is straightforward
 Object IDs are registered with the OMA Naming Authority
(OMNA)
 Who can register an Object?
 OMA working groups
 3rd party organizations
 Enterprises
 How to register an Object?
 Write a specification filling out the Object template tables:
 Object Name, Description and if it can have Multiple
Instances
 The list of resources the Object defines
 Fill out the Lightweight Object form on-line.
 IPSO Alliance has created additional objects, which are
documented here (Starter Pack) and here (Expansion Pack).
Defining new Objects
©Sensinode 2013
Access Control Model
Overview
 Bootstrap servers distribute access control lists to LWM2M clients.
 Example from Appendix F of the OMA LWM2M technical specification:
(Table shows example objects provisioned at a LWM2M client by the
Bootstrap server.)
Overview, cont.
LWM2M
Client
LWM2M
Server
2
Luminaire
LWM2M
Client 3
Registration and
resource access
Light
Switc
h
ACL:
<Server 1,
RW>
LWM2M
Server 1
Registration
and
resource
access
LWM2M
Bootstrap
Server
Application
ACL:
<Server 2,
RW>
Discussion
 ACLs work well when a Bootstrap Server is aware of the future
interactions between LWM2M servers and LWM2M clients.
 Real-time provisioning of ACLs by the Bootstrap Server is also
possible.
 During registration a LWM2M client is a CoAP client; afterwards it
becomes a CoAP server waiting for incoming CoAP requests.
 Notes:
 LWM2M clients can become LWM2M servers in another communication
setup and may therefore also receive ACLs from the Bootstrap Server. In
our example light switches and luminaires are LWM2M clients in different
communication scenarios.
 Different LWM2M clients may also use different Bootstrap Servers.
 A single LWM2M client may also have more than one Bootstrap Server
(e.g., for redundancy/ purpose)
Application Server Interaction
LWM2M Application Server
Web
Server App
LWM2M
Server
Soft Endpoints
IP
Device
IP
Device
LWM2M Clients
/3303/0/5700
/domain/endpoints/3303/0/5700
LWM2M Application Server
Web
Server App
LWM2M
Server
IP
Device
IP
Device
LWM2M Clients
/domain/endpoints/3303/0/5700
/3303/0/5700
LWM2M Application Server
Web
Server App
LWM2M
Server
IP
Device
IP
Device
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
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, in
engineering units
 Gt – high limit measurement notification, like a high alarm, in
engineering units
 Step – Minimum delta change required to notify, in engineering units
LWM2M Bulk Read
 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 Uses CoRE RD
Resource Links (RFC 6690)
 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”
<4001/0/9002>;rt=“oma.lwm2m”;ct=50;obs=1
Resource Type
Content Type
Observable
Example Flows
Interface Flows
©Sensinode 2013
Registration
©Sensinode 2013
Object Access
©Sensinode 2013
Notification
©Sensinode 2013
Queue Mode (Sleeping
Devices)
©Sensinode 2013
Summary
 LWM2M re-uses many IETF specifications.
Specifications are publically available for download here.
 Implementations and products are available. Example:
Leshan (as an open source implementation)
 Several plugfests took place already and
there the issue list can be found here.
 Work on a bugfix release is in progress and
the Version 1.1 specification work will be
started soon to specification with ongoing IETF work.
40
Using LWM2M with ARM
Create your
application with
mbed Client.
Examples:
• mbed client
(Linux)
• mbed client
(mbed OS)
Connect your IoT
devices to the mbed
Device Connector at
https://connector.mbe
d.com
Create your web
application with example
code or REST API
Links:
• Example code
• Documentation

More Related Content

PPT
Protection
PPTX
vehicle management system project
PDF
Embedded Finance - the $7 Trillion market opportunity
PDF
The evolution of data center network fabrics
PPTX
VEHICLE MANAGEMENT SYSTEM
PPT
VEHICLE TO VEHICLE WIRELESS COMMUNICATION
POTX
Network management with Aruba AirWave
PPT
Telecom BSS
Protection
vehicle management system project
Embedded Finance - the $7 Trillion market opportunity
The evolution of data center network fabrics
VEHICLE MANAGEMENT SYSTEM
VEHICLE TO VEHICLE WIRELESS COMMUNICATION
Network management with Aruba AirWave
Telecom BSS

What's hot (20)

PPTX
REST APIs and MQ
PDF
Dell EMC OpenManage Enterprise Ovierview 3.3
PDF
Telecom interconnect Billing Basics
PPT
Internet banking ARCHITECTURE AND IMPLEMENTATION
PDF
EMEA Airheads- Instant AP- Instant AP Best Practice Configuration
PDF
VoLTE Interfaces , Protocols & IMS Stack
PPTX
DBX Open Banking
PPT
RADIUS
PPTX
Telecom Performance Management System: Overview
PDF
Cloud Computing Using OpenStack
PDF
Ibm ds8880 product guide redp5344
PPTX
F5 Solutions for Service Providers
PPTX
IMS presentation
PPTX
Basic Understanding about TCP/IP Addressing system
PPS
Loan Management System
PPT
VEHICLE MANAGEMENT SYSTEM
PDF
Beginners: An Quick Introduction to 3GPP
PDF
Dell Technologies Dell EMC Data Protection Solutions On One Single Page - POS...
PPTX
Mainframe Solutions Introduction
PPT
DFD For E-learning Project
REST APIs and MQ
Dell EMC OpenManage Enterprise Ovierview 3.3
Telecom interconnect Billing Basics
Internet banking ARCHITECTURE AND IMPLEMENTATION
EMEA Airheads- Instant AP- Instant AP Best Practice Configuration
VoLTE Interfaces , Protocols & IMS Stack
DBX Open Banking
RADIUS
Telecom Performance Management System: Overview
Cloud Computing Using OpenStack
Ibm ds8880 product guide redp5344
F5 Solutions for Service Providers
IMS presentation
Basic Understanding about TCP/IP Addressing system
Loan Management System
VEHICLE MANAGEMENT SYSTEM
Beginners: An Quick Introduction to 3GPP
Dell Technologies Dell EMC Data Protection Solutions On One Single Page - POS...
Mainframe Solutions Introduction
DFD For E-learning Project
Ad

Similar to Device Management with OMA Lightweight M2M (20)

PPTX
LWM2M Introduction - Edinburgh 2016 Workshop with ARM
PPT
OMA Lightweight M2M Tutorial
PDF
OMA LWM2M overview
PPTX
Introduction to OMA LightweightM2M by OMA Device Management Chairman (IoT Wor...
PPTX
Ietf91 ad hoc-coap-lwm2m-ipso
PPTX
Movimento Management Protocols
PDF
Ietf91 ad hoc-coap-lwm2m-ipso
PPTX
Ipso smart object seminar
PPTX
Ietf91 ad hoc-coap-lwm2m-ipso
PPTX
OMA LwM2M Workshop - Friedhelm Rodermund, OMA LwM2M in the IoT Space
PPTX
Lightweight M2M 1.1 - LwM2M 1.1 Protocol Overview & New Features
PDF
Manage all the things, small and big, with open source LwM2M implementations ...
PPTX
OMA Lightweight M2M
PPTX
20230324143255_E6. IOT Device Management REVIEWED.pptx
PDF
Device Management for Internet of Things Constrained Devices OMA Lightweight M2M
PDF
Hands on with lightweight m2m and Eclipse Leshan
PDF
Lightweight M2M
PPTX
Eclipse IoT Day, March 2017 - LightweightM2M Protocol & Ecosystem
PDF
Ipso eclipse-summary
PDF
IoT Seminar (Jan. 2016) - (4) friedhelm rodermund - lwm2m and lpwa
LWM2M Introduction - Edinburgh 2016 Workshop with ARM
OMA Lightweight M2M Tutorial
OMA LWM2M overview
Introduction to OMA LightweightM2M by OMA Device Management Chairman (IoT Wor...
Ietf91 ad hoc-coap-lwm2m-ipso
Movimento Management Protocols
Ietf91 ad hoc-coap-lwm2m-ipso
Ipso smart object seminar
Ietf91 ad hoc-coap-lwm2m-ipso
OMA LwM2M Workshop - Friedhelm Rodermund, OMA LwM2M in the IoT Space
Lightweight M2M 1.1 - LwM2M 1.1 Protocol Overview & New Features
Manage all the things, small and big, with open source LwM2M implementations ...
OMA Lightweight M2M
20230324143255_E6. IOT Device Management REVIEWED.pptx
Device Management for Internet of Things Constrained Devices OMA Lightweight M2M
Hands on with lightweight m2m and Eclipse Leshan
Lightweight M2M
Eclipse IoT Day, March 2017 - LightweightM2M Protocol & Ecosystem
Ipso eclipse-summary
IoT Seminar (Jan. 2016) - (4) friedhelm rodermund - lwm2m and lpwa
Ad

More from Hannes Tschofenig (10)

PPTX
Measuring the Performance and Energy Cost of Cryptography in IoT Devices
PPTX
Advancing IoT Communication Security with TLS and DTLS v1.3
PPTX
The Role of Standards in IoT Security
PPTX
Authorization for Internet of Things using OAuth 2.0
PDF
Performance of State-of-the-Art Cryptography on ARM-based Microprocessors
PPTX
Smart Object Architecture
PPTX
Crypto Performance on ARM Cortex-M Processors
PDF
UMA for ACE
PDF
How to Select Hardware for Internet of Things Systems?
PPT
A guide to make your research less successful
Measuring the Performance and Energy Cost of Cryptography in IoT Devices
Advancing IoT Communication Security with TLS and DTLS v1.3
The Role of Standards in IoT Security
Authorization for Internet of Things using OAuth 2.0
Performance of State-of-the-Art Cryptography on ARM-based Microprocessors
Smart Object Architecture
Crypto Performance on ARM Cortex-M Processors
UMA for ACE
How to Select Hardware for Internet of Things Systems?
A guide to make your research less successful

Recently uploaded (20)

PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
KodekX | Application Modernization Development
PDF
Machine learning based COVID-19 study performance prediction
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
Electronic commerce courselecture one. Pdf
PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPTX
A Presentation on Artificial Intelligence
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
Cloud computing and distributed systems.
PPTX
Big Data Technologies - Introduction.pptx
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Encapsulation theory and applications.pdf
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
KodekX | Application Modernization Development
Machine learning based COVID-19 study performance prediction
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Electronic commerce courselecture one. Pdf
Spectral efficient network and resource selection model in 5G networks
MYSQL Presentation for SQL database connectivity
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
Mobile App Security Testing_ A Comprehensive Guide.pdf
A Presentation on Artificial Intelligence
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Cloud computing and distributed systems.
Big Data Technologies - Introduction.pptx
Chapter 3 Spatial Domain Image Processing.pdf
Network Security Unit 5.pdf for BCA BBA.
Review of recent advances in non-invasive hemoglobin estimation
Encapsulation theory and applications.pdf
“AI and Expert System Decision Support & Business Intelligence Systems”
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx

Device Management with OMA Lightweight M2M

  • 1. Device Management with OMA Lightweight M2M Simon Lemay and Hannes Tschofenig
  • 2. Overview  Why Lightweight Device Management  OMA Lightweight M2M Standard  Bootstrapping Interface  Object Model  Access Control Model  Application Server Interaction  Example Flows ©Sensinode 2013
  • 4.  Traditional Device Management (DM) is widely used in mobile devices  Used by operators and enterprises for managing smart phones, tablets and laptops  Some M2M DM use today with cellular devices, mostly proprietary  OMA DM was one of the first standards for device management in the mobile handset sector.  In the meanwhile various standards exist that provide similar functionality, such as TR 69, or IEEE 802.1AR.  OMA Lightweight M2M (LWM2M) created to serve the IoT market with a focus on lightweight nature:  Applicable to various radio technologies (devices just need IP connectivity)  Extensible object model and registry open to the whole industry  Enables both management and application data handling with the same solution  Addresses security need for software updates and device re-configuration.  Re-uses IETF specifications. Why Lightweight Device Management? ©Sensinode 2013
  • 5. Features Mobile Device Management Device Management Bootstrap ping Device Configurat ion Firmware Update Fault Managem ent  Key management  Service provisioning  Access Control  Changes to settings  Changes to parameters of the device  Update application and system software  Bug fixes  Report Errors from devices  Query about status of devices Application Configurat ion & Control Reporting  Configure settings of the application  Send control commands  Notify changes in sensor values  Notify alarms and events
  • 6. OMA LWM2M Architecture  M2M Applications  Application abstraction through REST API  Resource Discovery and Linking  LWM2M Clients are Devices  Device abstraction through CoAP  LWM2M Clients are CoAP Servers  Any IP network connection  LWM2M Server  Reuses IETF technologies, such as the CoAP protocol, DTLS, Resource Directory.  Deployable on gateways and in the cloud UDP SMSDTLS CoAP LWM2M Objects
  • 7. LWM2M Interfaces • Bootstrap Interface – Configure Servers & Keys & ACLs – Pre-Configured, Smart Card, or Server Initiated Bootstrap – CoAP REST API • Registration Interface – RFC 6690 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
  • 12. Bootstrapping Features  OMA LWM2M supports different credential provisioning procedures:  Pre-shared Secrets  Raw Public Keys  Certificates  These credentials are provisioned by the Bootstrap Server for use with LWM2M servers.  It is possible to mix credentials for use with different servers and even to use different credentials in a single client/server interaction.  The LWM2M client is assumed to possess credentials for authentication to the Bootstrap Server. These credentials are typically pre-provisioned during manufacturing time.
  • 16.  LWM2M Client may be pre-provisioned with information about the LWM2M Server (rather than distributing credentials with the bootstrapping protocol)  LWM2M Client MUST have a LWM2M Bootstrap Server Account (+Bootstrap Server URI, Endpoint Client Name)  LWM2M Security Object  Security Mode (PSK, raw public key, certificate, no-sec)  Public Key or Identity (certificate, public key, or PSK identity)  Server Public Key or Identity (LWM2M server or bootstrap server certificate, public key or PSK identity)  Secret Key (secret key or private key)  LWM2M Server URI (bootstrap server or LWM2M server)  Bootstrap Server (true – false) A few more details
  • 18.  A LWM2M 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  Resources can have multiple instances  Access control list (ACL) objects control access to objects accessed by LWM2M Servers  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 = 3 = Device Object, 0 = Object Instance #0, 1 = Manufacturer Resource Object Model ©Sensinode 2013
  • 19.  The LWM2M Technical Specification defines eight normative Objects Standard Device Management Objects ©Sensinode 2013 Object Name ID Multiple Instances? Description LWM2M Security 0 Yes This LWM2M Object provides the keying material of a LWM2M Client appropriate to access a specified LWM2M Server. LWM2M Server 1 Yes This LWM2M objects provides the data related to a LWM2M server. Access Control 2 Yes Access Control Object is used to check whether the LWM2M Server has access right for performing an operation. Device 3 No This LWM2M Object provides a range of device related information which can be queried by the LWM2M Server, and a device reboot and factory reset function. Connectivity Monitoring 4 No This LWM2M objects enables monitoring of parameters related to network connectivity. Firmware 5 No This Object includes installing firmware package, updating firmware, and performing actions after updating firmware. Location 6 No The GPS location of the device. Connectivity Statistics 7 No This LWM2M Objects enables client to collect statistical information and enables the LWM2M Server to retrieve these information, set the collection duration and reset the statistical parameters.
  • 20.  Example of the LWM2M Location Object, which has 6 Resources Object Example ©Sensinode 2013
  • 21.  Defining a new Object is straightforward  Object IDs are registered with the OMA Naming Authority (OMNA)  Who can register an Object?  OMA working groups  3rd party organizations  Enterprises  How to register an Object?  Write a specification filling out the Object template tables:  Object Name, Description and if it can have Multiple Instances  The list of resources the Object defines  Fill out the Lightweight Object form on-line.  IPSO Alliance has created additional objects, which are documented here (Starter Pack) and here (Expansion Pack). Defining new Objects ©Sensinode 2013
  • 23. Overview  Bootstrap servers distribute access control lists to LWM2M clients.  Example from Appendix F of the OMA LWM2M technical specification: (Table shows example objects provisioned at a LWM2M client by the Bootstrap server.)
  • 24. Overview, cont. LWM2M Client LWM2M Server 2 Luminaire LWM2M Client 3 Registration and resource access Light Switc h ACL: <Server 1, RW> LWM2M Server 1 Registration and resource access LWM2M Bootstrap Server Application ACL: <Server 2, RW>
  • 25. Discussion  ACLs work well when a Bootstrap Server is aware of the future interactions between LWM2M servers and LWM2M clients.  Real-time provisioning of ACLs by the Bootstrap Server is also possible.  During registration a LWM2M client is a CoAP client; afterwards it becomes a CoAP server waiting for incoming CoAP requests.  Notes:  LWM2M clients can become LWM2M servers in another communication setup and may therefore also receive ACLs from the Bootstrap Server. In our example light switches and luminaires are LWM2M clients in different communication scenarios.  Different LWM2M clients may also use different Bootstrap Servers.  A single LWM2M client may also have more than one Bootstrap Server (e.g., for redundancy/ purpose)
  • 27. LWM2M Application Server Web Server App LWM2M Server Soft Endpoints IP Device IP Device LWM2M Clients /3303/0/5700 /domain/endpoints/3303/0/5700
  • 28. LWM2M Application Server Web Server App LWM2M Server IP Device IP Device LWM2M Clients /domain/endpoints/3303/0/5700 /3303/0/5700
  • 29. LWM2M Application Server Web Server App LWM2M Server IP Device IP Device LWM2M Clients
  • 30. 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
  • 31. 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, in engineering units  Gt – high limit measurement notification, like a high alarm, in engineering units  Step – Minimum delta change required to notify, in engineering units
  • 32. LWM2M Bulk Read  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"}] }
  • 33. LWM2M Uses CoRE RD Resource Links (RFC 6690)  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” <4001/0/9002>;rt=“oma.lwm2m”;ct=50;obs=1 Resource Type Content Type Observable
  • 40. Summary  LWM2M re-uses many IETF specifications. Specifications are publically available for download here.  Implementations and products are available. Example: Leshan (as an open source implementation)  Several plugfests took place already and there the issue list can be found here.  Work on a bugfix release is in progress and the Version 1.1 specification work will be started soon to specification with ongoing IETF work. 40
  • 41. Using LWM2M with ARM Create your application with mbed Client. Examples: • mbed client (Linux) • mbed client (mbed OS) Connect your IoT devices to the mbed Device Connector at https://connector.mbe d.com Create your web application with example code or REST API Links: • Example code • Documentation