Map Operational Mode Commands and Output Fields to Junos XML Notation
In SLAX and XSLT op scripts, you use tag elements from the Junos XML API to represent operational mode commands and output fields in the scripts. For the Junos XML equivalent of commands and output fields, consult the Junos XML API Operational Developer 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> ...