mfc / beuser-iprange
restrict BE-user to IP-range
Installs: 43 931
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 1
Open Issues: 2
Type:typo3-cms-extension
Requires
- php: ^7.2
- typo3/cms-core: ^8.7||^9.5||^10.4
Replaces
This package is auto-updated.
Last update: 2024-10-26 07:53:56 UTC
README
What does it do?
- It gives the possibility to configure a valid IP-range for BE-users
- There are 2 vars for configuration: one for admins and one for other be-user
IP-ranges are configured in a comma-list. Only v4-addresses are valid.
Examples:
- 192.168.0.1-192.168.0.15 is valid for any IP-address from 192.168.0.1 to 192.168.0.15
- 127.0.0.1-127.0.0.1 is valid for a single IP-address 127.0.0.1 (only from local machine)
Configuration
Use localconf.php for configuration.
- For Admins:
$GLOBALS['TYPO3_CONF_VARS']['BE']['adminAuth']['ipRange'] = '192.168.0.1-192.168.0.15,96.0.112.80-96.0.112.96';
- For other BE-users:
$GLOBALS['TYPO3_CONF_VARS']['BE']['userAuth']['ipRange'] = '192.168.0.1-192.168.0.15,96.0.112.80-96.0.112.96';