I have converted my website from ASP.NET to ASP.NET Core.
In the original ASP.NET project, I had restricted some IPs via the webconfig like this:
<system.webServer>
<security>
<ipSecurity allowUnlisted="true">
<add ipAddress="92.127.176.55" />
<add ipAddress="92.124.0.0" subnetMask="255.252.0.0" />
</ipSecurity>
</security>
</system.webServer>
Is it possible to restrict IPs in the ASP.NET Core project in a similar way?