05-22-2020 04:34 PM
Hi everybody,
thank you for a great resource!
I'm attempting at configuring a CSR router (16.09.05) with netconf - however not with xml, rather with cli stuff. I'm getting this error message:
<?xml version="1.0" encoding="UTF-8"?> <rpc-reply xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="101" xmlns:cpi="http://www.cisco.com/cpi_10/schema"><rpc-error> <error-type>application</error-type> <error-tag>unknown-element</error-tag> <error-severity>error</error-severity> <error-path> /rpc/edit-config/config </error-path><error-info><bad-element>cli-config-data</bad-element> </error-info> </rpc-error> </rpc-reply>
The snippet i'm trying to send to the router is the following:
<?xml version="1.0" encoding="UTF-8"?> <rpc message-id="101" xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" xmlns:cpi="http://www.cisco.com/cpi_10/schema"> <edit-config> <target> <running/> </target> <config> <cli-config-data> hostname test interface loo1000 ip address 192.168.1.1 255.255.255.0 <cli-config-data> </config> </edit-config> </rpc>
Just some garbage config to see if i could get it to work. I'm trying to get my head wrapped around the CPI name space but it is not working.
Has anyone had any success with this?
Thanks in advance.
/Kim