Manual
Table Of Contents
- 1 Introduction
- 2 Status Overview Bar
- 3 Menu System
- 4 API
- 5 Troubleshooting
- 5.1 Scenarios
- 5.2 Frequently Asked Questions
- 5.2.1 My router is not connecting to the Internet!
- 5.2.2 The router indicates Internet connectivity, yet I can't surf!
- 5.2.3 I forgot my router's password or username for accessing the router interface
- 5.2.4 My firmware upgrade seems to have failed and I cannot access my router anymore
- 5.2.5 My computer claims to be connected to my DOVADO network, but I can't reach/log onto the configuration page
- 5.2.6 I changed the settings for the WLAN and now some or all of my computers or devices can't access it anymore
- 5.2.7 How do I connect my game console (XBOX, PS3, etc) to the Internet?
- 5.2.8 I have enabled the SMS functionality, but I still can't send/receive SMS
- 5.2.9 My connection speed isn't as good with the router as when I use the modem in my computer
- 6 Support
- 7 Open Source Notice

The M obile Cho ic e for y our B r o adba n d Inte rnet
Reference Manual 7.1.524
© 2014 Dovado FZ-LLC
>>
4.7.3.2 Reading an SMS via PDU
sms recv [ID] (returns PDU with ID or all PDUs in the inbox if ID is empty [ID:PDU])
You can list all the current PDUs in your in the inbox using: sms recv
This will list all PDUs using in the format ID:PDU where ID is a unique internal descriptor of that
PDU (used for removing PDUs).
Conversion is needed to see the actual contents of the PDU.
Example:
>> sms list
new/total
1/1
Stored IDs: 1
>> sms recv 1
1:07916407970900F1040B91640XXXXXXXF40000217032117263800A
>>
4.7.4 Removing an SMS/PDU
sms del ID
First you need the ID of the PDU you want to remove. It can be obtained using the sms recv
command. Then to remove a SMS/PDU, type: sms del ID
Example:
>> sms list
new/total
0/1
Stored IDs: 1
>> sms del 1
>>
4.8 Check services available
Services available in current session:
To display which services that are available in current session, execute the command:
services
It will respond with the services (Home Automation and SMS) that are currently available
Example:
SMS=enabled
4.9 API Coding
The API can easily be extended with a custom front-end. When implementing a front-end, mind the
following:
The router might be behind a high-latency connection. Set a high timeout for your connection.
When logging in to the API, the password must be encoded either ISO-8859-1or UTF-8
When executing a command (for example ts aliases), each line of output from the API is
terminated with LF (Line Feed, ASCII character 10d) and the last line of output from the
command is ETB (End of Transmission Block, ASCII character 23d).