{"id":1518,"date":"2009-09-03T01:05:14","date_gmt":"2009-09-03T01:05:14","guid":{"rendered":"http:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm"},"modified":"2017-01-14T12:58:12","modified_gmt":"2017-01-14T12:58:12","slug":"creating-an-iscsi-target-on-a-netgear-readynas","status":"publish","type":"post","link":"https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm","title":{"rendered":"Creating an iSCSI target on a Netgear ReadyNAS"},"content":{"rendered":"<p>A few months ago, <a href=\"https:\/\/www.markwilson.co.uk\/blog\/2009\/06\/microsoft-makes-storage-server-2008-including-the-iscsi-software-target-available-to-msdn-and-technet-subscribers.htm\">I wrote that I was looking for an iSCSI target add-on for my Netgear ReadyNAS Duo<\/a>. <a href=\"http:\/\/www.readynas.com\/forum\/viewtopic.php?f=7&amp;t=23196&amp;p=180639\">I asked if such an add-on was available on Netgear&#8217;s ReadyNAS community forums<\/a>; however it seems that these are not really a true indication of what is available and the moderators are heavily biased by what Netgear supports, rather than what <em>can<\/em> be done. Thanks to Garry Martin, who pointed me in the direction of <a href=\"http:\/\/whocares.de\/readynas-goes-iscsi\/\">Stefan Rubner&#8217;s ReadyNAS port<\/a> of <a href=\"http:\/\/iscsitarget.sourceforge.net\/\">the iSCSI Enterprise Target Project<\/a>, I now have a ReadyNAS acting as an iSCSI target.<\/p>\n<p>I have a lot of data on my first ReadyNAS and, even though I backed it all up to a new 1.5TB drive in my server (which will eventually be swapped into the the ReadyNAS as part of the next X-RAID upgrade), I wasn&#8217;t prepared to risk losing it so I bought a second ReadyNAS to act as an iSCSI target for serving virtual machine images. In short, don&#8217;t run this on your ReadyNAS unless you are reasonably confident at a Linux command prompt and you have a backup of your data. This worked for me but your mileage may vary &#8211; and, if it all goes wrong and takes your data with it, please don&#8217;t blame me.<\/p>\n<p>First up, I updated my ReadyNAS to the latest software release (at the time of writing, that&#8217;s <a href=\"http:\/\/www.readynas.com\/?p=2620\">RAIDiator version 4.1.6<\/a>). Next, <a href=\"http:\/\/www.shadowandy.net\/2008\/07\/ssh-access-on-readynas-duo.htm\">I enabled SSH access<\/a> using the Updates page in FrontView with the <a href=\"http:\/\/www.readynas.com\/download\/addons\/4.00\/EnableRootSSH_1.0.bin\">EnableRootSSH<\/a> and <a href=\"http:\/\/www.readynas.com\/download\/addons\/4.00\/ToggleSSH_1.0.bin\">ToggleSSH<\/a> <a href=\"http:\/\/www.readynas.com\/?page_id=617\">addons<\/a> (note that these do not actually install any user interface elements: EnableRootSSH does exactly what it says, and when it&#8217;s complete the root password will be set to match the admin password; ToggleSSH will enable\/disable SSH each time the update is run).<\/p>\n<p>The next step was to install <a href=\"http:\/\/whocares.de\/readynas\/iscsi-target-support-readynas\/\">the latest stable version<\/a> (v0.4.17-1.0.1) of Stefan Rubner&#8217;s <a href=\"http:\/\/readynasfreeware.org\/gf\/project\/nas-iscsi-tgt\/frs\/\">iSCSI target add-on for ReadyNAS<\/a> (as for EnableRootSSH and ToggleSSH, it is simply applied as an update in FrontView).<\/p>\n<p>With SSH enabled on the ReadyNAS, I switched to using a Mac (as it has a Unix command prompt which includes an SSH client) but any Unix\/Linux PC, or a Windows PC running something like <a href=\"http:\/\/www.chiark.greenend.org.uk\/~sgtatham\/putty\/\">PuTTY<\/a> will work too:<\/p>\n<p><code>ssh root@ipaddress<\/code><\/p>\n<p>After changing directory to \/etc (<code>cd \/etc<\/code>), I checked for an existing ietd.conf file and found that there was an empty one there as <code>ls-al ie*<\/code> returned:<\/p>\n<p><em>-rw-r&#8211;r&#8211;\u00a0\u00a0\u00a0\u00a01\u00a0admin\u00a0\u00a0\u00a0\u00a0admin\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a00\u00a0Dec\u00a0\u00a03\u00a0\u00a02008 ietd.conf<\/em><\/p>\n<p>I renamed this (<code>mv ietd.conf ietd.conf.original<\/code>) and downloaded a pre-configured version with <code>wget http:\/\/readynasfreeware.org\/gf\/download\/docmanfileversion\/3\/81\/ietd.conf<\/code> before editing the first line (<code>vi ietd.conf<\/code>) to change the IQN for the iSCSI target (a <a href=\"http:\/\/www.lagmonster.org\/docs\/vi.html\"><code>vi<\/code> cheat sheet<\/a> might come in useful here).<\/p>\n<p>As noted in the <a href=\"http:\/\/readynasfreeware.org\/gf\/project\/nas-iscsi-tgt\/wiki\/?pagename=New+Version\">installation instructions<\/a>, the most important part of this file is the <code>Lun 0 Path=\/c\/iscsi_0,Type=fileio<\/code> entry. I was happy with this filename, but it can be edited if required. Next, I created a 250GB file to act as this iSCSI LUN using <code>dd if=\/dev\/zero of=\/c\/iscsi_0 bs=10485760 count=25600<\/code>. Beware, this takes a long time (I went to the pub, came back, wrote a good chunk of this blog post and it was still chugging away for just over 4 hours; however it&#8217;s possible to get some idea of progress by watching the amount of free space reported in FrontView).<\/p>\n<p>At this point, I began to deviate from the installation notes &#8211; attempting to run <code>\/etc\/init.d\/rfw-iscsi-target start<\/code> failed so I rebooted the ReadyNAS but when I checked the Installed Add-ons page in FrontView I saw that the iSCSI target was already running although the target was listed as <code>NOT_FOUND<\/code> and clicking the Configure Targets button seemed to have no effect (I later found that was an IE8 issue &#8211; the button produced a pop-up when I ran it from Safari over on my Mac and presumably would have worked in another browser on Windows too).<\/p>\n<p>I changed the target name to <code>\/c\/iscsi_0<\/code>, saved the changes, and restarted the ReadyNAS again (just to be sure, although I could have restarted the service from the command line), checking that there was a green light next to the iSCSI target service in FrontView (also running <code>\/etc\/init.d\/rfw-iscsi-target status<\/code> on the command line).<\/p>\n<p><img data-recalc-dims=\"1\" decoding=\"async\" class=\"inline\" src=\"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/images\/readynas-iscsi-target.png?w=700&#038;ssl=1\" alt=\"ReadyNAS iSCSI Target add-on configuration\" \/><\/p>\n<p>With the target running, I switched to my client (a Windows Server 2008 computer) and ran the iSCSI initiator, adding a portal on the Discovery tab (using the IP address of the ReadyNAS box and the default port of 3260), then switching to the Targets tab and clicking the Refresh button. I selected my target and clicked Log On&#8230; waiting with baited breath.<\/p>\n<p><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/images\/iscsi-discovery.png?w=700&#038;ssl=1\" alt=\"Windows iSCSI initiator Discovery tab\" \/><img data-recalc-dims=\"1\" decoding=\"async\" class=\"inline\" src=\"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/images\/iscsi-targets.png?w=700&#038;ssl=1\" alt=\"Windows iSCSI initiator Discovery tab\" \/><\/p>\n<p><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/images\/iscsi-target-in-disk-manager.png?w=700&#038;ssl=1\" alt=\"iSCSI target exposed in Disk Management\" \/><\/p>\n<p>No error messages indicated that everything was working so I switched to Server Manager and saw a new 250GB unallocated disk in Disk Management, which I then brought online and initialised.<\/p>\n<p>Finally, I updated \/etc\/rc6.d\/S99reboot to include <code>\/etc\/init.d\/rfw-iscsi-target stop<\/code> just before the line that says <code># Save the last 5 ecounters by date.<\/code><\/p>\n","protected":false},"excerpt":{"rendered":"<p>A few months ago, I wrote that I was looking for an iSCSI target add-on for my Netgear ReadyNAS Duo. I asked if such an add-on was available on Netgear&#8217;s ReadyNAS community forums; however it seems that these are not really a true indication of what is available and the moderators are heavily biased by &hellip; <a href=\"https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">Creating an iSCSI target on a Netgear ReadyNAS<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[218],"tags":[3,55],"class_list":["post-1518","post","type-post","status-publish","format-standard","hentry","category-technology","tag-linux","tag-storage"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Creating an iSCSI target on a Netgear ReadyNAS - markwilson.it<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Creating an iSCSI target on a Netgear ReadyNAS - markwilson.it\" \/>\n<meta property=\"og:description\" content=\"A few months ago, I wrote that I was looking for an iSCSI target add-on for my Netgear ReadyNAS Duo. I asked if such an add-on was available on Netgear&#8217;s ReadyNAS community forums; however it seems that these are not really a true indication of what is available and the moderators are heavily biased by &hellip; Continue reading Creating an iSCSI target on a Netgear ReadyNAS\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm\" \/>\n<meta property=\"og:site_name\" content=\"markwilson.it\" \/>\n<meta property=\"article:published_time\" content=\"2009-09-03T01:05:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-01-14T12:58:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.markwilson.co.uk\/blog\/images\/readynas-iscsi-target.png\" \/>\n<meta name=\"author\" content=\"Mark Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@markwilsonit\" \/>\n<meta name=\"twitter:site\" content=\"@markwilsonit\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mark Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/09\\\/creating-an-iscsi-target-on-a-netgear-readynas.htm#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/09\\\/creating-an-iscsi-target-on-a-netgear-readynas.htm\"},\"author\":{\"name\":\"Mark Wilson\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\"},\"headline\":\"Creating an iSCSI target on a Netgear ReadyNAS\",\"datePublished\":\"2009-09-03T01:05:14+00:00\",\"dateModified\":\"2017-01-14T12:58:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/09\\\/creating-an-iscsi-target-on-a-netgear-readynas.htm\"},\"wordCount\":785,\"commentCount\":34,\"publisher\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\"},\"image\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/09\\\/creating-an-iscsi-target-on-a-netgear-readynas.htm#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/images\\\/readynas-iscsi-target.png\",\"keywords\":[\"Linux\",\"Storage\"],\"articleSection\":[\"Technology\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/09\\\/creating-an-iscsi-target-on-a-netgear-readynas.htm#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/09\\\/creating-an-iscsi-target-on-a-netgear-readynas.htm\",\"url\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/09\\\/creating-an-iscsi-target-on-a-netgear-readynas.htm\",\"name\":\"Creating an iSCSI target on a Netgear ReadyNAS - markwilson.it\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/09\\\/creating-an-iscsi-target-on-a-netgear-readynas.htm#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/09\\\/creating-an-iscsi-target-on-a-netgear-readynas.htm#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/images\\\/readynas-iscsi-target.png\",\"datePublished\":\"2009-09-03T01:05:14+00:00\",\"dateModified\":\"2017-01-14T12:58:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/09\\\/creating-an-iscsi-target-on-a-netgear-readynas.htm#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/09\\\/creating-an-iscsi-target-on-a-netgear-readynas.htm\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/09\\\/creating-an-iscsi-target-on-a-netgear-readynas.htm#primaryimage\",\"url\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/images\\\/readynas-iscsi-target.png\",\"contentUrl\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/images\\\/readynas-iscsi-target.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/09\\\/creating-an-iscsi-target-on-a-netgear-readynas.htm#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Creating an iSCSI target on a Netgear ReadyNAS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/\",\"name\":\"markwilson.it\",\"description\":\"get-info -class technology | write-output &gt; \\\/dev\\\/web\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\",\"name\":\"Mark Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\",\"width\":800,\"height\":800,\"caption\":\"Mark Wilson\"},\"logo\":{\"@id\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\"},\"description\":\"A Chartered IT Professional, with recent experience in technology leadership, IT strategy and practice management roles, Mark Wilson is an Enterprise Architect in the Advisory and Management Group at risual. During a career spanning more than two decades, Mark has gained widespread recognition as an expert in his field including both industry and national press exposure. In addition to certifications from Microsoft, VMware, Red Hat, The Open Group and Axelos, Mark held a Microsoft Most Valuable Professional (MVP) award for three years and is now part of the MVP Reconnect programme. Mark is also well-known on social media and maintains an award-winning blog.\",\"sameAs\":[\"http:\\\/\\\/www.markwilson.co.uk\\\/\",\"https:\\\/\\\/www.instagram.com\\\/markwilsonuk\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/markawilson\\\/\",\"https:\\\/\\\/x.com\\\/markwilsonit\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCWHlZCoHRTocdvtrOJ2IL4A\"],\"url\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/author\\\/mark-wilson\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Creating an iSCSI target on a Netgear ReadyNAS - markwilson.it","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:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm","og_locale":"en_GB","og_type":"article","og_title":"Creating an iSCSI target on a Netgear ReadyNAS - markwilson.it","og_description":"A few months ago, I wrote that I was looking for an iSCSI target add-on for my Netgear ReadyNAS Duo. I asked if such an add-on was available on Netgear&#8217;s ReadyNAS community forums; however it seems that these are not really a true indication of what is available and the moderators are heavily biased by &hellip; Continue reading Creating an iSCSI target on a Netgear ReadyNAS","og_url":"https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm","og_site_name":"markwilson.it","article_published_time":"2009-09-03T01:05:14+00:00","article_modified_time":"2017-01-14T12:58:12+00:00","og_image":[{"url":"https:\/\/www.markwilson.co.uk\/blog\/images\/readynas-iscsi-target.png","type":"","width":"","height":""}],"author":"Mark Wilson","twitter_card":"summary_large_image","twitter_creator":"@markwilsonit","twitter_site":"@markwilsonit","twitter_misc":{"Written by":"Mark Wilson","Estimated reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm#article","isPartOf":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm"},"author":{"name":"Mark Wilson","@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468"},"headline":"Creating an iSCSI target on a Netgear ReadyNAS","datePublished":"2009-09-03T01:05:14+00:00","dateModified":"2017-01-14T12:58:12+00:00","mainEntityOfPage":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm"},"wordCount":785,"commentCount":34,"publisher":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468"},"image":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm#primaryimage"},"thumbnailUrl":"https:\/\/www.markwilson.co.uk\/blog\/images\/readynas-iscsi-target.png","keywords":["Linux","Storage"],"articleSection":["Technology"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm","url":"https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm","name":"Creating an iSCSI target on a Netgear ReadyNAS - markwilson.it","isPartOf":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm#primaryimage"},"image":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm#primaryimage"},"thumbnailUrl":"https:\/\/www.markwilson.co.uk\/blog\/images\/readynas-iscsi-target.png","datePublished":"2009-09-03T01:05:14+00:00","dateModified":"2017-01-14T12:58:12+00:00","breadcrumb":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm#primaryimage","url":"https:\/\/www.markwilson.co.uk\/blog\/images\/readynas-iscsi-target.png","contentUrl":"https:\/\/www.markwilson.co.uk\/blog\/images\/readynas-iscsi-target.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/creating-an-iscsi-target-on-a-netgear-readynas.htm#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.markwilson.co.uk\/blog"},{"@type":"ListItem","position":2,"name":"Creating an iSCSI target on a Netgear ReadyNAS"}]},{"@type":"WebSite","@id":"https:\/\/www.markwilson.co.uk\/blog\/#website","url":"https:\/\/www.markwilson.co.uk\/blog\/","name":"markwilson.it","description":"get-info -class technology | write-output &gt; \/dev\/web","publisher":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.markwilson.co.uk\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Person","Organization"],"@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468","name":"Mark Wilson","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1","url":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1","width":800,"height":800,"caption":"Mark Wilson"},"logo":{"@id":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1"},"description":"A Chartered IT Professional, with recent experience in technology leadership, IT strategy and practice management roles, Mark Wilson is an Enterprise Architect in the Advisory and Management Group at risual. During a career spanning more than two decades, Mark has gained widespread recognition as an expert in his field including both industry and national press exposure. In addition to certifications from Microsoft, VMware, Red Hat, The Open Group and Axelos, Mark held a Microsoft Most Valuable Professional (MVP) award for three years and is now part of the MVP Reconnect programme. Mark is also well-known on social media and maintains an award-winning blog.","sameAs":["http:\/\/www.markwilson.co.uk\/","https:\/\/www.instagram.com\/markwilsonuk\/","https:\/\/www.linkedin.com\/in\/markawilson\/","https:\/\/x.com\/markwilsonit","https:\/\/www.youtube.com\/channel\/UCWHlZCoHRTocdvtrOJ2IL4A"],"url":"https:\/\/www.markwilson.co.uk\/blog\/author\/mark-wilson"}]}},"jetpack_featured_media_url":"","jetpack-related-posts":[{"id":1517,"url":"https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/readynas-duo-with-no-available-disk-space.htm","url_meta":{"origin":1518,"position":0},"title":"ReadyNAS Duo with no available disk space","author":"Mark Wilson","date":"Wednesday 2 September 2009","format":false,"excerpt":"My new Netgear ReadyNAS Duo was delivered at lunchtime today. This is the second ReadyNAS Duo I've bought and the first is happily serving media and other files to my home network, whereas this one is intended to be hacked so that it can become an inexpensive iSCSI target (I\u2026","rel":"","context":"In \"Storage\"","block_context":{"text":"Storage","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/storage"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1451,"url":"https:\/\/www.markwilson.co.uk\/blog\/2009\/06\/microsoft-makes-storage-server-2008-including-the-iscsi-software-target-available-to-msdn-and-technet-subscribers.htm","url_meta":{"origin":1518,"position":1},"title":"Microsoft makes Storage Server 2008 (including the iSCSI software target) available to MSDN and TechNet subscribers","author":"Mark Wilson","date":"Monday 1 June 2009","format":false,"excerpt":"I was doing some work yesterday with the Microsoft iSCSI target software and noticed a post on Jose Barteto's blog, indicating that Windows Storage Server 2008 is now available to TechNet and MSDN subscribers. Previously it was for OEMs only (or you could extract the iSCSI Target from an evaluation\u2026","rel":"","context":"In \"Microsoft Windows\"","block_context":{"text":"Microsoft Windows","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/windows"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1238,"url":"https:\/\/www.markwilson.co.uk\/blog\/2008\/10\/netgear-readynas-low-cost-raid-storage-for-the-consumer.htm","url_meta":{"origin":1518,"position":2},"title":"Netgear ReadyNAS: low-cost RAID storage for the consumer","author":"Mark Wilson","date":"Sunday 12 October 2008","format":false,"excerpt":"A few months back I was looking into how to solve my home data storage issue (huge photo collection, huge iTunes library, increasing use of digital file storage, big disaster waiting to happen) and I thought about buying a Drobo. At least, I did until my friend Garry Martin said\u2026","rel":"","context":"In \"Storage\"","block_context":{"text":"Storage","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/storage"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1520,"url":"https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/physical-disks-can-only-be-added-to-hyper-v-vms-when-the-disk-is-offline.htm","url_meta":{"origin":1518,"position":3},"title":"Physical disks can only be added to Hyper-V VMs when the disk is offline","author":"Mark Wilson","date":"Thursday 3 September 2009","format":false,"excerpt":"I don't often work with passthrough disks in Hyper-V but, after configuring my Netgear ReadyNAS as an iSCSI target earlier this evening, I wanted to use it as storage for a new virtual machine. Try as I might, I could not get Hyper-V Manager to accept a physical disk as\u2026","rel":"","context":"In \"Microsoft Virtual Server\/Hyper-V\"","block_context":{"text":"Microsoft Virtual Server\/Hyper-V","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/hyper-v"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":8981,"url":"https:\/\/www.markwilson.co.uk\/blog\/2025\/05\/working-with-legacy-tech-accessing-old-web-portals-that-use-an-insecure-tls-version.htm","url_meta":{"origin":1518,"position":4},"title":"Working with legacy tech: accessing old web portals that use an insecure TLS version","author":"Mark Wilson","date":"Thursday 8 May 2025","format":false,"excerpt":"In my last post, I wrote about importing MiniDV tape content to a modern computer. That leads nicely into today's topic... because modern computers tend not to have huge amounts of local storage. We generally don't need it, because we store our files in the cloud, and only use the\u2026","rel":"","context":"In &quot;Technology&quot;","block_context":{"text":"Technology","link":"https:\/\/www.markwilson.co.uk\/blog\/topic\/technology"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-2.png?fit=1200%2C638&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-2.png?fit=1200%2C638&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-2.png?fit=1200%2C638&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-2.png?fit=1200%2C638&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-2.png?fit=1200%2C638&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":1519,"url":"https:\/\/www.markwilson.co.uk\/blog\/2009\/09\/connecting-multiple-readynas-devices-to-a-single-ups.htm","url_meta":{"origin":1518,"position":5},"title":"Connecting multiple ReadyNAS devices to a single UPS","author":"Mark Wilson","date":"Friday 4 September 2009","format":false,"excerpt":"It seems to be ReadyNAS week at markwilson.it because that's what I've spent the last couple of days working with but the ReadyNAS really is a stonking piece of hardware (think of it as a \u00c2\u00a3150 Linux box with built-in X-RAID) and mine will soon be providing the storage for\u2026","rel":"","context":"In \"Storage\"","block_context":{"text":"Storage","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/storage"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts\/1518","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/comments?post=1518"}],"version-history":[{"count":3,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts\/1518\/revisions"}],"predecessor-version":[{"id":6870,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts\/1518\/revisions\/6870"}],"wp:attachment":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/media?parent=1518"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/categories?post=1518"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/tags?post=1518"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}