Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi, is it possible to restrict the Umbraco login page to specific IP addresses?
I'm using IIS7 to host the site.
I don't have access to IIS7 at this very moment but if memory serves me right you can choose the umbraco folder in IIS and then select 'Ip Address and Domain Restrictions'.
Thanks
https://docs.microsoft.com/en-us/iis/configuration/system.webserver/security/ipsecurity/add
if you don't have access to iis manager..
web.config update? single ips and ranges
<configuration> <location path="umbraco"> <system.webServer> <security> <ipSecurity allowUnlisted="false"> <clear/> <add ipAddress="xxx.xxx.xxx.xxx" allowed="true"/> <add ipAddress="xxx.xxx.xxx.0" subnetMask="255.255.255.0" allowed="true" /> </ipSecurity> </security> </system.webServer> </location> </configuration>
Hey Tom,
I've released a package that can add this functionality into umbraco.
Check it out here: https://our.umbraco.org/projects/backoffice-extensions/ourshield/
Either install via umbraco and get all the shield apps available, or alternatively, install the core and the desired app(s) via nuget
Hi JCR,
I need to whitelist some ip adress ranges in umbraco web config.Can you tell me how to do that
Maybe you can check out the following article, it explains how to do this: https://fungybytes.com/knowledge/restrict-umbraco-login-to-specific-ip-addresses/
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Restrict the Umbraco login page to specific IP addresses
Hi, is it possible to restrict the Umbraco login page to specific IP addresses?
I'm using IIS7 to host the site.
I don't have access to IIS7 at this very moment but if memory serves me right you can choose the umbraco folder in IIS and then select 'Ip Address and Domain Restrictions'.
Thanks
https://docs.microsoft.com/en-us/iis/configuration/system.webserver/security/ipsecurity/add
if you don't have access to iis manager..
web.config update? single ips and ranges
Hey Tom,
I've released a package that can add this functionality into umbraco.
Check it out here: https://our.umbraco.org/projects/backoffice-extensions/ourshield/
Either install via umbraco and get all the shield apps available, or alternatively, install the core and the desired app(s) via nuget
Hi JCR,
I need to whitelist some ip adress ranges in umbraco web config.Can you tell me how to do that
Hi JCR,
I need to whitelist some ip adress ranges in umbraco web config.Can you tell me how to do that
Maybe you can check out the following article, it explains how to do this: https://fungybytes.com/knowledge/restrict-umbraco-login-to-specific-ip-addresses/
is working on a reply...