EG95 Transparent access mode Server

Hi,

Does the EG95 (Revision: EG95NAXDGAR07A01M1G) support transparent access mode as a TCP server?

AT+QIOPEN=1,0,“TCP LISTENER”,“127.0.0.1”,5003,5002,2
ERROR
AT+QIGETERROR

+QIGETERROR: 555, operation not support

hi,
Try as follows, and also try the buffer mode.
AT+QIOPEN=1,0,“TCP LISTENER”,“127.0.0.1”,0,5002,2
AT+QIOPEN=1,0,“TCP LISTENER”,“127.0.0.1”,0,5002,0

Thank you…

I tried the suggested transparent access mode as a TCP server command but got errors:

AT+QIOPEN=1,0,“TCP LISTENER”,“127.0.0.1”,0,5002,2

ERROR
AT+QIGETERROR

+QIGETERROR: 555,operation not support

Does this mean the transparent mode TCP server/listener is not supported on the EG95 or is there a firmware version that supports this mode?

hi,
The transparent transmission mode under TCP listener is not supported, because the client connection needs to be monitored later. The transparent transmission mode is to transmit data from one port to another port. It is meaningless for the transparent transmission mode under TCP listener.

Hi,

We need the ability to stream video over transparent mode and simultaneously be able to receive messages from a remote client. We must run a transparent mode client and a TCP buffer mode server simultaneously.

How can we accomplish this?

Thank you

hi daniel,

The module supports the transparent transmission mode of the TCP client. For example, the following configuration:AT+QIOPEN=1,0,“TCP”,“220.180.239.212”,8128,0,0
The module also supports the buffer mode of tcp server, such as:
AT+QIOPEN=1,0,“TCP LISTENER”,“127.0.0.1”,0,5002,0
For details, please refer to the tcp documentation.
thanks.