Automation

last person joined: 8 days ago 

Ask questions and share experiences about Apstra, Paragon, and all things network automation.
  • 1.  get output of "show configuration groups junos-defaults applications" via NETCONF

    Posted 04-16-2012 08:58
    Dear Community, right now I am unable to find how to retrieve the output of the CLI command show configuration groups junos-defaults applications via netconf -- means I am unable to find how to get this output via the get_config NETCONF method. Can someone point me to the right sources - how do I set up the NETCONF get_config method to retrieve that piece of information? Thank you in advance -- Joachim


  • 2.  RE: get output of "show configuration groups junos-defaults applications" via NETCONF
    Best Answer

    Posted 04-17-2012 07:33

    Never mind -- found it -- following the example of

    NETCONF Doc

     

    specify the filter as

     

    <filter type=\"subtree\">
    <configuration>
    <groups>
    <name>junos-defaults</name>
    <applications>
    </applications>
    </groups>
    </configuration>
    </filter>

     

    My apologies if this was a silly question....