Hello
Has anyone done a working tcp server or any other server on Hilo?
I send:
AT&K3
AT+KCNXCFG=0,"GPRS","internet","","","0.0.0.0","0.0.0.0","0.0.0.0"
AT+KCNXTIMER=0,60,2,70
AT+KCNXPROFILE=0
AT+CGATT=1
AT+KTCPCFG=0,1,,80
AT+KTCPCNX=1
And the server is up. I type:
AT+KCGPADDR
and I get:
+KCGPADDR: 0,"94.254.167.79"
So connection should be ok, ip address is public.
But when I try to connect with other Hilo in client mode:
AT&K3
AT+KCNXCFG=0,"GPRS","internet","","","0.0.0.0","0.0.0.0","0.0.0.0"
AT+KCNXTIMER=0,60,2,70
AT+KCNXPROFILE=0
AT+CGATT=1
AT+KTCPCFG=0,0,"94.254.167.79",80
AT+KTCPCNX=1
I get:
NO CARRIER
+KTCP_NOTIF: 1,5
Also when I try to access this ip from a computer browser, it fails and I don't even get
+KTCP_SRVREQ // request
Communication with ie. google.com in client mode works fine.
Any suggestions?