# JT/T808 Protocol Gateway

# Protocol Introduction

emqx-jt808 As emqx's access gateway, according to its functional logic and the relationship between the entire system, the entire message exchange process can be divided into three parts: terminal side, platform side and other sides:

|<-- Terminal -->|<---------- Broker Side ---------->|<---  Others  --->|
|<-    Side    ->|                                   |<--    Side    -->|

+---+                                                  PUB  +-----------+
| D |  INCOMING  +------------+    PUB     +---------+   -->| subscriber|
| E |----------->|            |----------->|         |--/   +-----------+
| V |            | emqx-jt808 |            |  EMQX  |
| I |<-----------|            |<-----------|         |<--   +-----------+
| C |  OUTGOING  +------------+    PUB     +---------+   \--| publisher |
| E |                                                  PUB  +-----------+
+---+
Copied!
1
2
3
4
5
6
7
8
9
10
11
  1. Terminal side: exchange data through the JT/T 808 protocol to report different types of data, or send downlink messages to the terminal.
  2. Platform side: emqx-jt808 decodes the message and performs registration/authentication, or PUBLISH the data message to a specific topic; the agent subscribes to the downstream topic, and converts the downstream PUBLISH message into a JT/T 808 protocol message The text structure is delivered to the terminal.
  3. The other side can subscribe to the topic of the upstream PUBLISH message appearing in 2 to receive the upstream message. Or to publish a message to a specific downlink topic to send data to the terminal side.

# Create module

Open EMQX Dashboard (opens new window), click the "Modules" tab on the left, and choose to add:

image-20200927213049265

Select JT/T808 protocol to access the gateway:

image-20200927213049265

Configure related basic parameters:

image-20200927213049265

Add listening port:

image-20200927213049265

Configure monitoring parameters:

image-20200927213049265

Click to confirm to the configuration parameter page:

image-20200927213049265

After clicking Add, the module is added: image-20200927213049265

emqx-jt808 implementation regulations:

-In the system, the mobile phone number is used as the unique identification of a connection, namely ClientId

# Configuration parameters

The implementation of emqx-jt808 supports anonymous access authentication:

Configuration Description
Allow anonymous Whether to allow anonymous user login
Registray URL JT/T808 terminal registered HTTP interface address
Authentication URL JT/T808 terminal access authentication HTTP interface address
Downlink Message Topic Upstream topic. Uplink message to the message topic in the EMQX system%c: ClientId of the connected client, %p: Phone
Uplink Message Topic Downstream topic. Uplink message to the message topic in the EMQX system%c: ClientId of the connected client, %p: Phone
Max Frame Length Maximum processing size of a single JT/T808 protocol message

# Registration and authentication

The detailed format of the registration request is as follows:

Registration request:

    URL: http://127.0.0.1:8991/jt808/registry
    Method: POST
    Body:
       {"province": 58,
         "city": 59,
         "manufacturer": "Infinity",
         "model": "Q2",
         "license_number": "ZA334455",
         "dev_id": "xx11344",
         "color": 3,
         "phone", "00123456789"
       }
Copied!
1
2
3
4
5
6
7
8
9
10
11
12

Registration Response:

{
  "code": 0,
  "authcode": "132456789"
}

or:

{
  "code": 1
}

The return code can be:

0: success
1: The vehicle has been registered
2: The vehicle is not in the database
3: The terminal has been registered
4: There is no such terminal in the database
Copied!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

Authentication request:

    URL: http://127.0.0.1:8991/jt808/auth
    Method: POST
    Body:
       {"code": "authcode",
         "phone", "00123456789"
       }
Copied!
1
2
3
4
5
6

Authentication response:

HTTP status code 200: authentication succeeded
Other: Authentication failed
Copied!
1
2

Tip

The authentication request is only called when the system does not save the authentication code (that is, the terminal directly sends an authentication message to log in to the system)

In emqx-jt808, you can send and receive terminal messages by configuring uplink and downlink topics:

# Upward

For example: Manufacturer Id is ʻabcdeand **Terminal Id** is1234567`.

First use the MQTT client to subscribe to the topic jt808/abcde1234567/up:

$ mosquitto_sub -t jt808/abcde1234567/up
Copied!
1

For example, after the terminal reports a message of type Data Uplink Transparent Transmission (0x0900), the subscriber will receive:

{"body":
    {"data":"MTIzNDU2",
      "type":240
    },
  "header":
     {"encrypt":0,
       "len":7,
       "msg_id":2304,
       "msg_sn":4,
       "phone":"011111111111"
     }
}
Copied!
1
2
3
4
5
6
7
8
9
10
11
12

Tip

For transparent transmission, the content of the data field will be base64 encoded and reported once

Similarly, take the ID in the above row as an example; after the terminal is successfully authenticated, use the MQTT client to send a message of the type'data downlink transparent transmission (0x8900)' to the terminal:

$ mosquitto_pub -t jt808/abcde1234567/dn -m'{"body":{"data":"MTIzNDU2","type":240},"header":{"msg_id":35072}}'
Copied!
1

Tip

In the downstream JSON, the content in the header only needs to have msg_id; the content in the body has different structures according to different msg_id