Skip to main content

plugin_proval_dns_extradata

Purpose

This table stores the DNS data for a target machine. This data includes the computer ID, interface ID, DNS type, and DNS setting.

Dependencies

Tables

plugin_proval_dns_extradata

ColumnTypeExplanation
ComputerIDIntThe computer ID that returned the DNS setting.
InterfaceIDVarcharThe interface ID where the DNS settings were reported.
DNSTypeVarcharManual or DHCP DNS setting.
DNSSettingVarcharA comma-separated list of the actual settings configured for that computer and interface.

SQL

CREATE TABLE `plugin_proval_dns_extradata` (
`ComputerID` INT(11) NOT NULL,
`InterfaceID` VARCHAR(100) NOT NULL DEFAULT '' COLLATE 'utf8_general_ci',
`DNSType` VARCHAR(25) NOT NULL DEFAULT '' COLLATE 'utf8_general_ci',
`DNSSetting` VARCHAR(50) NULL DEFAULT NULL COLLATE 'utf8_general_ci',
PRIMARY KEY (`ComputerID`, `InterfaceID`) USING BTREE
)
COLLATE='utf8_general_ci'
ENGINE=InnoDB
;