psa.cp_access
Overview
The cp_access table contains the IP addresses that are allowed or denied access to Plesk.
Column Descriptions
id – primary key that is automatically incremented
type – allow if the IP should be allowed, otherwise deny for denied
netaddr – the IP address to allow or deny
netmask – the netmask which corresponds to netaddr
Table Structure
CREATE TABLE `cp_access` ( `id` int(10) unsigned NOT NULL auto_increment, `type` enum('allow','deny') NOT NULL default 'allow', `netaddr` varchar(15) character set ascii NOT NULL default '', `netmask` varchar(15) character set ascii NOT NULL default '', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1