Registered Device Handling
Registered devices are stored in the following database table:
CREATE TABLE `remote_devices` ( `remote_devices_uid` int(10) unsigned NOT NULL AUTO_INCREMENT, `remote_device_identifier` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `connection_allowed` tinyint(1) NOT NULL, PRIMARY KEY (`remote_devices_uid`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
Variable | Description |
|---|---|
remote_device_identifier | The IP Address of the connecting device is used as the device identifier. |
connection_allowed | If the request to connect is manually declined on the Chef device, the connection is rejected. The device attempting to connect is saved [connection_allowed=0], and the connecting device is required to authenticate again. |