pmcf 2.48.0 → 2.48.1
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/dhcp.mjs +4 -4
package/package.json
CHANGED
package/src/services/dhcp.mjs
CHANGED
|
@@ -295,18 +295,18 @@ export class DHCPService extends Service {
|
|
|
295
295
|
subnet: subnet.longAddress,
|
|
296
296
|
pools: [{ pool: subnet.addressRange.join(" - ") }],
|
|
297
297
|
|
|
298
|
-
"pd-pools": [
|
|
298
|
+
/*"pd-pools": [
|
|
299
299
|
{
|
|
300
300
|
prefix: "2001:db8:8::",
|
|
301
301
|
"prefix-len": 56,
|
|
302
302
|
"delegated-len": 64
|
|
303
303
|
}
|
|
304
|
-
]
|
|
304
|
+
],*/
|
|
305
305
|
reservations: [
|
|
306
|
-
{
|
|
306
|
+
/*{
|
|
307
307
|
duid: "01:02:03:04:05:0A:0B:0C:0D:0E",
|
|
308
308
|
"ip-addresses": ["2001:db8:1::100"]
|
|
309
|
-
}
|
|
309
|
+
}*/
|
|
310
310
|
]
|
|
311
311
|
};
|
|
312
312
|
}),
|