Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Tom Bruce 122 posts 506 karma points
    Oct 27, 2017 @ 16:57
    Tom Bruce
    0

    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.

  • David Parr 48 posts 206 karma points
    Oct 27, 2017 @ 17:08
    David Parr
    0

    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

  • Mike Chambers 636 posts 1253 karma points c-trib
    Oct 27, 2017 @ 23:32
    Mike Chambers
    0

    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>
    
  • Jcr 20 posts 130 karma points
    Oct 30, 2017 @ 09:14
    Jcr
    104

    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

  • sneha george 4 posts 74 karma points
    Dec 11, 2018 @ 04:39
    sneha george
    0

    Hi JCR,

    I need to whitelist some ip adress ranges in umbraco web config.Can you tell me how to do that

  • sneha george 4 posts 74 karma points
    Jan 02, 2019 @ 09:32
    sneha george
    0

    Hi JCR,

    I need to whitelist some ip adress ranges in umbraco web config.Can you tell me how to do that

  • Tom 34 posts 154 karma points
    Mar 26, 2020 @ 18:27
    Tom
    0

    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/

Please Sign in or register to post replies

Write your reply to:

Draft