Help us improve your experience.

Let us know what you think.

Do you have time for a two-minute survey?

 
 

Request Operational Information Using the Junos XML Protocol

Within a Junos XML protocol session, a client application can request information about the current status of a Junos device. To request operational information, a client application emits the specific request tag element from the Junos XML API that returns the desired information.

Table 1 provides examples of request tags, which request the same information as the equivalent CLI command..

Table 1: Examples of Request Tags and Equivalent CLI Command
Request Tag CLI Command
<get-interface-information> show interfaces
<get-chassis-inventory> show chassis hardware
<get-system-inventory> show software information

You can determine the appropriate Junos XML request tag using multiple methods, including:

For example, the following command displays the request tag corresponding to the show interfaces command:

To execute an RPC, the client application encloses a request tag in an <rpc> element. The syntax depends on whether the corresponding CLI command has any options included.

The client application can specify the format of the information returned by the Junos XML protocol server. By setting the optional format attribute in the opening operational request tag, a client application can specify the format of the response as XML-tagged format, which is the default, formatted ASCII text, or JavaScript Object Notation (JSON). For more information about specifying the format, see Specify the Output Format for Operational Information Requests in a Junos XML Protocol Session.

Note:

When displaying operational or configuration data that contains characters outside the 7-bit ASCII character set, the Junos device escapes and encodes these character using the equivalent UTF-8 decimal character reference. For more information see How Character Encoding Works on Juniper Networks Devices.

If the client application requests XML output, the Junos XML protocol server encloses its response in the specific response tag element that corresponds to the request tag element, which is then enclosed in an <rpc-reply> tag element.

For example, if the client application sends the <get-interface-information> RPC, the server returns the <interface-information> response tag.

For XML format, the opening tag for each operational response includes the xmlns attribute. The attribute defines the XML namespace for the enclosed tag elements that do not have a namespace prefix (such as junos:). The namespace indicates which Junos XML document type definition (DTD) defines the set of tag elements in the response.

The Junos XML API defines separate DTDs for operational responses from different software modules. For instance, the DTD for interface information is called junos-interface.dtd and the DTD for chassis information is called junos-chassis.dtd. The division into separate DTDs and XML namespaces means that a tag element with the same name can have distinct functions depending on which DTD it is defined in.

The namespace is a URL of the following form:

where:

  • release-code is the standard string that represents the Junos OS release that is running on the Junos XML protocol server device.

  • category specifies the DTD.

If the client application requests the output in formatted ASCII text, the Junos XML protocol server encloses its response in an <output> tag, which is enclosed in an <rpc-reply> tag.

If the client application requests the output in JSON format, the Junos XML protocol server encloses the JSON data in the <rpc-reply> tag element.

Change History Table

Feature support is determined by the platform and release you are using. Use Feature Explorer to determine if a feature is supported on your platform.

Release
Description
16.1
Starting in Junos OS Release 16.1, devices running Junos OS emit JSON-formatted configuration data using a new default implementation for serialization.
14.2
Starting in Junos OS Release 14.2, a client application can request operational and configuration information in JSON format.