client_identifiers
Purpose: Holds individual IP addresses or host names of computers in a particular lab. Used to lock down security for summative exams.
Joins: labs table.
| Field | Type | Purpose |
|---|---|---|
| id | int(11) | Primary Key – auto increment. |
| lab | smallint(5) unsigned | ID of the lab the IP address belongs to. |
| address | char(60) | The IP address of the computer |
| hostname | char(255) | Host name of the computer |
| low_bandwidth | tinyint(4) | 0=send full data, 1=low bandwidth - send less data. |
, multiple selections available,