Questions tagged [netconf]
53 questions
0
votes
0 answers
How to query multiple config elements simultaneously?
I am having trouble with querying multiple config elements with NCCLIENT (0.6.9).
Could you please, help me to find the correct syntax? I need to query all those in one call to reproduce a bug.
The filter below returns an…

Istvan
- 13
- 2
0
votes
1 answer
using netconf_get in an ansible playbook
I am testing out using netconf via Ansible and I keep getting this error when running the playbook:
ansible.module_utils.connection.ConnectionError:
AuthenticationException('Authentication timeout.',)
I am ablte to use ssh over port 830 to my…

rev_it_up
- 75
- 2
- 11
0
votes
1 answer
SSH Access Netconf Server in OpenDaylight
I need to access the config subsystem (a.ka. the datastore) in OpenDaylight. I have read the user guide and know that the way to access it is via:
ssh admin@localhost -p 2830 -s netconf
or (the way I shell into it):
# netopeer2-cli
> connect --ssh…

E.S.
- 2,733
- 6
- 36
- 71
0
votes
2 answers
from ncclient import manager ; unable to call close_session()
I am trying to execute following code but I am getting these errors for "close_session()" function. how to fix it? I am new to python.
I am learning netconf and trying to configure router using python netconf. I have imported library and it seems I…

autostack
- 57
- 3
- 7
0
votes
2 answers
Opendaylight yangtools XML encoding out of order for keyed list
When yang model has a list with multiple keys, ODL is not maintaining the order of the attributes while sending the request down to the netconf device. It appears from RFC 6020 that order needs to be strictly followed.
"The list's key nodes are…

Yug
- 11
- 3
0
votes
1 answer
NETCONF RPC using ncclient, how to remove XML namespace prefix tag 'nc:'?
I dont think this is an issue with ncclient, but I cant find option to turn off xml namespace prefix tagging.
ncclient sends this RPC,

Mirko Kovacevic
- 13
- 3
0
votes
1 answer
Set both ipv4 and ipv6 for confd netconf ssh connection
I am using confd version 6.3. I'm trying to set it up to be able to ssh with netconf over ipv4 and ipv6. My related configuration looks as follows:
true
true
…

szaman
- 6,666
- 13
- 53
- 81
-1
votes
2 answers
How to deal with exceptions inside a event-stream using Flask
This is my first application using Flask and SSE, I need to find a way to return to the page some exceptions that could happen during the execution of the event.
This application uses Netconf to get some realtime information from a router.
I've…