• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Administrator access Restriction not working

HaukeW

Basic Pleskian
Hi,

we have problems with the administrator access Restriction after Update to 10.4.4
If we login with "admin" the following error appears.

Error: Access for administrator from address '1.2.3.1' is restricted in accordance with IP Access restriction policy currently applied.

Here the Database tables.

mysql> select * from misc where param='access_policy';
+---------------+------+
| param | val |
+---------------+------+
| access_policy | deny |
+---------------+------+
1 row in set (0.00 sec)



mysql> select * from cp_access;
+----+-------+------------+-----------------+
| id | type | netaddr | netmask |
+----+-------+------------+-----------------+
| 8 | allow | 1.2.3.0 | 255.255.255.192 |
+----+-------+------------+-----------------+
1 row in set (0.00 sec)

I definitely come from one of the IP in this Subnet.

Has somebody an idea?

Regards
 
If I remove any entry in cp_access I can login but then I have no restriction!


mysql> select * from misc where param='access_policy';
+---------------+-------+
| param | val |
+---------------+-------+
| access_policy | allow |
+---------------+-------+
1 row in set (0.01 sec)

mysql> select * from cp_access;
Empty set (0.00 sec)


When I then go to the webfrontend (IP access restriction management) and add my IP, i get the following message.


Error: The access restriction policy and the list of networks are currently configured the way you will not be able to log in with administrator's rights from your IP address 'x.x.x.x'.

But this is exactly my IP !

If I add a Range I get the error Message:

Error: Some fields are empty or contain an improper value. ('netaddr' = 'x.x.x.0/26')

That makes no sense...
 
Back
Top