Skip to content

Latest commit

 

History

History
22 lines (12 loc) · 767 Bytes

README.md

File metadata and controls

22 lines (12 loc) · 767 Bytes

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.