Remote Command Interface (RCI) step

  1. Click RCI to add the RCI step to your automation.

  2. Click the header to enter a name for the step.

  3. Type an RCI command in XML format. The following commands are supported:

    • query_setting

      Retrieves the device's current settings. For example, to return all of the settings for a device, type:

      <query_setting/>

      You can also return a subset of the device settings. For example:

      <query_setting>
        <system/>
      <query_setting/>

      will return the device settings under the system node.

    • set_setting

      Sets the device's configuration settings. For example, to set the name of a device:

      <set_setting>
        <system>
          <name>Techpubs_device</name>
        </system>
      </set_setting>
    • query_state

      Retrieves the state of the device. For example, to return the complete state of a device:

      <query_state/>

      You can also return a subset of the state. For example:

      <query_state>
        <metrics>
          <network>
            <device>
              <eth/>
            </device>
          </network>
        </metrics>
      </query_state>
    • set_state

      Sets the temporary running state of the device.

    • query_descriptor

      Retrieves the RCI descriptor from a device.

    • do_command

      Passes a command the specified target.

    See the Remote Command Interface (RCI) Specification for further information about RCI commands.

    To view the output of the RCI commands that retrieve information from the device:

    1. In the main menu, click Activity.

      The output of the RCI command step is listed by name.

    2. Click the Description to view Activity Details.

      The activity details lists the filenames, modification date, size and hash.