I need allow internet access from a set of IPs and deny everything else.
How can I do that?
I tried this:
<RequireAll>
Require all denied
Require ip x.x.x.x/xx y.y.y.y/yy
</RequireAll>
this:
<RequireAll>
Require all denied
Require ip x.x.x.x/xx
Require ip y.y.y.y/yy
</RequireAll>
and this:
<RequireAny>
Require ip x.x.x.x/xx y.y.y.y/yy
</RequireAll>
also this:
Require all denied
Require ip x.x.x.x/xx
Require ip y.y.y.y/yy
I couldn't find the correct way to do the restriction.