Help us improve your experience.

Let us know what you think.

Do you have time for a two-minute survey?

 
 

How to Use RPCs and Operational Mode Commands in Op Scripts

Most Junos OS operational mode commands have XML equivalents. Op scripts can execute these XML commands on a local or remote device using the remote procedure call (RPC) protocol. All operational mode commands that have XML equivalents are listed in the Junos XML API Operational Developer Reference.

Use of RPCs and operational mode commands in op scripts is discussed in more detail in the following sections:

Using RPCs in Op Scripts

To use an RPC in a SLAX or XSLT op script, include the RPC in a variable declaration, and then invoke the RPC using the jcs:invoke() or jcs:execute() extension function with RPC variable as an argument. The jcs:invoke() function executes the RPC on the local device. The jcs:execute() function, in conjunction with a connection handle, executes the RPC on a remote device.

The following snippet, which invokes an RPC on the local device, is expanded and fully described in Example: Customize Output of the show interfaces terse Command Using an Op Script:

XSLT Syntax

SLAX Syntax

The following snippet invokes the same RPC on a remote device:

XSLT Syntax

SLAX Syntax

In Python op scripts, RPCs are easy to execute using Junos PyEZ APIs. Each instance of the Junos PyEZ Device class has an rpc property that enables you to execute any RPC available through the Junos XML API. After establishing a session with a local or remote device, you can execute the RPC by appending the rpc property and RPC method name to the device instance. The return value is an XML object starting at the first element under the <rpc-reply> tag.

To execute the RPC on the local device, create the Device instance using an empty argument list. To execute the RPC on a remote device, create an instance of Device using the appropriate arguments to connect to that device.

The following code invokes an RPC on the local device and prints the reply:

Python Syntax

The following code invokes the same RPC on a remote device and prints the reply:

Python Syntax

To execute an RPC on a remote device, an SSH session must be established. In order for the script to establish the connection, you must either configure the SSH host key information for the remote device on the local device where the script will be executed, or the SSH host key information for the remote device must exist in the known hosts file of the user executing the script. For each remote device where an RPC is executed, configure the SSH host key information with one of the following methods:

  • To configure SSH known hosts on the local device, include the host statement, and specify hostname and host key options for the remote device at the [edit security ssh-known-hosts] hierarchy level of the configuration.

  • To manually retrieve SSH host key information, issue the set security ssh-known-hosts fetch-from-server hostname configuration mode command to instruct Junos OS to connect to the remote device and add the key.

  • To manually import SSH host key information from a file, use the set security ssh-known-hosts load-key-file filename configuration mode command and specify the known-hosts file.

  • Alternatively, the user executing the script can log in to the local device, SSH to the remote device, and then manually accept the host key, which is added to that user’s known hosts file. In the following example, root is logged in to router1. In order to execute a remote RPC on router2, root adds the host key of router2 by issuing the ssh router2 operational mode command and manually accepting the key.

Displaying the RPC Tags for a Command

You can display the RPC XML tags for operational mode commands in the CLI of the device. To display the RPC XML tags for a command, enter display xml rpc after the pipe symbol ( | ).

The following example displays the RPC tags for the show route command:

SLAX and XSLT scripts can execute RPCs using the RPC XML tags. Python scripts must convert the RPC tags and command options into a format suitable for Python. For more information about using Junos PyEZ to execute RPCs and about mapping RPC tags to the corresponding Python method and method arguments, see Using Junos PyEZ to Execute RPCs on Devices Running Junos OS.

Using Operational Mode Commands in Op Scripts

Some operational mode commands do not have XML equivalents. SLAX and XSLT scripts can execute commands that have no XML equivalent using the <command> element. Python scripts can execute these commands by using the Junos PyEZ cli() method defined in the Device class.

If a command is not listed in the Junos XML API Operational Developer Reference, the command does not have an XML equivalent. Another way to determine whether a command has an XML equivalent is to issue the command followed by the | display xml command, for example:

If the output includes only tag elements like <output>, <cli>, and <banner>, the command might not have an XML equivalent. In the following example, the output indicates that the show host command has no XML equivalent:

Note:

For some commands that have an XML equivalent, the output of the piped | display xml command does not include tag elements other than <output>, <cli>, and <banner> only because the relevant feature is not configured. For example, the show services cos statistics forwarding-class command has an XML equivalent that returns output in the <service-cos-forwarding-class-statistics> response tag, but if the configuration does not include any statements at the [edit class-of-service] hierarchy level, then there is no actual data for the show services cos statistics forwarding-class | display xml command to display. The output is similar to this:

For this reason, the information in the Junos XML API Operational Developer Reference is usually more reliable.

SLAX and XSLT op scripts can include commands that have no XML equivalent. Use the <command>, <xsl:value-of>, and <output> elements in the script, as shown in the following code snippet. This snippet is expanded and fully described in Example: Display DNS Hostname Information Using an Op Script.

Python op scripts can execute commands that have no XML equivalent by using Junos PyEZ APIs. The cli() method defined in the Device class executes an operational mode command and returns the output in text format. For example:

You can also specify format='xml' to return the output formatted as Junos OS XML elements. For more information about the Junos PyEZ cli() method, see http://junos-pyez.readthedocs.org/en/latest/_modules/jnpr/junos/device.html#Device.cli .