<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: [NSO-4.6.2] cli perform deactivate over junos using MAAPI in NSO Developer Hub Discussions</title>
    <link>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/4914616#M8026</link>
    <description>&lt;P&gt;Works fine on real devices where as problem or limitation on netsim devices&lt;/P&gt;</description>
    <pubDate>Wed, 30 Aug 2023 13:31:36 GMT</pubDate>
    <dc:creator>sayeali</dc:creator>
    <dc:date>2023-08-30T13:31:36Z</dc:date>
    <item>
      <title>[NSO-4.6.2] cli perform deactivate over junos using MAAPI</title>
      <link>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/3731610#M2786</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I would like to perform over JUNIPER devices :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;rguilloux@ncs(config)# deactivate devices device ysty....&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wants to use ncs maapi/maagic python API to perform it but I don't find any command in root object for it :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;with ncs.maapi.Maapi() as m:
    with ncs.maapi.Session(m, "nso", "pyNORTHNSO"):
        with m.start_write_trans() as t:
            root = ncs.maagic.get_root(t)
            out = root.devices.device["RNET-M6"]
            for i in out.config:
                print i&lt;/PRE&gt;
&lt;P&gt;Any idea of how to launch deactivate using NSO python API ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Romain&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2019 12:14:00 GMT</pubDate>
      <guid>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/3731610#M2786</guid>
      <dc:creator>romain.guilloux</dc:creator>
      <dc:date>2019-03-01T12:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: [NSO-4.6.2] cli perform deactivate over junos using MAAPI</title>
      <link>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/3733518#M2810</link>
      <description>&lt;P&gt;You would have to use the low-level MAAPI (not MAAGIC) API to set attributes ("inactive" is an attribute). Setting attributes from a service does not work the way you'd expect, however, so I can't recommend this approach.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Oct 2018 09:00:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/3733518#M2810</guid>
      <dc:creator>Jan Lindblad</dc:creator>
      <dc:date>2018-10-26T09:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: [NSO-4.6.2] cli perform deactivate over junos using MAAPI</title>
      <link>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/4913110#M8012</link>
      <description>&lt;P&gt;Hello Jan ,&lt;BR /&gt;&lt;BR /&gt;Could you pls suggest How to perform the same using restconf .&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&amp;nbsp;this /restconf/data/tailf-ncs:devices/device=junos1/config/junos:configuration/groups=BASE-SYSTEM/system/commit/synchronize&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;to&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;inactive: /restconf/data/tailf-ncs:devices/device=junos1/config/junos:configuration/groups=BASE-SYSTEM/system/commit/synchronize&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;to this&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Aug 2023 15:23:53 GMT</pubDate>
      <guid>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/4913110#M8012</guid>
      <dc:creator>sayeali</dc:creator>
      <dc:date>2023-08-28T15:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: [NSO-4.6.2] cli perform deactivate over junos using MAAPI</title>
      <link>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/4913546#M8017</link>
      <description>&lt;P&gt;As far as I am aware, there is no ready made YANG rpc/action to set (and remove) the inactive flag on some data tree path. The good news is that you can (easily?) write such an action with the YANG interface of your choice. That action would then use the low level MAAPI interface to set (or remove) the inactive attribute. The action could be specific to the path you mention, or you could make it more generic, accepting a data tree path to the element to be inactivated.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Aug 2023 07:38:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/4913546#M8017</guid>
      <dc:creator>Jan Lindblad</dc:creator>
      <dc:date>2023-08-29T07:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: [NSO-4.6.2] cli perform deactivate over junos using MAAPI</title>
      <link>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/4913626#M8020</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;Thanks for the prompt reply Jan .&lt;BR /&gt;&lt;BR /&gt;I have got a one way of doing that is using inactive and using content-type as +xml instead +json&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;url = "&lt;SPAN&gt;http://X.X.X.X:Port/restconf/data/&lt;/SPAN&gt;"&lt;/P&gt;
&lt;DIV&gt;content-type = "&lt;SPAN&gt;application/yang-data+xml&lt;/SPAN&gt;"&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;devices&lt;/SPAN&gt; &lt;SPAN&gt;xmlns&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;A href="http://tail-f.com/ns/ncs" target="_blank"&gt;http://tail-f.com/ns/ncs&lt;/A&gt;"&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;device&lt;/SPAN&gt; &lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;name&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;junos1&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;name&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;config&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;configuration&lt;/SPAN&gt; &lt;SPAN&gt;xmlns&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;A href="http://xml.juniper.net/xnm/1.1/xnm" target="_blank"&gt;http://xml.juniper.net/xnm/1.1/xnm&lt;/A&gt;"&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;groups&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;name&lt;/SPAN&gt; &lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;BASE-SYSTEM&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;name&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;system&lt;/SPAN&gt; &lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;commit&lt;/SPAN&gt; &lt;SPAN&gt;active&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"active"&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;synchronize&lt;/SPAN&gt; &lt;SPAN&gt;/&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;commit&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;system&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;groups&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;configuration&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;config&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;device&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;devices&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;However its working fine on till commit level of tree when I m trying to perform on synchronize its not working .&lt;BR /&gt;&lt;BR /&gt;Any suggestion&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 29 Aug 2023 08:14:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/4913626#M8020</guid>
      <dc:creator>sayeali</dc:creator>
      <dc:date>2023-08-29T08:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: [NSO-4.6.2] cli perform deactivate over junos using MAAPI</title>
      <link>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/4913642#M8021</link>
      <description>&lt;P&gt;The request message to reactivate &amp;lt;commit&amp;gt; looks right to me (assuming that was the element deactivated earlier). If the device doesn't behave as expected when you send this message, maybe posing a question to the device vendor's support organization might give some clue as to what is wrong? Or you could resort to classical management operations like create/delete.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Aug 2023 08:40:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/4913642#M8021</guid>
      <dc:creator>Jan Lindblad</dc:creator>
      <dc:date>2023-08-29T08:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: [NSO-4.6.2] cli perform deactivate over junos using MAAPI</title>
      <link>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/4913648#M8022</link>
      <description>&lt;P&gt;As mentioned above your assumption is correct I have sent you a sample of reactivation.&lt;/P&gt;
&lt;DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;devices&lt;/SPAN&gt; &lt;SPAN&gt;xmlns&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;A href="http://tail-f.com/ns/ncs" target="_blank"&gt;http://tail-f.com/ns/ncs&lt;/A&gt;"&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;device&lt;/SPAN&gt; &lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;name&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;junos1&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;name&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;config&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;configuration&lt;/SPAN&gt; &lt;SPAN&gt;xmlns&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;A href="http://xml.juniper.net/xnm/1.1/xnm" target="_blank"&gt;http://xml.juniper.net/xnm/1.1/xnm&lt;/A&gt;"&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;groups&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;name&lt;/SPAN&gt; &lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;BASE-SYSTEM&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;name&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;system&lt;/SPAN&gt; &lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;commit&lt;/SPAN&gt;&amp;nbsp;in&lt;SPAN&gt;active&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"inactive"&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;synchronize&lt;/SPAN&gt; &lt;SPAN&gt;/&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;commit&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;system&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;groups&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;configuration&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;config&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;device&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;devices&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;However when I m performing the same with .&lt;BR /&gt;......above similar code&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;system&lt;/SPAN&gt; &lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;commit&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;synchronize&lt;/SPAN&gt; &lt;SPAN&gt;inactive&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"inactive"&lt;/SPAN&gt;&lt;SPAN&gt;/&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;commit&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;system&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;BR /&gt;....... code&lt;BR /&gt;&lt;BR /&gt;apparently this is not performing the expected operation similar to how we get output from CLI on triggering below command .&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;admin@ncs(config)# &lt;/SPAN&gt;&lt;SPAN class="s1"&gt;deactivate devices device junos1 config configuration groups BASE-SYSTEM system commit synchronize&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;admin@ncs(config)# show full-configuration devices device junos1 config configuration groups BASE-SYSTEM system commit synchronize | display xml&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;admin@ncs(config)# show full-configuration devices device junos1 config configuration groups BASE-SYSTEM system commit synchronize | display xml&lt;BR /&gt;&lt;BR /&gt;```&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&amp;lt;config xmlns="&lt;A href="http://tail-f.com/ns/config/1.0" target="_blank"&gt;http://tail-f.com/ns/config/1.0&lt;/A&gt;"&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;&amp;lt;devices xmlns="&lt;A href="http://tail-f.com/ns/ncs" target="_blank"&gt;http://tail-f.com/ns/ncs&lt;/A&gt;"&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&amp;lt;device&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&amp;lt;name&amp;gt;junos1&amp;lt;/name&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&amp;lt;config&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&amp;lt;configuration xmlns="&lt;A href="http://xml.juniper.net/xnm/1.1/xnm" target="_blank"&gt;http://xml.juniper.net/xnm/1.1/xnm&lt;/A&gt;"&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&amp;lt;groups&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&amp;lt;name&amp;gt;BASE-SYSTEM&amp;lt;/name&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&amp;lt;system&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&amp;lt;commit&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&amp;lt;synchronize inactive="inactive"/&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&amp;lt;/commit&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&amp;lt;/system&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&amp;lt;/groups&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&amp;lt;/configuration&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&amp;lt;/config&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&amp;lt;/device&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;&amp;lt;/devices&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&amp;lt;/config&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;```&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Aug 2023 08:53:09 GMT</pubDate>
      <guid>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/4913648#M8022</guid>
      <dc:creator>sayeali</dc:creator>
      <dc:date>2023-08-29T08:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: [NSO-4.6.2] cli perform deactivate over junos using MAAPI</title>
      <link>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/4913660#M8023</link>
      <description>&lt;P&gt;I would suggest connecting with the device vendor to find out how the inactive mechanism works in this part of the data tree. Once we know that, we can try to make NSO send the right thing.&amp;nbsp; Or, as there doesn't seem to be tons of config below &amp;lt;synchronize&amp;gt; that you are trying to preserve temporarily by marking it as inactive, maybe delete and create may be a more suitable choice of operations.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Aug 2023 09:11:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/4913660#M8023</guid>
      <dc:creator>Jan Lindblad</dc:creator>
      <dc:date>2023-08-29T09:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: [NSO-4.6.2] cli perform deactivate over junos using MAAPI</title>
      <link>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/4913718#M8024</link>
      <description>&lt;P&gt;THanks Jan Probably will try for TAC or device vendor as there are couple of more commands need to be executed .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Aug 2023 09:31:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/4913718#M8024</guid>
      <dc:creator>sayeali</dc:creator>
      <dc:date>2023-08-29T09:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: [NSO-4.6.2] cli perform deactivate over junos using MAAPI</title>
      <link>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/4914616#M8026</link>
      <description>&lt;P&gt;Works fine on real devices where as problem or limitation on netsim devices&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 13:31:36 GMT</pubDate>
      <guid>https://community.cisco.com/t5/nso-developer-hub-discussions/nso-4-6-2-cli-perform-deactivate-over-junos-using-maapi/m-p/4914616#M8026</guid>
      <dc:creator>sayeali</dc:creator>
      <dc:date>2023-08-30T13:31:36Z</dc:date>
    </item>
  </channel>
</rss>

