pmcf 3.13.9 → 3.13.10
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 +2 -1
package/package.json
CHANGED
package/src/services/kea.mjs
CHANGED
|
@@ -424,7 +424,8 @@ export class KeaService extends Service {
|
|
|
424
424
|
s =>
|
|
425
425
|
s.family === "IPv4" &&
|
|
426
426
|
// TODO keep out tailscale
|
|
427
|
-
s.cidr !== "100.64.0.2/32"
|
|
427
|
+
s.cidr !== "100.64.0.2/32" &&
|
|
428
|
+
s.cidr !== "100.64.0.3/32"
|
|
428
429
|
)
|
|
429
430
|
.map((subnet, index) => {
|
|
430
431
|
return {
|