2003-12-07 19:55:40 +03:00
.TH SCSI_ID 8 "December 2003" "" "Linux Administrator's Manual"
.SH NAME
scsi_id \- retrieve and generate a unique SCSI identifier
.SH SYNOPSIS
.BI scsi_id
[\fI options\fP ]
.SH "DESCRIPTION"
.B scsi_id
queries a SCSI device via the SCSI INQUIRY vital product data (VPD) page 0x80 or
0x83 and uses the resulting data to generate a value that is unique across
all SCSI devices that properly support page 0x80 or page 0x83.
If a result is generated it is sent to standard output, and the program
exits with a zero value. If no identifier is output, the program exits
2004-06-26 12:18:17 +04:00
with a non\- zero value.
2003-12-07 19:55:40 +03:00
\fB scsi_id\fP is primarily for use by other utilities such as \fB udev\fP
that require a unique SCSI identifier.
2008-11-21 12:50:12 +03:00
By default all devices are assumed black listed, the \fB \- \- whitelisted\fP option must
2003-12-07 19:55:40 +03:00
be specified on the command line or in the config file for any useful
behaviour.
SCSI commands are sent directly to the device via the SG_IO ioctl
interface.
In order to generate unique values for either page 0x80 or page 0x83, the
serial numbers or world wide names are prefixed as follows.
Identifiers based on page 0x80 are prefixed by the character 'S', the SCSI
vendor, the SCSI product (model) and then the the serial number returned
by page 0x80. For example:
.sp
.nf
2008-07-10 02:17:24 +04:00
# /lib/udev/scsi_id \- \- page=0x80 \- \- whitelisted \- \- device=/dev/sda
2003-12-07 19:55:40 +03:00
SIBM 3542 1T05078453
.fi
.P
Identifiers based on page 0x83 are prefixed by the identifier type
followed by the page 0x83 identifier. For example, a device with a NAA
(Name Address Authority) type of 3 (also in this case the page 0x83
identifier starts with the NAA value of 6):
.sp
.nf
2008-07-10 02:17:24 +04:00
# /lib/udev/scsi_id \- \- page=0x83 \- \- whitelisted \- \- device=/dev/sda
2003-12-07 19:55:40 +03:00
3600a0b80000b174b000000d63efc5c8c
.fi
.P
.SH OPTIONS
.TP
2007-05-25 19:37:47 +04:00
.BI \- \- blacklisted
2004-06-26 12:18:17 +04:00
The default behaviour \- treat the device as black listed, and do nothing
unless a white listed device is found in the scsi_id config\- file.
2003-12-07 19:55:40 +03:00
.TP
2007-05-25 19:37:47 +04:00
.BI \- \- device=\| device\^
2008-05-14 15:59:11 +04:00
Send SG_IO commands to \fB device\fP , such as \fB /dev/sdc\fP .
2003-12-07 19:55:40 +03:00
.TP
2007-05-25 19:37:47 +04:00
.BI \- \- config=\| config\-file
2003-12-07 19:55:40 +03:00
Read configuration and black/white list entries from
2004-06-26 12:18:17 +04:00
.B config\-file
2003-12-07 19:55:40 +03:00
rather than the default
.B /etc/scsi_id.config
file.
.TP
2007-05-25 19:37:47 +04:00
.BI \- \- whitelisted
Treat the device as white listed. The \fB \- \- whitelisted\fP option must be specified
2003-12-07 19:55:40 +03:00
on the command line or in the scsi_id configuration file for
.B scsi_id
to generate any output.
.TP
2007-05-25 19:37:47 +04:00
.BI \- \- page=\| 0 x80 | 0 x83 | pre-spc3-83
2005-09-14 22:23:48 +04:00
Use SCSI INQUIRY VPD page code 0x80, 0x83, or pre-spc3-83.
.sp
The default
2007-01-28 17:13:36 +03:00
behaviour is to query the available VPD pages, and use page 0x83 if found,
2005-09-14 22:23:48 +04:00
else page 0x80 if found, else nothing.
.sp
Page pre-spc3-83 should only be utilized for those scsi devices which
are not compliant with the SPC-2 or SPC-3 format for page 83. While this
option is used for older model 4, 5, and 6 EMC Symmetrix devices, its
use with SPC-2 or SPC-3 compliant devices will fallback to the page 83
format supported by these devices.
2003-12-07 19:55:40 +03:00
.TP
2007-05-25 19:37:47 +04:00
.BI \- \- replace-whitespace
2005-09-18 06:49:23 +04:00
Reformat the output : replace all whitespaces by underscores.
.TP
2007-05-25 19:37:47 +04:00
.BI \- \- export
2005-09-18 06:49:23 +04:00
Export all data in KEY=<value> format used to import in other programs.
2004-10-06 08:30:54 +04:00
.TP
2007-05-25 19:37:47 +04:00
.BI \- \- verbose
2003-12-07 19:55:40 +03:00
Generate verbose debugging output.
.TP
2007-05-25 19:37:47 +04:00
.BI \- \- version
2003-12-07 19:55:40 +03:00
Display version number and exit.
.RE
2004-02-28 12:00:36 +03:00
2003-12-07 19:55:40 +03:00
.SH "FILES"
.nf
.ft B
.ft
2008-05-14 06:47:33 +04:00
.TP
\fI /etc/scsi_id.config\fP
2009-06-28 05:01:31 +04:00
Configuration of black/white list entries and per device options:
# one config per line, short match strings match longer strings
# vendor=string[,model=string],options=<per-device scsi_id command line options>
vendor="ATA",options=-p 0x80
2008-05-14 06:47:33 +04:00
.RE
2003-12-07 19:55:40 +03:00
.fi
.LP
.SH "SEE ALSO"
2006-03-28 22:16:34 +04:00
.BR udev (7)
2003-12-07 19:55:40 +03:00
.SH AUTHORS
Developed by Patrick Mansfield <patmans@us.ibm.com> based on SCSI ID
source included in earlier linux 2.5 kernels, sg_utils source, and SCSI
specifications.