Navigation
Supported Platforms
Related Documentation
- ACX, EX, M, MX, PTX, SRX, T Series
- Configuring Help Text for Op Scripts
- Declaring Arguments in Op Scripts
- ACX, EX, M, MX, SRX, T Series
- Using RPCs and Operational Mode Commands in Op Scripts
Mapping Operational Mode Commands and Output Fields to Junos XML Notation
In op scripts, you use tag elements from the Junos XML API to represent operational mode commands and output fields. For the Junos XML equivalent of commands and output fields, consult the Junos XML API Operational Reference.
You can also display the Junos XML tag elements for operational mode command output by directing the output from the command to the | display xml command:
user@host> command-string | display xml
For example:
user@host> show interfaces terse | display xml
<rpc-reply xmlns:junos="http://xml.juniper.net/junos/10.0R1/junos"> <interface-information xmlns="http://xml.juniper.net/junos/10.0RI0/junos-interface" junos:style="terse"> <physical-interface> <name>dsc</name> <admin-status>up</admin-status> <oper-status>up</oper-status> </physical-interface> <physical-interface> <name>fxp0</name> <admin-status>up</admin-status> <oper-status>up</oper-status> <logical-interface> <name>fxp0.0</name> <admin-status>up</admin-status> <oper-status>up</oper-status> ...
Related Documentation
- ACX, EX, M, MX, PTX, SRX, T Series
- Configuring Help Text for Op Scripts
- Declaring Arguments in Op Scripts
- ACX, EX, M, MX, SRX, T Series
- Using RPCs and Operational Mode Commands in Op Scripts
Published: 2013-03-05
Supported Platforms
Related Documentation
- ACX, EX, M, MX, PTX, SRX, T Series
- Configuring Help Text for Op Scripts
- Declaring Arguments in Op Scripts
- ACX, EX, M, MX, SRX, T Series
- Using RPCs and Operational Mode Commands in Op Scripts