pmcf 2.53.6 → 2.53.7

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "2.53.6",
3
+ "version": "2.53.7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -217,6 +217,9 @@ export class DHCPService extends Service {
217
217
  "rebind-timer": 1800,
218
218
  "valid-lifetime": 86400,
219
219
  "hooks-libraries": [
220
+ {
221
+ library: "/usr/lib/kea/hooks/libdhcp_ddns_tuning.so"
222
+ },
220
223
  {
221
224
  library: "/usr/lib/kea/hooks/libdhcp_lease_cmds.so"
222
225
  },
@@ -306,11 +309,10 @@ export class DHCPService extends Service {
306
309
  "forward-ddns": {
307
310
  "ddns-domains": dnsServersSlot([...this.domains])
308
311
  },
309
- /*
310
312
  "reverse-ddns": {
311
- "ddns-domains": dnsSlot()
313
+ "ddns-domains": dnsServersSlot([...this.domains])
312
314
  },
313
- */
315
+
314
316
  loggers
315
317
  }
316
318
  };
@@ -343,7 +345,8 @@ export class DHCPService extends Service {
343
345
  "ip-address": networkInterface.networkAddress(
344
346
  n => n.family === "IPv4"
345
347
  ).address,
346
- hostname: networkInterface.hostName
348
+ hostname: networkInterface.hostName,
349
+ "client-classes": ["SKIP_DDNS"]
347
350
  };
348
351
  })
349
352
  .sort((a, b) => a.hostname.localeCompare(b.hostname));