restrict BE-user to IP-range
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, (*1)
IP-ranges are configured in a comma-list. Only v4-addresses are valid., (*2)
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), (*3)
Configuration, (*4)
Use localconf.php for configuration., (*5)
$GLOBALS['TYPO3_CONF_VARS']['BE']['adminAuth']['ipRange'] = '192.168.0.1-192.168.0.15,96.0.112.80-96.0.112.96';
$GLOBALS['TYPO3_CONF_VARS']['BE']['userAuth']['ipRange'] = '192.168.0.1-192.168.0.15,96.0.112.80-96.0.112.96';