Wiki source code of Set up CoAP Server
Hide last authors
author | version | line-number | content |
---|---|---|---|
![]() |
1.3 | 1 | **~ Contents:** |
![]() |
1.1 | 2 | |
![]() |
1.3 | 3 | {{toc/}} |
![]() |
1.1 | 4 | |
![]() |
1.3 | 5 | |
![]() |
16.1 | 6 | |
![]() |
1.2 | 7 | = 1. Introduction = |
![]() |
1.1 | 8 | |
![]() |
1.2 | 9 | ((( |
10 | In this chapter, we set up a CoAP/ MQTT server by using Open Source MQTT Broker : [[EMQX.IO>>url:https://www.emqx.io/]]. And show how to communicate it with CoAP and MQTT. | ||
11 | ))) | ||
![]() |
1.1 | 12 | |
![]() |
1.2 | 13 | ((( |
14 | Below is the network structure. The end device use CoAP to connect our Emqx server via NB-IoT network. EMQ X broker will further process the data for the actually application. | ||
15 | ))) | ||
![]() |
1.1 | 16 | |
![]() |
2.2 | 17 | [[image:image-20220530084843-1.png]] |
![]() |
1.1 | 18 | |
![]() |
1.2 | 19 | Network structure |
![]() |
1.1 | 20 | |
![]() |
2.2 | 21 | |
![]() |
1.2 | 22 | = 2. Install CoAP server = |
![]() |
1.1 | 23 | |
![]() |
1.2 | 24 | Set up example in Ubuntu 18.04 |
![]() |
1.1 | 25 | |
![]() |
1.2 | 26 | (% class="box" %) |
27 | ((( | ||
28 | sudo apt-get update | ||
29 | sudo apt-get upgrade | ||
30 | wget [[https:~~/~~/www.emqx.io/downloads/broker/v3.2.7/emqx-ubuntu18.04-v3.2.7_amd64.deb>>url:https://www.emqx.io/downloads/broker/v3.2.7/emqx-ubuntu18.04-v3.2.7_amd64.deb]] #download the installation package. | ||
31 | sudo dpkg –i emqx-ubuntu18.04-v3.2.4_amd64.deb #install EMQX | ||
32 | emqx start # Start EMQX service | ||
33 | emqx_ctl status #check if EMQX is running | ||
34 | ./bin/emqx_ctl plugins load emqx_coap # Run COAP service | ||
35 | ))) | ||
![]() |
1.1 | 36 | |
![]() |
1.5 | 37 | ((( |
![]() |
1.2 | 38 | (% style="color:red" %)**Notice: CoAP default port use 5683, if you install EMQX in a cloud server, make sure you open the UDP port 5683. So can receive the packets from NB-IoT.** |
![]() |
6.2 | 39 | |
40 | |||
![]() |
1.5 | 41 | ))) |
![]() |
1.1 | 42 | |
![]() |
1.2 | 43 | = 3. Test CoAP Server = |
![]() |
1.1 | 44 | |
![]() |
1.2 | 45 | == 3.1 Install Copper in Chrome == |
![]() |
1.1 | 46 | |
![]() |
1.2 | 47 | ((( |
48 | ~1. Download Copper4Cr from [[https:~~/~~/github.com/mkovatsc/Copper4Cr>>url:https://github.com/mkovatsc/Copper4Cr]] and unpack it. | ||
49 | ))) | ||
![]() |
1.1 | 50 | |
![]() |
1.2 | 51 | ((( |
52 | 2. Run install.bat in the directory. | ||
![]() |
6.2 | 53 | |
54 | [[image:image-20220530085327-2.png]] | ||
![]() |
1.2 | 55 | ))) |
![]() |
1.1 | 56 | |
![]() |
1.2 | 57 | Run install.bat |
58 | |||
59 | |||
60 | 3. Load the unpacked CoAP APP in Google Chrome: | ||
61 | |||
![]() |
16.1 | 62 | [[image:image-20220530085423-3.png||height="241" width="1250"]] |
![]() |
1.2 | 63 | |
64 | Install Copper APP | ||
65 | |||
66 | |||
![]() |
6.2 | 67 | [[image:image-20220530085531-4.png]] |
68 | |||
![]() |
1.2 | 69 | Install APP Successful |
70 | |||
71 | |||
72 | 4. Load the unpacked CoAP extension in Google Chrome: | ||
73 | |||
![]() |
7.3 | 74 | [[image:image-20220530085638-5.png||height="338" width="1320"]] |
![]() |
1.2 | 75 | |
76 | Install Copper Extension | ||
77 | |||
![]() |
15.1 | 78 | |
![]() |
16.1 | 79 | [[image:image-20220530090104-7.png||height="389" width="1282"]] |
![]() |
1.2 | 80 | |
81 | Install Extension Successful | ||
82 | |||
83 | |||
84 | 5. Replace the appID in file extension\endpoint\ClientPortChrome.js to Copper (Cu4Cr) Application ID | ||
85 | |||
![]() |
9.2 | 86 | [[image:image-20220530090444-10.png]] |
![]() |
1.2 | 87 | |
88 | Replace ID | ||
89 | |||
90 | |||
91 | 6. Open the Copper extension. If you see below message, means install successfully. | ||
92 | |||
![]() |
8.4 | 93 | [[image:image-20220530090404-9.png||height="658" width="1238"]] |
![]() |
1.2 | 94 | |
95 | Install Finished | ||
96 | |||
97 | |||
98 | == 3.2 Test CoAP connection == | ||
99 | |||
100 | ((( | ||
101 | Use Chrome Copper externsion to connect to the CoAP server. Input coap:~/~/COAP_SERVER_IP/mqtt/topic0?c=t1 to connect to the MQTT topic0 in CoAP server. Replace COAP_SERVER_IP with your COAP Server IP address, and refer [[here>>url:https://github.com/emqx/emqx-coap]] for the CoAP detail in EMQX. When connection ok, you can see below window. | ||
![]() |
10.2 | 102 | |
103 | [[image:image-20220530090848-13.png||height="616" width="1154"]] | ||
![]() |
1.2 | 104 | ))) |
105 | |||
106 | Connect to CoAP server | ||
107 | |||
![]() |
9.2 | 108 | |
![]() |
1.2 | 109 | == 3.3 Test CoAP Uplink == |
110 | |||
111 | ((( | ||
112 | Try to use MQTT.fx to subscribe a the topic (topic0) in the server. And use CoAP to send a message to this topic, we can see the message arrive the topic0 and shown in MQTT.fx. | ||
![]() |
11.2 | 113 | |
114 | [[image:image-20220530090939-14.png]] | ||
![]() |
1.2 | 115 | ))) |
116 | |||
117 | Use MQTT.fx to subscribe the topic | ||
118 | |||
119 | |||
![]() |
13.4 | 120 | [[image:image-20220530091358-18.png||height="549" width="1035"]] |
![]() |
1.2 | 121 | |
122 | Use CoAP Exension to send a update to CoAP server | ||
123 | |||
124 | |||
![]() |
13.2 | 125 | [[image:image-20220530091237-17.png]] |
![]() |
1.2 | 126 | |
127 | MQTT.fx get the update of this topic on CoAP server | ||
128 | |||
![]() |
11.4 | 129 | |
![]() |
1.2 | 130 | == 3.4 Test CoAP Downlink == |
131 | |||
![]() |
1.3 | 132 | ((( |
![]() |
1.2 | 133 | Try to use MQTT.fx to publish a message to the topic (topic0) in the server. CoAP extension will see this incomming message. |
![]() |
1.3 | 134 | ))) |