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-true404 Error from SDN-C wrapped inside 500 error by DMI*Not tested**
Honeycomb***


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


* need to decide on expected response from DMI in this case: empty result, 404, 500 
** having issues creating/deploying a model with both config true and false data
*** Honeycomb results have been recorded but need to be add here

Other available parameters :

Recording

...