ACL access fix
gitea/docker-discover/pipeline/head This commit looks good Details

This commit is contained in:
Juan Ferrer 2021-11-22 18:55:37 +01:00
parent bc26c5a805
commit 4860007a50
2 changed files with 5 additions and 1 deletions

View File

@ -34,6 +34,10 @@ acls:
ips:
- 10.5.1.0/24
zones: all
dmz:
ips:
- 10.0.0.0/16
zones: all
defaults:
https: true
zone: public

View File

@ -256,7 +256,7 @@ async function updateProxy(firstRun) {
let match = false;
for (const bNet of bAcl.ips) {
match = bNet.mask === 0;
if (bNet.mask > 0) {
if (bNet.mask > 0 && bNet.mask <= aNet.mask) {
const netMask = (~0) << (32 - bNet.mask);
const aSubnet = aNet.ip & netMask;
const bSubnet = bNet.ip & netMask;