Michiel van Lohuijzen
Michiel van Lohuijzen

Reputation: 61

How can SSL be turned on on SIM868E?

We are using the SIM868E module for connection via GSM, with internal communication over UART.

We need the SIM868E module to communicate with an HTTPS server, (using SSL), however after sending the commands AT+HTTPSSL=?, AT+HTTPSSL=1 or AT+CIPSSL=? the SIM868E module responds:

+CME Error: unknown

(with CMEE level 2).

The specs note that SSL/TLS are supported by this module: (https://simcom.ee/modules/gsm-gprs-gnss/sim868e/).

The firmware on the chip (requested using AT+CGMR) is Revision:1418B02SIM868E32_BLE_EAT.

How can we fix this problem?

Upvotes: 0

Views: 1148

Answers (1)

Roberto Caboni
Roberto Caboni

Reputation: 7490

According to 2019 SIMCom products catalogue it seems that for SIM868E device there's not support for TLS feature (TLS is the standard name for the SSL protocol).

Just in case the link becomes unreachable, I attach a screenshot of the relevant page of the document:

enter image description here

as you can see, TLS dot is "empty".

Nevertheless, I have to say that SIMCom documents are sometimes contradictory and confusing: in fact in the SIM868E flier claims that the SSL SW feature is supported, but in the SIM800 series AT command manual there's no mention of SSL AT commands.

I will update in case I find any new piece of information about it.


I would honestly avoid trying strange things like flashing the SW of another module. It would be like searching for trouble. And in your case you would lose your positioning capabilities (GPS/GNSS).


Talking about your issue in particular, you'll probably have to compile an SSL library on your host processor (for SSL handshake and data encryption) using the TCP/HTTP commands of your device to transport data to the server. It's not a simple job.

Upvotes: 1

Related Questions