Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleEquivalent rpc request
collapsetrue
Request 1:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<rpc message-id="m-464" xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
<get>
<filter xmlns:ns0="urn:ietf:params:xml:ns:netconf:base:1.0" ns0:type="subtree">
<cells xmlns="urn:gnodeb:test"/>
</filter>
</get>
</rpc>


Request 2 :

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<rpc message-id="m-444" xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
<get-config>
<source>
<running/>
</source>
<filter xmlns:ns0="urn:ietf:params:xml:ns:netconf:base:1.0" ns0:type="subtree">
<cells xmlns="urn:gnodeb:test"/>
</filter>
</get-config>
</rpc>


E2E Test Findings on config filtering

Response Read use-cases

DataStore(filter)SimulatorModel Contains
config:trueconfig:falseboth
passthrough-running
(config=true)
NetConf PnPconfig-true4xx ErrorNot tested*
Honeycomb**


passthrough-running
(config=all)
NetConf PnPconfig-trueconfig-falseNot tested*
Honeycomb**


* having issues creating/deploying a model with both config true and fasle data
** Honeycomb results have been recorded but need to be add here

Other available parameters :

...