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

Related documentation

  • No related documentation available