From owner-freebsd-current@FreeBSD.ORG Fri Sep 27 07:36:23 2013 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B26D6F25; Fri, 27 Sep 2013 07:36:23 +0000 (UTC) (envelope-from sergey.dyatko@gmail.com) Received: from mail-ea0-x22c.google.com (mail-ea0-x22c.google.com [IPv6:2a00:1450:4013:c01::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 265BB281B; Fri, 27 Sep 2013 07:36:22 +0000 (UTC) Received: by mail-ea0-f172.google.com with SMTP id r16so1024410ead.31 for ; Fri, 27 Sep 2013 00:36:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:mime-version:content-type :content-transfer-encoding; bh=plbQHbpDFFpwMLsi5Yosf1PWCycQ2JbtYuJfK6YZxaI=; b=07jPGTivlEJw/LjQGVs/w+1TaA1mWVaBetrHHpdt8Kg2n/dQ7pZdofK0ON2xhx3E1E /0QDAYclNgQl7oFuXuL68ciJUjyb+AwTbHVnaNnVG6qew31XId2oXUISLHQKndNHP80l NY5HF9cu4S/Ib8sbjxUOYZLYCgtjf5zT/3YKNPe/kTTMImXfZDl02E7k9VYVopKPGiow LM8HKtT3AvubYwpfyTngkWnDx5xF2xntGlPf8wRMVXBNcIGHchbgD+bLfz+VCRmT2q78 80mywHdP+99BNjgAHENRGlaDfrjKtMy1cDyXSlle0yMlJCvFBlAPQBZGtTBGn8uHu4uv 5HnA== X-Received: by 10.14.194.131 with SMTP id m3mr8219009een.45.1380267381438; Fri, 27 Sep 2013 00:36:21 -0700 (PDT) Received: from laptop.minsk.domain (m-s.agava.net. [195.222.84.203]) by mx.google.com with ESMTPSA id a6sm12934147eei.10.1969.12.31.16.00.00 (version=SSLv3 cipher=RC4-SHA bits=128/128); Fri, 27 Sep 2013 00:36:20 -0700 (PDT) Date: Fri, 27 Sep 2013 10:36:29 +0300 From: "Sergey V. Dyatko" To: Subject: iscsictl, Waiting for iscsid(8) Message-ID: <20130927103629.6c04dc02@laptop.minsk.domain> X-Mailer: Claws Mail 3.9.2 (GTK+ 2.24.19; amd64-portbld-freebsd10.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: trasz@FreeBSD.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Sep 2013 07:36:23 -0000 Hi, I have a time to play with native iSCSI stack on HEAD. I have desktop (Alpha2, r255812) and laptop (alpha3, r255873M with reverted r255870 and r255871) On desktop I create following /etc/ctl.conf: pidfile /var/run/ctld.pid portal-group example2 { discovery-auth-group no-authentication listen 127.0.0.1 listen 0.0.0.0:3261 } target iqn.desktop:target0 { alias "Testing target" auth-group no-authentication portal-group example2 lun 0 { path /dev/md0 blocksize 4096 } } tiger# mdconfig -lv md0 vnode 200M /storage/iscsi_test tiger# iscsictl -A -h localhost -t iqn.desktop:target0 dmesg: cfiscsi_ioctl_handoff: new connection from iqn.1994-09.org.freebsd:tiger.minsk.domain (127.0.0.1) to iqn.desktop:target0 da0 at iscsi1 bus 0 scbus6 target 0 lun 0 da0: Fixed Direct Access SCSI-5 device da0: 200MB (51200 4096 byte sectors: 64H 32S/T 25C) tiger# ctladm islist -v Session ID: 3 Initiator name: iqn.1994-09.org.freebsd:tiger.minsk.domain Initiator addr: 127.0.0.1 Initiator alias: Target name: iqn.desktop:target0 Target alias: Testing target Header digest: None Data digest: None DataSegmentLen: 131072 ImmediateData: Yes iSER (RDMA): No tiger# ctladm devlist -v LUN Backend Size (Blocks) BS Serial Number Device ID 0 block 51200 4096 MYSERIAL 0 MYDEVID 0 lun_type=0 num_threads=14 file=/dev/md0 cfiscsi_target=iqn.desktop:target0 cfiscsi_target_alias=Testing target cfiscsi_lun=0 Ok, seems it work now laptop: laptop# iscsictl -A -h 192.168.9.98 -t iqn.desktop:target0 nothing new on dmesg.. laptop# iscsictl -L Target name Target addr State iqn.desktop:target0 192.168.9.98 Waiting for iscsid(8) I have a questions: 1) is 'old' iscontrol work with native target (i tried it before, w/o success too) ? 2) what I missed, why laptop(iscsictl)->desktop(iscsid) do not work in my case ? -- wbr, tiger