This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| en:iot-open:communications_and_communicating_sut:high_level_communication [2018/09/30 15:44] – Agrisnik | en:iot-open:communications_and_communicating_sut:high_level_communication [2020/07/20 09:00] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ==== Host layer protocols | + | ===== ===== |
| - | The host layers protocols include session (SES), presentation (PRES) and application (APP) level, particularly APP (application) layer in the regular Internet communication is dominated by the HTTP protocol and XML-related derivatives | + | <box # |
| + | <box # | ||
| + | ===== Host Layer Protocols | ||
| + | <box # | ||
| + | <box # | ||
| + | |||
| + | The host layers protocols include session (SES), presentation (PRES) and application (APP) level, particularly APP (application) layer in the regular Internet communication is dominated by the HTTP protocol and XML-related derivatives, e.g. SoAP. Also, FTP protocol for file transfer is ubiquitous; it exists since the beginnings of the Internet. Most of them are somehow related to the text. They' | ||
| Some IoT designed protocols are reviewed below. | Some IoT designed protocols are reviewed below. | ||
| - | === MQTT === | + | ==== MQTT ==== |
| - | MQTT protocol ((https:// | + | MQTT protocol ((https:// |
| - | MQTT uses TCP connection so requires open connection channel (this is in opposite to UDP connections, | + | |
| + | MQTT uses TCP connection so requires open connection channel (this is in opposite to UDP connections, | ||
| - | The standard MQTT Message header is composed of just two bytes only (table {{ref> | + | The standard MQTT Message header is composed of just two bytes only (Table {{ref> |
| <table MQTT_header> | <table MQTT_header> | ||
| - | < | + | < |
| ^bit ^ 7 ^ 6 ^ 5 ^ 4 ^ 3 ^ 2 ^ 1 ^ 0 ^ | ^bit ^ 7 ^ 6 ^ 5 ^ 4 ^ 3 ^ 2 ^ 1 ^ 0 ^ | ||
| |byte 1 | Message Type |||| DUP flag | Qos level || RETAIN | |byte 1 | Message Type |||| DUP flag | Qos level || RETAIN | ||
| Line 22: | Line 29: | ||
| <figure mqtt_broker> | <figure mqtt_broker> | ||
| {{ : | {{ : | ||
| - | < | + | < |
| </ | </ | ||
| - | **MQTT Message**\\ | + | ===MQTT Message=== |
| MQTT is a text-based protocol and is data-agnostic. | MQTT is a text-based protocol and is data-agnostic. | ||
| A message is composed of a Topic (text) and a Payload (data). | A message is composed of a Topic (text) and a Payload (data). | ||
| - | The topic is a directory-like string with / "slash" delimiter. Thus all Topics constitute (or actually may represent) a kind of tree-like folders, similar to those on the file system. | + | The topic is a directory-like string with slash ("/") delimiter. Thus all Topics constitute (or actually may represent) a kind of tree-like folders, similar to those on the file system. |
| The subscriber can subscribe to specific, single Topic, or to a variety of Topics using wildcards, where: | The subscriber can subscribe to specific, single Topic, or to a variety of Topics using wildcards, where: | ||
| - | * # stands for entire branch, | + | * # stands for the entire branch, |
| * + stands for the single level. | * + stands for the single level. | ||
| - | __Example scenario__.\\ | + | //Example Scenario// |
| Publishers deliver some air quality information data in separate MQTT messages and for various rooms at the department Inf of the Universities (SUT, RTU, ITMO) to the Broker: | Publishers deliver some air quality information data in separate MQTT messages and for various rooms at the department Inf of the Universities (SUT, RTU, ITMO) to the Broker: | ||
| ^ Topic (publishers): | ^ Topic (publishers): | ||
| Line 55: | Line 63: | ||
| | RTU/# | | | RTU/# | | ||
| - | The payload (data) of the message is text as well, so in case one need to send binary data, it is necessary to encode it (i.e. Base64). | + | The payload (data) of the message is text as well, so in case one need to send binary data, it is necessary to encode it (e.g. Base64). |
| - | **MQTT Broker**\\ | + | ===MQTT Broker=== |
| - | MQTT Broker is a server for both publishers and subscribers. The connection is initiated from client to the Broker, so assuming it is located outside of a firewall, it breaks firewall its boundaries. | + | MQTT Broker is a server for both publishers and subscribers. The connection is initiated from the client to the Broker, so assuming it is located outside of a firewall, it breaks firewall its boundaries. |
| - | The Broker provides QoS (Quality of Service), and it can retain message payload. There are three levels of MQTT Broker QoS (supplied in the message level): | + | The Broker provides QoS (Quality of Service), and it can retain message payload. There are three levels of MQTT Broker QoS (supplied in the message level). |
| * Unacknowledged service: Ensures that MQTT message is delivered at most once to each subscriber. | * Unacknowledged service: Ensures that MQTT message is delivered at most once to each subscriber. | ||
| * Acknowledged service: Ensures delivery of the message at least once to every subscriber. The broker expects acknowledgement to be sent from the subscriber. Otherwise, it retransmits data. | * Acknowledged service: Ensures delivery of the message at least once to every subscriber. The broker expects acknowledgement to be sent from the subscriber. Otherwise, it retransmits data. | ||
| Line 68: | Line 76: | ||
| MQTT offers some limited set of features (options): | MQTT offers some limited set of features (options): | ||
| - | * Clean session flag for durable connections: | + | * clean session flag for durable connections: |
| - | * If set True, Broker removes all of the client subscriptions on client disconnect. | + | * if set //TRUE//, Broker removes all of the client subscriptions on client disconnect; |
| - | * Otherwise | + | * otherwise |
| - | * MQTT " | + | * MQTT " |
| - | * Message | + | * message |
| Interestingly MQTT is a protocol used by Facebook Messenger ((https:// | Interestingly MQTT is a protocol used by Facebook Messenger ((https:// | ||
| Line 78: | Line 86: | ||
| MQTT security is rather weak. MQTT Broker can offer user and password verification yet it is sent plain text. However, all communication between client and Broker may be encapsulated in SSL, encrypted stream. | MQTT security is rather weak. MQTT Broker can offer user and password verification yet it is sent plain text. However, all communication between client and Broker may be encapsulated in SSL, encrypted stream. | ||
| - | A short comparison of MQTT and HTTP protocols are presented in the table {{ref> | + | A short comparison of MQTT and HTTP protocols are presented in the Table {{ref> |
| <table http_vs_mqtt> | <table http_vs_mqtt> | ||
| < | < | ||
| | ^ MQTT ^ HTTP ^ | | ^ MQTT ^ HTTP ^ | ||
| ^ Design | ^ Design | ||
| - | ^ Pattern | + | ^ Pattern |
| ^ Complexity | ^ Complexity | ||
| ^ Message size | Small, with 2 byte binary header | ^ Message size | Small, with 2 byte binary header | ||
| - | ^ Service levels | + | ^ Service levels |
| - | ^ Implementation | + | ^ Implementation |
| ^ Data distribution models | ^ Data distribution models | ||
| </ | </ | ||
| - | === CoAP === | + | ==== CoAP ==== |
| - | CoAP protocol (RFC7252) originates from the REST (Representational State Transfer). CoAP does not use a centralised server as MQTT does, but every single device " | + | CoAP protocol (RFC7252) originates from the REST (Representational State Transfer). CoAP does not use a centralised server as MQTT does, but every single device " |
| - | * %%" | + | * %%" |
| * a secure, encrypted version uses " | * a secure, encrypted version uses " | ||
| It supports various content types, can work with proxy and can be cached.\\ | It supports various content types, can work with proxy and can be cached.\\ | ||
| - | The protocol is designed to be compact and simple to implement. The stack implementation takes only about 10kB or RAM and 100kB of storage. The header is only 4 bytes.\\ | + | The protocol is designed to be compact and simple to implement. The stack implementation takes only about 10 kB of RAM and 100 kB of storage. The header is only 4 bytes. |
| CoAP protocol has a binary header to decrease overhead but payload depends on the content type. Initial, non-exclusive list of the payload types include: | CoAP protocol has a binary header to decrease overhead but payload depends on the content type. Initial, non-exclusive list of the payload types include: | ||
| * text/plain (charset=utf-8) (ID=0, RFC2046, RFC3676, RFC5147), | * text/plain (charset=utf-8) (ID=0, RFC2046, RFC3676, RFC5147), | ||
| Line 105: | Line 114: | ||
| * application/ | * application/ | ||
| - | CoAP endpoint services are identified by unique IP and port number. However, they operate on the UDP instead of TCP (like, | + | CoAP endpoint services are identified by unique IP and port number. However, they operate on the UDP instead of TCP (like, e.g. HTML does). The transfer in CoAP is made using non-reliable UDP network so that a message can appear duplicated, disappear or it can be delivered in other order than initially sent. Because of the nature of datagram communication, |
| CoAP messages can be (non-exhaustive list): | CoAP messages can be (non-exhaustive list): | ||
| * CON (Confirmable, | * CON (Confirmable, | ||
| * NON (Non-Confirmable, | * NON (Non-Confirmable, | ||
| * ACK (an acknowledgement message), | * ACK (an acknowledgement message), | ||
| - | * RESET (sent if CON or NON was received, but the receiver cannot understand the context, | + | * RESET (sent if CON or NON was received, but the receiver cannot understand the context, e.g. part of the communication is missing because of device restart, messages memory loss, etc.). Empty RESET messages can be used to " |
| Because of the UDP network characteristics, | Because of the UDP network characteristics, | ||
| Line 117: | Line 126: | ||
| Request-reponse pair is identified by a unique " | Request-reponse pair is identified by a unique " | ||
| Sample request-response scenarios are presented in images below. | Sample request-response scenarios are presented in images below. | ||
| - | Sample CoAP message exchange scenarios between client and server are presented | + | Sample CoAP message exchange scenarios between client and server are presented (two per image) |
| <figure CoAP1> | <figure CoAP1> | ||
| {{ : | {{ : | ||
| - | < | + | < |
| </ | </ | ||
| <figure CoAP2> | <figure CoAP2> | ||
| {{ : | {{ : | ||
| - | < | + | < |
| </ | </ | ||
| - | The scenario | + | The scenario |
| - | The scenario | + | The scenario |
| - | The scenario | + | The scenario |
| - | The scenario | + | The scenario |