I have an API proxy with dev, test, and production environment in Edge. I would like to limit access to dev and test proxies to a list or a range of IPs. The production should be wide-open. How can it be done?
Solved! Go to Solution.
Please see documentation on the Access Control policy here. That will allow you to do exactly what you need.
For example, see the following to allow only following IP addresses:
<AccessControl name="ACL"> <IPRules noRuleMatchAction="/DENY"> <MatchRule action="/ALLOW"> <SourceAddress mask="24">10.10.20.0</SourceAddress> <SourceAddress mask="24">10.10.30.0</SourceAddress> <SourceAddress mask="24">10.10.40.0</SourceAddress> </MatchRule> </IPRules> </AccessControl>