73 lines
2.5 KiB
Plaintext
73 lines
2.5 KiB
Plaintext
commit 8d903115f9227a3922ec8172a0faa57b95c8a57f
|
|
Author: Erez Zilber <erezzi.list@gmail.com>
|
|
Date: Wed Oct 22 11:45:24 2008 +0200
|
|
|
|
Minor fixes in iscsi_discovery documentation
|
|
|
|
Some changes that were made in iscsi_discovery were
|
|
not reflected in the docs.
|
|
|
|
Signed-off-by: Erez Zilber <erezzi.list@gmail.com>
|
|
|
|
diff --git a/doc/iscsi_discovery.8 b/doc/iscsi_discovery.8
|
|
index c46223b..13484e7 100644
|
|
--- a/doc/iscsi_discovery.8
|
|
+++ b/doc/iscsi_discovery.8
|
|
@@ -6,19 +6,19 @@
|
|
|
|
.TH "iscsi_discovery" 8
|
|
.SH NAME
|
|
-iscsi_discovery \- discover iscsi devices
|
|
+iscsi_discovery \- discover iSCSI targets
|
|
.SH SYNOPSIS
|
|
.B iscsi_discovery <IP> [-p <port>] [-d] [-t <tcp|iser> [-f]] [-m] [-l]
|
|
|
|
.SH DESCRIPTION
|
|
Perform send-targets discovery to the specified IP. If a discovery record
|
|
-is generated, try to login to the portal using iSER and TCP transports
|
|
+is generated, try to login to the portal using the preferred transport
|
|
(-t flag specifies the requested transport type, TCP is the default).
|
|
If login using a certain transport succeeds, mark the portal for automatic
|
|
login (unless -m flag is used), and disconnect (unless -l flag is used).
|
|
|
|
-For iscsi discovery to work, open-iscsi services must be running. e.g. iscsid
|
|
-should be up, and the iscsi modules loaded. This is best accomplished by the
|
|
+For iSCSI discovery to work, open-iscsi services must be running. i.e. iscsid
|
|
+should be up, and the iSCSI modules loaded. This is best accomplished by the
|
|
init.d startup script.
|
|
|
|
.\" .SH OPTIONS
|
|
@@ -47,6 +47,6 @@ login - login to the new discovered nodes (defualt is false).
|
|
.SH AUTHOR
|
|
Written by Dan Bar Dov
|
|
.SH "REPORTING BUGS"
|
|
-Report bugs to <erezz@voltaire.com>.
|
|
+Report bugs to <erezzi.list@gmail.com>.
|
|
.SH COPYRIGHT
|
|
Copyright \(co Voltaire Ltd. 2006.
|
|
diff --git a/utils/iscsi_discovery b/utils/iscsi_discovery
|
|
index 9f1e7cf..3c6edf3 100755
|
|
--- a/utils/iscsi_discovery
|
|
+++ b/utils/iscsi_discovery
|
|
@@ -20,17 +20,17 @@
|
|
|
|
# iscsi_discovery:
|
|
# * does a send-targets discovery to the given IP
|
|
-# * set the transport type to ISER
|
|
+# * set the transport type to the preferred transport (or tcp is -t flag is not used)
|
|
# * tries to login
|
|
# * if succeeds,
|
|
# o logout,
|
|
-# o mark record autmatic
|
|
+# o mark record autmatic (unless -m flag is used)
|
|
# * else
|
|
# o reset transport type to TCP
|
|
# o try to login
|
|
# o if succeeded
|
|
# + logout
|
|
-# + mark record automatic
|
|
+# + mark record automatic (unless -m flag is used)
|
|
#
|
|
|
|
usage()
|