pmcf 3.7.2 → 3.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/services/kea.mjs +5 -5
package/package.json
CHANGED
package/src/services/kea.mjs
CHANGED
|
@@ -102,7 +102,7 @@ const KeaServiceTypeDefinition = {
|
|
|
102
102
|
endpoints: [
|
|
103
103
|
{
|
|
104
104
|
family: "unix",
|
|
105
|
-
path: "/run/kea/
|
|
105
|
+
path: "/run/kea/ctrl-4"
|
|
106
106
|
}
|
|
107
107
|
]
|
|
108
108
|
},
|
|
@@ -110,7 +110,7 @@ const KeaServiceTypeDefinition = {
|
|
|
110
110
|
endpoints: [
|
|
111
111
|
{
|
|
112
112
|
family: "unix",
|
|
113
|
-
path: "/run/kea/
|
|
113
|
+
path: "/run/kea/ctrl-6"
|
|
114
114
|
}
|
|
115
115
|
]
|
|
116
116
|
},
|
|
@@ -118,7 +118,7 @@ const KeaServiceTypeDefinition = {
|
|
|
118
118
|
endpoints: [
|
|
119
119
|
{
|
|
120
120
|
family: "unix",
|
|
121
|
-
path: "/run/kea/
|
|
121
|
+
path: "/run/kea/ctrl-ddns"
|
|
122
122
|
}
|
|
123
123
|
]
|
|
124
124
|
}
|
|
@@ -126,7 +126,7 @@ const KeaServiceTypeDefinition = {
|
|
|
126
126
|
}
|
|
127
127
|
};
|
|
128
128
|
|
|
129
|
-
const keaVersion = 3.
|
|
129
|
+
const keaVersion = 3.1;
|
|
130
130
|
export const fetureHasHTTPEndpoints = keaVersion >= 3.0;
|
|
131
131
|
|
|
132
132
|
export class KeaService extends Service {
|
|
@@ -225,7 +225,7 @@ export class KeaService extends Service {
|
|
|
225
225
|
"interfaces-config": {
|
|
226
226
|
interfaces: listenInterfaces(`IPv${family}`)
|
|
227
227
|
},
|
|
228
|
-
"control-
|
|
228
|
+
"control-sockets": [toUnix(this.endpoint(`kea-control-dhcp${family}`))],
|
|
229
229
|
"lease-database": {
|
|
230
230
|
type: "memfile",
|
|
231
231
|
"lfc-interval": 3600
|