@per
This is the topic I mentioned before.
@cohult @per
One Netconf session to one ssh session. This fully makes sense.
The JNC package I am using, is implementing this logic:
https://github.com/tail-f-systems/JNC/blob/master/jnc/src/com/tailf/jnc/Device.java#L406
Now my questions is:
For one ssh connection (or even lower level, one socket connection between confd client and confd server), does it allow multiple netconf sessions living simultaneously?
Or when I open a new netconf session, the previous opened netconf session must be closed before the new netconfd session open ?
Based on my understanding about how socket it works, it is feasible to support multiple session simultaneously but may not deserve to do that.
Now I am really confused by whether one socket connection supporting multiple netconf session.