Hi everyone
Let me first of all provide some background: I have an application where I want to periodically FTP small amounts of data (or also SMTP as an attachment) from a remote site to an FTP server. It might seem easy enough, but it is all done from a microcontroller requiring low level interaction with the cellphone modem. Fortunately, the modem is a Java enabled modem from Siemens and I have obtained several Java applications that handles the TCP/IP stack for me. To be able to use it, I need to provide the Java application with the required information based on the AT command from Siemens, namely (Set Dialup Network Access Parameters according to Siemens):
AT^SJNET = <bearer service>, <entry point>, <login>, <password>[, <dns>[, <timeout>]]
The following I presume is correct (of not I would appreciate the correct fields):
<bearer service> = "gprs"
<entry point> = "internet"
<login> = ""
<password> = ""
I need to however provide the application with the IP address of the dynamic name server of the network in the <dns> field. I did come across one reference to this at http://www.taniwha.org.uk/gprs.html listing the IP address to be 196.11.240.241, but I was hoping that someone could confirm that it is indeed correct.
Did I make sense?
Regards
Let me first of all provide some background: I have an application where I want to periodically FTP small amounts of data (or also SMTP as an attachment) from a remote site to an FTP server. It might seem easy enough, but it is all done from a microcontroller requiring low level interaction with the cellphone modem. Fortunately, the modem is a Java enabled modem from Siemens and I have obtained several Java applications that handles the TCP/IP stack for me. To be able to use it, I need to provide the Java application with the required information based on the AT command from Siemens, namely (Set Dialup Network Access Parameters according to Siemens):
AT^SJNET = <bearer service>, <entry point>, <login>, <password>[, <dns>[, <timeout>]]
The following I presume is correct (of not I would appreciate the correct fields):
<bearer service> = "gprs"
<entry point> = "internet"
<login> = ""
<password> = ""
I need to however provide the application with the IP address of the dynamic name server of the network in the <dns> field. I did come across one reference to this at http://www.taniwha.org.uk/gprs.html listing the IP address to be 196.11.240.241, but I was hoping that someone could confirm that it is indeed correct.
Did I make sense?
Regards