{"id":3856,"date":"2018-06-29T15:21:22","date_gmt":"2018-06-29T14:21:22","guid":{"rendered":"http:\/\/tomaskalabis.com\/wordpress\/?p=3856"},"modified":"2018-06-29T15:21:22","modified_gmt":"2018-06-29T14:21:22","slug":"configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016","status":"publish","type":"post","link":"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/","title":{"rendered":"Configure iSCSI Target on Centos 7 &#038; Initiator on Windows Server 2016"},"content":{"rendered":"<h3>Configure iSCSI Target on Centos 7 &amp; Initiator on Windows Server 2016<\/h3>\n<p>in this post i configure iSCSI target on CentOS 7 and iSCSI initiator on Windows Server 2016, both are VMs on VMware vSphere 6.7 in my demolab, config:<\/p>\n<h4>Environment<\/h4>\n<p><strong>iSCSI target<\/strong><\/p>\n<ul>\n<li>Centos 7 minimal<\/li>\n<li>2 vCPU<\/li>\n<li>2 GB RAM<\/li>\n<li>20 GB HDD0 &#8211; OS<\/li>\n<li>500 GB HDD1 &#8211; DATA (used for iSCSI target)<\/li>\n<li>2 NIC\n<ul>\n<li>1 x VMXNET3 &#8211; mng &#8211; ens192 &#8211; 192.168.168.111<\/li>\n<li>1 x VMXNET3 &#8211; iSCSI network &#8211; ens224 &#8211; 192.168.168.130<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p><strong>iSCSI client<\/strong><\/p>\n<ul>\n<li>Windows Server 2016<\/li>\n<li>4 vCPU<\/li>\n<li>8 GB RAM<\/li>\n<li>60 GB HHD0 &#8211; OS<\/li>\n<li>2 NIC\n<ul>\n<li>1 x VMXNET3 &#8211; mng &#8211; 192.168.168.112<\/li>\n<li>1 x VMXNET3 &#8211; iSCSI network &#8211; 192.168.168.131<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h4><strong>Configure storage\u00a0<\/strong><\/h4>\n<pre class=\"theme:shell-default lang:default decode:true\">[root@iscsi01 ~]# fdisk -l\r\n\r\nDisk \/dev\/sda: 21.5 GB, 21474836480 bytes, 41943040 sectors\r\nUnits = sectors of 1 * 512 = 512 bytes\r\nSector size (logical\/physical): 512 bytes \/ 512 bytes\r\nI\/O size (minimum\/optimal): 512 bytes \/ 512 bytes\r\nDisk label type: dos\r\nDisk identifier: 0x000d377e\r\n\r\n   Device Boot      Start         End      Blocks   Id  System\r\n\/dev\/sda1   *        2048     2099199     1048576   83  Linux\r\n\/dev\/sda2         2099200    41943039    19921920   8e  Linux LVM\r\n\r\nDisk \/dev\/sdb: 536.9 GB, 536870912000 bytes, 1048576000 sectors\r\nUnits = sectors of 1 * 512 = 512 bytes\r\nSector size (logical\/physical): 512 bytes \/ 512 bytes\r\nI\/O size (minimum\/optimal): 512 bytes \/ 512 bytes\r\n\r\nDisk \/dev\/mapper\/centos-root: 18.2 GB, 18249416704 bytes, 35643392 sectors\r\nUnits = sectors of 1 * 512 = 512 bytes\r\nSector size (logical\/physical): 512 bytes \/ 512 bytes\r\nI\/O size (minimum\/optimal): 512 bytes \/ 512 bytes\r\n\r\nDisk \/dev\/mapper\/centos-swap: 2147 MB, 2147483648 bytes, 4194304 sectors\r\nUnits = sectors of 1 * 512 = 512 bytes\r\nSector size (logical\/physical): 512 bytes \/ 512 bytes\r\nI\/O size (minimum\/optimal): 512 bytes \/ 512 bytes<\/pre>\n<p>you can see that my system has a 500 GB disk (\/dev\/sdb), i will create a 480 GB partition with LVM<\/p>\n<pre class=\"theme:shell-default lang:default decode:true \">[root@iscsi01 ~]# fdisk \/dev\/sdb\r\nWelcome to fdisk (util-linux 2.23.2).\r\n\r\nChanges will remain in memory only, until you decide to write them.\r\nBe careful before using the write command.\r\n\r\nDevice does not contain a recognized partition table\r\nBuilding a new DOS disklabel with disk identifier 0xf886711c.\r\n\r\nCommand (m for help): n \r\nPartition type:\r\n   p   primary (0 primary, 0 extended, 4 free)\r\n   e   extended\r\nSelect (default p): p\r\nPartition number (1-4, default 1): 1\r\nFirst sector (2048-1048575999, default 2048):\r\nUsing default value 2048\r\nLast sector, +sectors or +size{K,M,G} (2048-1048575999, default 1048575999): +450G\r\nPartition 1 of type Linux and of size 450 GiB is set\r\n\r\nCommand (m for help): t\r\nSelected partition 1\r\nHex code (type L to list all codes): 8e\r\nChanged type of partition 'Linux' to 'Linux LVM'\r\n\r\nCommand (m for help): w\r\nThe partition table has been altered!\r\n\r\nCalling ioctl() to re-read partition table.\r\nSyncing disks.<\/pre>\n<p>use fdisk for create a new partition<\/p>\n<ul>\n<li>n &#8211; new partititon<\/li>\n<li>p &#8211; primary<\/li>\n<li>1 &#8211; partition number<\/li>\n<li>+450G &#8211; create 450 GB partition<\/li>\n<li>t &#8211; select partition<\/li>\n<li>8e &#8211; change it as LVM label<\/li>\n<li>w &#8211; save<\/li>\n<\/ul>\n<pre class=\"theme:shell-default lang:default decode:true\">[root@iscsi01 ~]# pvcreate \/dev\/sdb1\r\n  Physical volume \"\/dev\/sdb1\" successfully created.\r\n[root@iscsi01 ~]# vgcreate vg_iscsi \/dev\/sdb1\r\n  Volume group \"vg_iscsi\" successfully created\r\n[root@iscsi01 ~]# lvcreate -l 100%FREE -n lv_iscsi vg_iscsi\r\n  Logical volume \"lv_iscsi\" created.<\/pre>\n<p>create a LVM &#8211; in my case \/dev\/sdb1<\/p>\n<h4>Configure iSCSI target<\/h4>\n<pre class=\"theme:shell-default lang:default decode:true \">[root@iscsi01 ~]# yum -y install targetcli<\/pre>\n<p>first of all install targetcli package<\/p>\n<pre class=\"theme:shell-default lang:default decode:true\">[root@iscsi01 ~]# targetcli\r\nWarning: Could not load preferences file \/root\/.targetcli\/prefs.bin.\r\ntargetcli shell version 2.1.fb46\r\nCopyright 2011-2013 by Datera, Inc and others.\r\nFor help on commands, type 'help'.<\/pre>\n<pre class=\"theme:shell-default lang:default decode:true\">\/&gt; cd backstores\/block\r\n\/backstores\/block&gt; create iscsi_disk1 \/dev\/vg_iscsi\/lv_iscsi\r\nCreated block storage object iscsi_disk1 using \/dev\/vg_iscsi\/lv_iscsi.<\/pre>\n<p>i use my existing logical volume \/dev\/vg_iscsi\/lv_iscsi for storage object iscsi_disk1 as a block-type backing store<\/p>\n<pre class=\"theme:shell-default lang:default decode:true \">Created target iqn.2018-06.target01.centos:disk1.\r\nCreated TPG 1.\r\nGlobal pref auto_add_default_portal=true\r\nCreated default portal listening on all IPs (0.0.0.0), port 3260.\r\n\/iscsi&gt; ls\r\no- iscsi .................................................................. [Targets: 1]\r\n  o- iqn.2018-06.target01.centos:disk1 ....................................... [TPGs: 1]\r\n    o- tpg1 ..................................................... [no-gen-acls, no-auth]\r\n      o- acls ................................................................ [ACLs: 0]\r\n      o- luns ................................................................ [LUNs: 0]\r\n      o- portals .......................................................... [Portals: 1]\r\n        o- 0.0.0.0:3260 ........................................................... [OK]<\/pre>\n<p>create a target, in default config the target listening on all IPs&#8230; 0.0.0.0:3260, but i have separated network 192.168.130.x.<\/p>\n<pre class=\"theme:shell-default lang:default decode:true \">\/iscsi&gt; cd iqn.2018-06.target01.centos:disk1\/tpg1\/portals\/\r\n\/iscsi\/iqn.20...\/tpg1\/portals&gt; delete 0.0.0.0 3260\r\nDeleted network portal 0.0.0.0:3260\r\n\/iscsi\/iqn.20...\/tpg1\/portals&gt; create 192.168.130.130\r\nUsing default IP port 3260\r\nCreated network portal 192.168.130.130:3260.<\/pre>\n<p>delete 0.0.0.0 3260 target and create 192.168.130.130 target<\/p>\n<pre class=\"theme:shell-default lang:default decode:true\">\/iscsi\/iqn.20...\/tpg1\/portals&gt; cd ..\r\n\/iscsi\/iqn.20...os:disk1\/tpg1&gt; cd acls\r\n\/iscsi\/iqn.20...sk1\/tpg1\/acls&gt; create iqn.1991-05.com.microsoft:vm-udp\r\nCreated Node ACL for iqn.1991-05.com.microsoft:vm-udp<\/pre>\n<p>create ACL for my client machine (WS2016) with IQN: &#8222;<strong>iqn.1991-05.com.microsoft:vm-udp<\/strong>&#8220;<\/p>\n<pre class=\"theme:shell-default lang:default decode:true \">\/iscsi\/iqn.20...sk1\/tpg1\/acls&gt; cd ..\r\n\/iscsi\/iqn.20...os:disk1\/tpg1&gt; luns\/\r\n\/iscsi\/iqn.20...sk1\/tpg1\/luns&gt; create \/backstores\/block\/iscsi_disk1\r\nCreated LUN 0.\r\nCreated LUN 0-&gt;0 mapping in node ACL iqn.1991-05.com.microsoft:vm-udp<\/pre>\n<p>create a LUN under target and map it on my client<\/p>\n<pre class=\"theme:shell-default lang:default decode:true \">\/iscsi&gt; cd ..\r\n\/&gt; ls\r\no- \/ ............................................................................. [...]\r\n  o- backstores .................................................................. [...]\r\n  | o- block ...................................................... [Storage Objects: 1]\r\n  | | o- iscsi_disk1 .......... [\/dev\/vg_iscsi\/lv_iscsi (480.0GiB) write-thru activated]\r\n  | |   o- alua ....................................................... [ALUA Groups: 1]\r\n  | |     o- default_tg_pt_gp ........................... [ALUA state: Active\/optimized]\r\n  | o- fileio ..................................................... [Storage Objects: 0]\r\n  | o- pscsi ...................................................... [Storage Objects: 0]\r\n  | o- ramdisk .................................................... [Storage Objects: 0]\r\n  o- iscsi ................................................................ [Targets: 1]\r\n  | o- iqn.2018-06.target01.centos:disk1 ..................................... [TPGs: 1]\r\n  |   o- tpg1 ................................................... [no-gen-acls, no-auth]\r\n  |     o- acls .............................................................. [ACLs: 1]\r\n  |     | o- iqn.1991-05.com.microsoft:vm-udp ......................... [Mapped LUNs: 1]\r\n  |     |   o- mapped_lun0 ............................... [lun0 block\/iscsi_disk1 (rw)]\r\n  |     o- luns .............................................................. [LUNs: 1]\r\n  |     | o- lun0 ...... [block\/iscsi_disk1 (\/dev\/vg_iscsi\/lv_iscsi) (default_tg_pt_gp)]\r\n  |     o- portals ........................................................ [Portals: 1]\r\n  |       o- 192.168.130.130:3260 ................................................. [OK]\r\n  o- loopback ............................................................. [Targets: 0]<\/pre>\n<p>verify the target server configuration<\/p>\n<pre class=\"theme:shell-default lang:default decode:true \">\/&gt; saveconfig\r\nConfiguration saved to \/etc\/target\/saveconfig.json\r\n\/&gt; exit\r\nGlobal pref auto_save_on_exit=true\r\nLast 10 configs saved in \/etc\/target\/backup\/.\r\nConfiguration saved to \/etc\/target\/saveconfig.json<\/pre>\n<p>save config and exit targetcli console<\/p>\n<pre class=\"theme:shell-default lang:default decode:true \">[root@iscsi01 ~]# systemctl enable target.service\r\n[root@iscsi01 ~]# systemctl restart target.service<\/pre>\n<p>enable &amp; restart target.service<\/p>\n<pre class=\"theme:shell-default lang:default decode:true \">[root@iscsi01 ~]# firewall-cmd --permanent --add-port=3260\/tcp\r\n[root@iscsi01 ~]# firewall-cmd --reload<\/pre>\n<p>config firewall for iSCSI traffic<\/p>\n<h4>Configure iSCSI client (WS2016)<\/h4>\n<p><a href=\"http:\/\/tomaskalabis.com\/wordpress\/wp-content\/uploads\/2018\/06\/ws-client.png\"><img decoding=\"async\" loading=\"lazy\" class=\"alignnone size-large wp-image-3858\" src=\"http:\/\/tomaskalabis.com\/wordpress\/wp-content\/uploads\/2018\/06\/ws-client-341x494.png\" alt=\"\" width=\"341\" height=\"494\" srcset=\"https:\/\/tomaskalabis.com\/wordpress\/wp-content\/uploads\/2018\/06\/ws-client-341x494.png 341w, https:\/\/tomaskalabis.com\/wordpress\/wp-content\/uploads\/2018\/06\/ws-client-199x288.png 199w, https:\/\/tomaskalabis.com\/wordpress\/wp-content\/uploads\/2018\/06\/ws-client.png 476w\" sizes=\"(max-width: 341px) 100vw, 341px\" \/><\/a><\/p>\n<p>on WS2016 run iSCSI configuration and as target use ip of iSCSI target &#8211; 192.168.168.130 and click to quick connect.<\/p>\n<p><a href=\"http:\/\/tomaskalabis.com\/wordpress\/wp-content\/uploads\/2018\/06\/ws-client1.png\"><img decoding=\"async\" loading=\"lazy\" class=\"alignnone size-large wp-image-3859\" src=\"http:\/\/tomaskalabis.com\/wordpress\/wp-content\/uploads\/2018\/06\/ws-client1-494x391.png\" alt=\"\" width=\"494\" height=\"391\" srcset=\"https:\/\/tomaskalabis.com\/wordpress\/wp-content\/uploads\/2018\/06\/ws-client1-494x391.png 494w, https:\/\/tomaskalabis.com\/wordpress\/wp-content\/uploads\/2018\/06\/ws-client1-288x228.png 288w, https:\/\/tomaskalabis.com\/wordpress\/wp-content\/uploads\/2018\/06\/ws-client1.png 754w\" sizes=\"(max-width: 494px) 100vw, 494px\" \/><\/a><\/p>\n<p>Sucessfully connected.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Configure iSCSI Target on Centos 7 &amp; Initiator on Windows Server 2016 in this post i configure iSCSI target on CentOS 7 and iSCSI initiator on Windows Server 2016, both &#8230;<\/p>\n","protected":false},"author":2,"featured_media":2361,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[140,229],"tags":[132,137,230],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Configure iSCSI Target on Centos 7 &amp; Initiator on Windows Server 2016 - tomaskalabis.com<\/title>\n<meta name=\"description\" content=\"in this post i configure iSCSI target on CentOS 7 and iSCSI initiator on Windows Server 2016, both are VMs on VMware vSphere 6.7 in my demolab, config:\u00a0\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/\" \/>\n<meta property=\"og:locale\" content=\"cs_CZ\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Configure iSCSI Target on Centos 7 &amp; Initiator on Windows Server 2016 - tomaskalabis.com\" \/>\n<meta property=\"og:description\" content=\"in this post i configure iSCSI target on CentOS 7 and iSCSI initiator on Windows Server 2016, both are VMs on VMware vSphere 6.7 in my demolab, config:\u00a0\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/\" \/>\n<meta property=\"og:site_name\" content=\"tomaskalabis.com\" \/>\n<meta property=\"article:published_time\" content=\"2018-06-29T14:21:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tomaskalabis.com\/wordpress\/wp-content\/uploads\/2015\/07\/centos-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"180\" \/>\n\t<meta property=\"og:image:height\" content=\"180\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Tomas Kalabis\" \/>\n<meta name=\"twitter:label1\" content=\"Napsal(a)\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tomas Kalabis\" \/>\n\t<meta name=\"twitter:label2\" content=\"Odhadovan\u00e1 doba \u010dten\u00ed\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minut\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/\",\"url\":\"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/\",\"name\":\"Configure iSCSI Target on Centos 7 & Initiator on Windows Server 2016 - tomaskalabis.com\",\"isPartOf\":{\"@id\":\"https:\/\/tomaskalabis.com\/wordpress\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/tomaskalabis.com\/wordpress\/wp-content\/uploads\/2015\/07\/centos-logo.jpg\",\"datePublished\":\"2018-06-29T14:21:22+00:00\",\"dateModified\":\"2018-06-29T14:21:22+00:00\",\"author\":{\"@id\":\"https:\/\/tomaskalabis.com\/wordpress\/#\/schema\/person\/8e7e83f618a561ed3734a38cef4cf1d6\"},\"description\":\"in this post i configure iSCSI target on CentOS 7 and iSCSI initiator on Windows Server 2016, both are VMs on VMware vSphere 6.7 in my demolab, config:\u00a0\",\"breadcrumb\":{\"@id\":\"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/#breadcrumb\"},\"inLanguage\":\"cs\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"cs\",\"@id\":\"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/#primaryimage\",\"url\":\"https:\/\/tomaskalabis.com\/wordpress\/wp-content\/uploads\/2015\/07\/centos-logo.jpg\",\"contentUrl\":\"https:\/\/tomaskalabis.com\/wordpress\/wp-content\/uploads\/2015\/07\/centos-logo.jpg\",\"width\":180,\"height\":180},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/tomaskalabis.com\/wordpress\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Configure iSCSI Target on Centos 7 &#038; Initiator on Windows Server 2016\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/tomaskalabis.com\/wordpress\/#website\",\"url\":\"https:\/\/tomaskalabis.com\/wordpress\/\",\"name\":\"tomaskalabis.com\",\"description\":\"my personal blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/tomaskalabis.com\/wordpress\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"cs\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/tomaskalabis.com\/wordpress\/#\/schema\/person\/8e7e83f618a561ed3734a38cef4cf1d6\",\"name\":\"Tomas Kalabis\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"cs\",\"@id\":\"https:\/\/tomaskalabis.com\/wordpress\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9f7e4796b38d5720e8a07b918f423311?s=96&d=retro&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9f7e4796b38d5720e8a07b918f423311?s=96&d=retro&r=g\",\"caption\":\"Tomas Kalabis\"},\"sameAs\":[\"https:\/\/x.com\/tomaskalabis\"],\"url\":\"https:\/\/tomaskalabis.com\/wordpress\/author\/kalabis\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Configure iSCSI Target on Centos 7 & Initiator on Windows Server 2016 - tomaskalabis.com","description":"in this post i configure iSCSI target on CentOS 7 and iSCSI initiator on Windows Server 2016, both are VMs on VMware vSphere 6.7 in my demolab, config:\u00a0","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/","og_locale":"cs_CZ","og_type":"article","og_title":"Configure iSCSI Target on Centos 7 & Initiator on Windows Server 2016 - tomaskalabis.com","og_description":"in this post i configure iSCSI target on CentOS 7 and iSCSI initiator on Windows Server 2016, both are VMs on VMware vSphere 6.7 in my demolab, config:\u00a0","og_url":"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/","og_site_name":"tomaskalabis.com","article_published_time":"2018-06-29T14:21:22+00:00","og_image":[{"width":180,"height":180,"url":"https:\/\/tomaskalabis.com\/wordpress\/wp-content\/uploads\/2015\/07\/centos-logo.jpg","type":"image\/jpeg"}],"author":"Tomas Kalabis","twitter_misc":{"Napsal(a)":"Tomas Kalabis","Odhadovan\u00e1 doba \u010dten\u00ed":"5 minut"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/","url":"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/","name":"Configure iSCSI Target on Centos 7 & Initiator on Windows Server 2016 - tomaskalabis.com","isPartOf":{"@id":"https:\/\/tomaskalabis.com\/wordpress\/#website"},"primaryImageOfPage":{"@id":"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/#primaryimage"},"image":{"@id":"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/#primaryimage"},"thumbnailUrl":"https:\/\/tomaskalabis.com\/wordpress\/wp-content\/uploads\/2015\/07\/centos-logo.jpg","datePublished":"2018-06-29T14:21:22+00:00","dateModified":"2018-06-29T14:21:22+00:00","author":{"@id":"https:\/\/tomaskalabis.com\/wordpress\/#\/schema\/person\/8e7e83f618a561ed3734a38cef4cf1d6"},"description":"in this post i configure iSCSI target on CentOS 7 and iSCSI initiator on Windows Server 2016, both are VMs on VMware vSphere 6.7 in my demolab, config:\u00a0","breadcrumb":{"@id":"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/#breadcrumb"},"inLanguage":"cs","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/"]}]},{"@type":"ImageObject","inLanguage":"cs","@id":"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/#primaryimage","url":"https:\/\/tomaskalabis.com\/wordpress\/wp-content\/uploads\/2015\/07\/centos-logo.jpg","contentUrl":"https:\/\/tomaskalabis.com\/wordpress\/wp-content\/uploads\/2015\/07\/centos-logo.jpg","width":180,"height":180},{"@type":"BreadcrumbList","@id":"https:\/\/tomaskalabis.com\/wordpress\/configure-iscsi-target-on-centos-7-initiator-on-windows-server-2016\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tomaskalabis.com\/wordpress\/"},{"@type":"ListItem","position":2,"name":"Configure iSCSI Target on Centos 7 &#038; Initiator on Windows Server 2016"}]},{"@type":"WebSite","@id":"https:\/\/tomaskalabis.com\/wordpress\/#website","url":"https:\/\/tomaskalabis.com\/wordpress\/","name":"tomaskalabis.com","description":"my personal blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tomaskalabis.com\/wordpress\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"cs"},{"@type":"Person","@id":"https:\/\/tomaskalabis.com\/wordpress\/#\/schema\/person\/8e7e83f618a561ed3734a38cef4cf1d6","name":"Tomas Kalabis","image":{"@type":"ImageObject","inLanguage":"cs","@id":"https:\/\/tomaskalabis.com\/wordpress\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9f7e4796b38d5720e8a07b918f423311?s=96&d=retro&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9f7e4796b38d5720e8a07b918f423311?s=96&d=retro&r=g","caption":"Tomas Kalabis"},"sameAs":["https:\/\/x.com\/tomaskalabis"],"url":"https:\/\/tomaskalabis.com\/wordpress\/author\/kalabis\/"}]}},"jetpack_featured_media_url":"https:\/\/tomaskalabis.com\/wordpress\/wp-content\/uploads\/2015\/07\/centos-logo.jpg","_links":{"self":[{"href":"https:\/\/tomaskalabis.com\/wordpress\/wp-json\/wp\/v2\/posts\/3856"}],"collection":[{"href":"https:\/\/tomaskalabis.com\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tomaskalabis.com\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tomaskalabis.com\/wordpress\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/tomaskalabis.com\/wordpress\/wp-json\/wp\/v2\/comments?post=3856"}],"version-history":[{"count":2,"href":"https:\/\/tomaskalabis.com\/wordpress\/wp-json\/wp\/v2\/posts\/3856\/revisions"}],"predecessor-version":[{"id":3860,"href":"https:\/\/tomaskalabis.com\/wordpress\/wp-json\/wp\/v2\/posts\/3856\/revisions\/3860"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/tomaskalabis.com\/wordpress\/wp-json\/wp\/v2\/media\/2361"}],"wp:attachment":[{"href":"https:\/\/tomaskalabis.com\/wordpress\/wp-json\/wp\/v2\/media?parent=3856"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tomaskalabis.com\/wordpress\/wp-json\/wp\/v2\/categories?post=3856"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tomaskalabis.com\/wordpress\/wp-json\/wp\/v2\/tags?post=3856"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}