I wanted to know how can i check the version of the ConfD software that I am using?
Basically, in our fullstack software ConfD is one entity. I am not sure of which version of ConfD is being used. How could i check this information?
I did confd_cli -help
, I didnt find a suitable option which can display the version information.
I think, I found the answer,
i should be checking this against the binary confd
, instead of confd_cli
So running - confd --version
displayed the version of the confd software.
waitai
3
Yes, that is one way. You can also query the ConfD version information through NETCONF such as:
netconf-console --get -x confd-state/version
1 Like