-
Notifications
You must be signed in to change notification settings - Fork 195
Description
Hello !
I'm trying to upgrade netopeer2-2.4.5 -> netopeer2-v2.7.0-12-g2809ede.
(NOTE: I use versions from the devel to include some fixes related to the latest official release)
It seems the example files https://github.com/CESNET/netopeer2/tree/master/example_configuration are not up to date regarding the latest yang module changes.
At least that part needs to be updated, not sure if there are others yet:
netopeer2/example_configuration/ssh_listen.xml
Lines 6 to 10 in 616ec7b
| <ssh> | |
| <tcp-server-parameters> | |
| <local-address>0.0.0.0</local-address> | |
| </tcp-server-parameters> | |
| <ssh-server-parameters> |
--> local-address needs to be wrapped in a local-bind now:
<local-bind>
<local-address>addrr</local-address>
</local-bind>
- similar fix to be done in tls mode
These files are quite convenient for new users to understand how the software must be configured, so maybe it would be nice to have some tests in CI validating that they are always valid ?