Bug 185752

Summary: handbook mentions wrong default iSCSI port
Product: Documentation Reporter: Jan Jurkus <ict>
Component: Books & ArticlesAssignee: freebsd-doc (Nobody) <doc>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   

Description Jan Jurkus 2014-01-13 18:50:00 UTC
The handbook about the native iSCSI target client seems to contain an error about the default iSCSI port.

available here:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-iscsi.html

it says:
"The following two lines make ctld(8) listen on all IPv4 (listen 0.0.0.0) and IPv6 (listen [::]) addresses on the default port (3560)."

As the default port for iSCSI is 3260, and the output of netstat -an confirms that it is listening on port 3260 (with the default configuration from the handbook page), I believe this to be an error.

Fix: 

it says:
"The following two lines make ctld(8) listen on all IPv4 (listen 0.0.0.0) and IPv6 (listen [::]) addresses on the default port (3560)."

This should be:
The following two lines make ctld(8) listen on all IPv4 (listen 0.0.0.0) and IPv6 (listen [::]) addresses on the default port (3260).
Comment 1 dfilter service freebsd_committer freebsd_triage 2014-01-13 21:14:39 UTC
Author: pluknet
Date: Mon Jan 13 21:14:32 2014
New Revision: 43486
URL: http://svnweb.freebsd.org/changeset/doc/43486

Log:
  Fixed the default port of ctld(8).
  
  PR:		docs/185752

Modified:
  head/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml

Modified: head/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml
==============================================================================
--- head/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml	Mon Jan 13 17:41:36 2014	(r43485)
+++ head/en_US.ISO8859-1/books/handbook/network-servers/chapter.xml	Mon Jan 13 21:14:32 2014	(r43486)
@@ -5835,7 +5835,7 @@ target iqn.2012-06.com.example:target0 {
 	  authentication.  The following two lines make <link xlink:href="http://www.freebsd.org/cgi/man.cgi?query=ctld&amp;sektion=8&amp;manpath=FreeBSD+10-current">ctld(8)</link>
 	  listen on all <acronym>IPv4</acronym> (<literal>listen 0.0.0.0</literal>) and <acronym>IPv6</acronym> (<literal>listen
 	  [::]</literal>) addresses on the
-	  default port (3560).  It is not necessary to define
+	  default port (3260).  It is not necessary to define
 	  a new portal group; there is a default one, called
 	  <literal>default</literal>.  The difference between <literal>default</literal> and <literal>pg0</literal> above is
 	  that with <literal>default</literal>, the <acronym>iSCSI</acronym> SendTargets discovery is
_______________________________________________
svn-doc-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-doc-all
To unsubscribe, send any mail to "svn-doc-all-unsubscribe@freebsd.org"
Comment 2 Sergey Kandaurov freebsd_committer freebsd_triage 2014-01-13 21:14:51 UTC
State Changed
From-To: open->closed

Committed, thanks!