svn commit: r273585 - head/usr.sbin/ctld

Edward Tomasz Napierala trasz at FreeBSD.org
Fri Oct 24 12:30:44 UTC 2014


Author: trasz
Date: Fri Oct 24 12:30:43 2014
New Revision: 273585
URL: https://svnweb.freebsd.org/changeset/base/273585

Log:
  Improve ctld.conf example.
  
  MFC after:	1 month
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/usr.sbin/ctld/ctl.conf.5

Modified: head/usr.sbin/ctld/ctl.conf.5
==============================================================================
--- head/usr.sbin/ctld/ctl.conf.5	Fri Oct 24 11:40:09 2014	(r273584)
+++ head/usr.sbin/ctld/ctl.conf.5	Fri Oct 24 12:30:43 2014	(r273585)
@@ -295,18 +295,25 @@ configuration file.
 .Bd -literal
 pidfile	/var/run/ctld.pid
 
-auth-group example2 {
+auth-group ag0 {
 	chap-mutual "user" "secret" "mutualuser" "mutualsecret"
 	chap-mutual "user2" "secret2" "mutualuser" "mutualsecret"
 	initiator-portal 192.168.1.1/16
 }
 
-portal-group example2 {
+auth-group ag1 {
+	auth-type none
+	initiator-name "iqn.2012-06.com.example:initiatorhost1"
+	initiator-name "iqn.2012-06.com.example:initiatorhost2"
+	initiator-portal 192.168.1.1/24
+	initiator-portal [2001:db8::de:ef]
+}
+
+portal-group pg0 {
 	discovery-auth-group no-authentication
-	listen 127.0.0.1
-	listen 0.0.0.0:3261
-	listen [::]:3261
-	listen [fe80::be:ef]
+	listen 0.0.0.0:3260
+	listen [::]:3260
+	listen [fe80::be:ef]:3261
 }
 
 target iqn.2012-06.com.example:target0 {
@@ -319,16 +326,16 @@ target iqn.2012-06.com.example:target0 {
 	}
 }
 
-target iqn.2012-06.com.example:target3 {
+target iqn.2012-06.com.example:target1 {
 	chap chapuser chapsecret
 	lun 0 {
-		path /dev/zvol/tank/example_3
+		path /dev/zvol/tank/example_1
 	}
 }
 
 target iqn.2012-06.com.example:target2 {
-	auth-group example2
-	portal-group example2
+	auth-group ag0
+	portal-group pg0
 	lun 0 {
 		path /dev/zvol/tank/example2_0
 	}


More information about the svn-src-all mailing list