username@hostname> set cli config-output-format ?
default default
json json
set set
xml xml
For example, in the default setting
the config-output-format looks like this:
username@hostname# show deviceconfig system dns-setting servers
servers {
primary 1.2.3.4;
secondary 1.2.3.5;
}
Changing the setting to set results
in output that looks like this:
username@hostname# show deviceconfig system dns-setting servers
set deviceconfig system dns-setting servers primary 1.2.3.4
set deviceconfig system dns-setting servers secondary 1.2.3.5
[edit]
[edit]
Changing the setting to xml results
in output that looks like this:
username@hostname# show deviceconfig system dns-setting servers
<response status="success" code="19">
<result total-count="1" count="1">
<servers>
<primary>1.2.3.4</primary>
<secondary>1.2.3.5</secondary>
</servers>
</result>
</response>