NETCONF basics (not on blueprint)
DELETE partial configuration
General information on “DELETE partial configuration”:
- To delete partial configuration, the operation=“delete” statement must be inserted into the configuration which gets pushed via manager.edit_config
NETCONF DELETE partial configuration (example):
<config>
<native xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-native">
<router>
<ospf xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-ospf">
<id>1</id>
<network operation="delete">
<ip>0.0.0.0</ip>
<mask>255.255.255.255</mask>
<area>0</area>
</network>
</ospf>
</router>
</native>
</config>