netconf: Allow IPv6 connections by default in factory-config

By default, netopeer2 will accept connections from
INADDR_ANY (0.0.0.0), which limits it to IPv4. Open it up to include
IPv6 as well.
This commit is contained in:
Tobias Waldekranz
2023-05-25 16:34:50 +02:00
committed by Joachim Wiberg
parent cd52a42388
commit 3424985b2b
@@ -0,0 +1,16 @@
{
"ietf-netconf-server:netconf-server": {
"listen": {
"endpoint": [
{
"name": "default-ssh",
"ssh": {
"tcp-server-parameters": {
"local-address": "::"
}
}
}
]
}
}
}