Hello everyone, I am trying to use MQTT with TLS using a EG916Q LTE Modem. I started first with evaluation board of EG916Q. I have uploaded the three certificates(cacert, publiccert and private key) to my device using the QCOM software. I could then open a TCP socket and use my MQTT application as intended. However, afterwards I want to use my prototype board to do the same exact thing. I knew that I shouldnt use the same certificates but for testing purpose I upload the same certificates but I cannot open the socket and it returns always +QMTOPEN 1,5. Everything is the same the sim cards, the module, the AT command sequence and the the MQTT broker(mosquiotto). Here are the logs of my tests. I will be appreciated to get a support on this issue. Thank you very much in advance.
------------------------------------Working example with the evaluation board-------------------------------------
[2025-12-16_16:08:29:346]AT
[2025-12-16_16:08:29:346]OK
[2025-12-16_16:08:29:554]AT+CGMR
[2025-12-16_16:08:29:554]EG916QGLLGR01A03M04
[2025-12-16_16:08:29:554]OK
[2025-12-16_16:08:29:762]AT+CEREG?
[2025-12-16_16:08:29:762]+CEREG: 0,5
[2025-12-16_16:08:29:762]OK
[2025-12-16_16:08:29:977]AT+CSQ
[2025-12-16_16:08:29:977]+CSQ: 16,99
[2025-12-16_16:08:29:977]OK
[2025-12-16_16:08:30:177]AT+COPS?
[2025-12-16_16:08:30:177]+COPS: 0,0,“Vodafone.de”,7
[2025-12-16_16:08:30:177]OK
[2025-12-16_16:08:30:384]AT+QIACT=1
[2025-12-16_16:08:30:384]OK
[2025-12-16_16:08:30:600]AT+QIACT?
[2025-12-16_16:08:30:600]+QIACT: 1,1,1,“100.86.157.16”
[2025-12-16_16:08:30:600]OK
[2025-12-16_16:08:30:799]AT+QMTCFG=“recv/mode”,1,0,1
[2025-12-16_16:08:30:799]OK
[2025-12-16_16:08:31:003]AT+QMTCFG=“ssl”,1,1,1
[2025-12-16_16:08:31:003]OK
[2025-12-16_16:08:31:205]AT+QSSLCFG=“cacert”,1,“UFS:cacert”
[2025-12-16_16:08:31:205]OK
[2025-12-16_16:08:31:407]AT+QSSLCFG=“clientcert”,1,“UFS:clientcert”
[2025-12-16_16:08:31:407]OK
[2025-12-16_16:08:31:610]AT+QSSLCFG=“clientkey”,1,“UFS:clientkey”
[2025-12-16_16:08:31:610]OK
[2025-12-16_16:08:31:814]AT+QSSLCFG=“seclevel”,1,2
[2025-12-16_16:08:31:814]OK
[2025-12-16_16:08:32:017]AT+QSSLCFG=“sslversion”,1,3
[2025-12-16_16:08:32:017]OK
[2025-12-16_16:08:32:218]AT+QSSLCFG=“ciphersuite”,1,0xFFFF
[2025-12-16_16:08:32:218]OK
[2025-12-16_16:08:32:421]AT+QSSLCFG=“ignorelocaltime”,1,1
[2025-12-16_16:08:32:421]OK
[2025-12-16_16:08:32:624]AT+QMTOPEN=1,“mqtttestserver”,8883
[2025-12-16_16:08:32:624]OK
[2025-12-16_16:08:41:656]
[2025-12-16_16:08:41:656]+QMTOPEN: 1,0
[2025-12-16_16:08:42:594]AT+QMTCONN=1,“gsara”
[2025-12-16_16:08:42:594]OK
[2025-12-16_16:08:42:784]
[2025-12-16_16:08:42:784]+QMTCONN: 1,0,0
------------------------------------Not functional example with the prototype board-------------------------------------
[I] << AT
[I] >> AT
[I] >> OK
[I] << ATE0
[I] >> ATE0
[I] >> OK
[I] << AT+CGMR
[I] >> EG916QGLLGR01A05M04
[I] >> OK
[I] << AT+CEREG?
[I] >> +CEREG: 0,5
[I] >> OK^M
[I] << AT+CSQ
[I] >> +CSQ: 18,99
[I] >> OK
[I] << AT+COPS?
[I] >> +COPS: 0,0,“vodafone.de”,7
[I] >> OK
[I] << AT+QIACT=1
[I] >> OK
[I] << AT+QIACT?
[I] >> +QIACT: 1,1,1,“100.86.158.237”
[I] >> OK
[I] << AT+QMTCFG=“recv/mode”,1,0,1
[I] >> OK
[I] << AT+QMTCFG=“ssl”,1,1,1
[I] >> OK
[I] << AT+QSSLCFG=“cacert”,1,“UFS:cacert.crt”
[I] >> OK
[I] << AT+QSSLCFG=“clientcert”,1,“UFS:clientcert.pem”
[I] >> OK
[I] << AT+QSSLCFG=“clientkey”,1,“UFS:clientkey.pem”
[I] >> OK
[I] << AT+QSSLCFG=“seclevel”,1,2
[I] >> OK
[I] << AT+QSSLCFG=“sslversion”,1,3
[I] >> OK
[I] << AT+QSSLCFG=“ciphersuite”,1,0xFFFF
[I] >> OK
[I] << AT+QSSLCFG=“ignorelocaltime”,1,1
[I] >> OK
[I] << AT+QMTOPEN=1,“mqtttestserver”,8883
[I] >> OK
[I] >> +QMTOPEN: 1,5
[I] << AT+QMTCONN=1,“gsara”
[I] >> ERROR

