Changes between Version 24 and Version 25 of Hardware/jCM/dCM3/dUsage


Ignore:
Timestamp:
Sep 17, 2012, 3:48:13 PM (12 years ago)
Author:
Ilya Chigirev
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Hardware/jCM/dCM3/dUsage

    v24 v25  
    1919
    2020==== UDP ====
    21 UDP is the primary way to control the node, and is always running in the software. UDP is used to communicate between the CMC and the CM, each command from the CMC has a ACK (in software) to signify that the command was received and processed. UDP allows for the powering on, off, and reset of the node, as well as a reset command to the CM and enabling and disabling the update feature.
     21UDP commands are no longer being used as over firmware version 4.0
    2222
     23==== HTTP commands ====
     24
     25These are the commands that can be accessed through HTTP. They all return XML pages with the success or failure of the command
     26
     27|| /<command>      ||                                    ||
     28|| /HardOff        || Hard power off command             ||
     29|| /SoftOff        || Soft power off command             ||
     30|| /Reset          || Resets the node                    ||
     31|| /PowerOn        || Turns node on                      ||
     32|| /LantronixReset || Resets lantronix device (CM)       ||
     33|| /Status         || Returns the power state of the node||
     34
     35These commands are entered after the cm address, i.e.
     36{{{
     37http://10.1.x.x/Reset
     38}}}
     39
     40Format for the XML return pages is as follows.
     41===== Success =====
     42<<command>> OK </<command>>
     43e.g.
     44{{{
     45<Reset>OK<Reset>
     46}}}
     47
     48===== Failure =====
     49<error><command></error>
     50e.g.
     51{{{
     52<error>Reset</error>
     53}}}
     54
     55===== Status =====
     56<power>on/off</power>
    2357==== Command line interface (CLI) access ====
    2458
     
    85119|| Flow Control || None ||
    86120
    87 ==== HTTP commands ====
    88 
    89 There are 5 commands that can be accessed through HTTP
    90 
    91 || /<command> ||  ||
    92 || /HardOff || Hard power off command ||
    93 || /SoftOff || Soft power off command ||
    94 || /Reset || Resets the node ||
    95 || /PowerOn || Turns node on ||
    96 || /LantronixReset || resets lantronix device (CM) ||
    97 
    98 These commands are entered after the cm address, i.e.
    99 {{{
    100 http://10.1.x.x/Reset
    101 }}}
    102 If the cm has not been accessed through http prior since the last reset, then it will ask for the administrative username and password.
    103 
    104121==== Custom Phone control firmware ====
    105122