Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Device Management features include:

  1. Code Download (Xconf, DCM)
  2. Log Upload
  3. Telemetry
  4. RDK Feature Control (RFC)
  5. SNMP
  6. TR-69
  7. webPA

Code Download (Xconf, DCM)

Remote devices like set top boxes and DVRs have settings to control certain activities. For instance, STBs need to know when to upload log files, or when to check for a new firmware update. In order to remotely manage a large population of devices, we need a solution that lets support staff define instructions and get the instructions to the devices. These are Device Configuration Manager (DCM) and Xconf (X1 Configuration Manager). DCM and Xconf are management services that delivers certain configuration details to set-top-boxes (STB). 

Xconf and Device Configuration Manager (DCM) began as separate solutions. Both the server and STB implementations evolved separately. Yet both have overlapping functionality. Recently, engineers have made some progress in consolidating the server modules. But the STB modules remain discreet. And the server components still could benefit from more consolidation.

RDK Code Download (RCDL)

Image Removed

Server side (Business logic) identifies which version of code need to be provided for download. Xconf download is triggered by the device ie: device reaches out to server sending information like current firmware and capabilities. It asks for which firmware version to download and from where to download. RCDL (RDK Code Download or Remote Code Download) uses eSTB interface to downlaod code from server.

Xconf Code Download Highlights:

  • Users can set download protocol
    • HTTP as preferred method
    • Provide HTTP and TFTP endpoints
    • Default to TFTP if no HTTP support
  • Ability to publish capabilities from CPE device
    • rebootDecoupled (no need to reboot soon after firmware download. Reboot later or at a scheduled time)
    • supportsFullHttpUrl
  • Ability to decouple downloads from reboot
  • Ability to schedule firmware checks (During bootup/Later), Configurable based on timezones, quiet times
  • Ability to redirect to secure download end points

Get Configuration

An STB makes an HTTP request to Xconf to get firmware information. The request may be an HTTP POST or GET. The response is a JSON string. An example GET for the production Xconf instance would look like this.

Code Block
https://<xconf server url>/xconf/stb?eStbMac=14:D4:FE:55:86:0A&env=PROD&model=abcd&DRfirmwareVersion=abc123

The following table lists some of the parameters which may be sent. 

...

Specifies capabilities of the STB that Xconf needs to know about. See capabilities table below for details. This is a multi-valued parameter. More than one capability may be sent. Separate the values using url?capabilities=value1&capabilities=value2&capabilities=value3

...

mocaMac

...

 

...

MAC Address of the MoCA interface; currently ignored by xconf

...

Capabilities

The following table lists the different values for the capabilities parameter that may be send in request to Xconf. This is a multi-valued parameter. More than one capability may be sent.

 These capabilities should not live forever. Once all boxes are known to support a given capability, Xconf should deprecate/delete code that handles STBs that don't support the capability and STB should stop sending the capability value.

...

STB is capable of performing HTTP firmware downloads using DNS resolved URIs. The download will run in the eSTB. Until this, the eCM performed the download. eCM does not have DNS and thus requires an IP address.

...


Returned JSON Firmware Information

Xconf returns firmware information as a JSON string as follows (just a sample).

{
"firmwareDownloadProtocol": "tftp",
"firmwareFilename": "<filename>sd-signed",
"firmwareLocation": "<ip_address>",
"firmwareVersion": "1.0.1.0.8",

"firmwareIDK": "[TBD]",

"firmwareDownloadSchedule": "[TBD]" 

"rebootImmediately":false,
}

Xconf should be able to add new values and STB should still be able to process the JSON string. STB should ignore any values it doesn't understand.

Error Handling

500 Internal Server Error

On server error STB may implement retry logic or not. Most 500 errors will be caused by bad requests, but some may be temporary conditions.

Timeout

If the request to Xconf times out, STB should implement retry logic.

404 / Empty JSON

There are times when Xconf does not wish to respond to the STB. In these cases it will send an HTTP 404 (not found) response and a prose text reason for why the response was not handled. The STB should ignore these responses (and not retry the request to Xconf).

RDK Telemetry


RDK Feature Control (RFC)

...