nextcloud / limit_login_to_ip

Nextcloud app that lets you Limit login to IP ranges

Home Page:https://apps.nextcloud.com/apps/limit_login_to_ip

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Limit login to IP ranges

This app modifies the login logic to only allow logins from specified ip address ranges.

The allowed IP addresses have to be passed via occ app:config as a string separated by comma.

For example:

To allow 127.0.0.0/24:

  • occ config:app:set limit_login_to_ip whitelisted.ranges --value 127.0.0.0/24

To allow 127.0.0.0/24 and 192.168.0.0/24:

  • occ config:app:set limit_login_to_ip whitelisted.ranges --value 127.0.0.0/24,192.168.0.0/24

To allow 127.0.0.0/24 and also 192.168.0.0/24 as well as 2001:db8::/32:

  • occ config:app:set limit_login_to_ip whitelisted.ranges --value 127.0.0.0/24,192.168.0.0/24,2001:db8::/32

Alternatively, you can use admin settings to restrict logins to specific ip address ranges.

About

Nextcloud app that lets you Limit login to IP ranges

https://apps.nextcloud.com/apps/limit_login_to_ip

License:GNU Affero General Public License v3.0


Languages

Language:JavaScript 63.8%Language:PHP 31.6%Language:Makefile 1.8%Language:Gherkin 1.6%Language:Shell 0.6%Language:CSS 0.5%