diff --git a/config.go b/config.go index 10e543a..1a6e7c2 100644 --- a/config.go +++ b/config.go @@ -151,10 +151,6 @@ func parseCIDRNetIP(section *ini.Section, keyName string) ([]netip.Addr, error) } addr := prefix.Addr() - if prefix.Bits() != addr.BitLen() { - return nil, errors.New("interface address subnet should be /32 for IPv4 and /128 for IPv6") - } - ips = append(ips, addr) } return ips, nil