I'm using Squid and I want to know how to make a specific IP range of allowed connections, I use this
acl permittedips src 77.86.72.49
http_access allow permittedips
But I want to make an range that allows from 70.*.*.*
to 90.*.*.*
. How can I do this the easiest way?
You can use CIDR notation to signify this in the ACL for squid. You would want:
More information on CIDR:
http://en.wikipedia.org/wiki/CIDR_notation