<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:dcterms="http://purl.org/dc/terms/"
     xmlns:media="http://search.yahoo.com/mrss/"
     xmlns:atom="http://www.w3.org/2005/Atom"
     xmlns:cf="https://www.futureplc.com/rss/content-flags"
>
    <channel>
                    <atom:link rel="alternate" hreflang="en-GB"
                       href="https://www.itpro.com/uk/feeds/tag/raid"
                       type="application/rss+xml"/>
                            <title><![CDATA[ Latest from ITPro UK in Raid ]]></title>
                <link>https://www.itpro.com/uk/tag/raid</link>
        <description><![CDATA[ All the latest raid content from the ITPro  UK team ]]></description>
                                    <lastBuildDate>Mon, 30 Sep 2019 16:53:00 +0000</lastBuildDate>
                            <language>en</language>
                                <item>
                                                            <title><![CDATA[ RAID levels explained ]]></title>
                                                                                                <dc:content><![CDATA[ <p>To paraphrase Benjamin Franklin, nothing is certain except death, taxes and lost data. There's only so much that technology can do about death and taxes, but a solid RAID configuration can definitely help with the latter. RAID technology helps protect hard drives - whether they're in a <a href="https://www.itpro.com/server-storage/34260/hpe-proliant-dl20-gen10-review-compact-and-bijou" target="_blank" data-original-url="https://www.itpro.com/server-storage/34260/hpe-proliant-dl20-gen10-review-compact-and-bijou">server</a>, <a href="https://www.itpro.com/nas/27920/best-nas-drives" target="_blank" data-original-url="https://www.itpro.com/nas/27920/best-nas-drives">desktop NAS drive</a> or <a href="https://www.itpro.com/network-attached-storage-nas/34313/synology-sa3400-review-a-big-nas-for-big-businesses" target="_blank" data-original-url="https://www.itpro.com/network-attached-storage-nas/34313/synology-sa3400-review-a-big-nas-for-big-businesses">data centre storage array</a> - from data loss through mechanical failure or corruption.</p><div  class="fancy-box"><div class="fancy_box-title"></div><div class="fancy_box_body"><p class="fancy-box__body-text"><a data-analytics-id="inline-link" href="https://www.itpro.com/solid-state-storage-ssd/31387/what-the-future-holds-for-data-storage" data-original-url="/solid-state-storage-ssd/31387/what-the-future-holds-for-data-storage">What the future holds for data storage</a> <a data-analytics-id="inline-link" href="https://www.itpro.com/backup/32563/does-tape-still-have-a-place-in-my-backup-strategy" data-original-url="/backup/32563/does-tape-still-have-a-place-in-my-backup-strategy">Does tape still have a place in my backup strategy?</a> <a data-analytics-id="inline-link" href="https://www.itpro.com/server-storage/31876/the-history-and-evolution-of-storage" data-original-url="/server-storage/31876/the-history-and-evolution-of-storage">The history and evolution of storage</a></p></div></div><p>RAID stands for "Redundant Array of Independent Disks" or "Redundant Array of Inexpensive Disks". It was principally designed with fault tolerance or failover protection in mind, and involves mirroring the data in a storage array across multiple disks, ensuring that if one drive fails, the contents of the array are not lost. Redundancy is important as hard drive failure can and does happen, so RAID acts as a failsafe against hardware breakdown.</p><p>In addition, multiple drives can also be combined into a single pool to create a cheap, high-capacity storage resource. This also allows the system to write to multiple disks at once, thereby improving performance.</p><p>There are many different levels of RAID, the most common being RAID 0, RAID 1, and RAID 5. Other more niche levels include RAID 6, 10 and 5+1. In addition to this, there is JBOD (Just a Bunch Of Disks), virtual disk RAID, and other vendor-specific RAID implementations.</p><h3 class="article-body__section" id="section-benefits-of-using-raid"><span>Benefits of using RAID</span></h3><p>There are a number of advantages to using RAID over conventional hard drive configurations.</p><p><strong>Large storage:</strong> RAID volumes can support much larger capacities than a single drive. If you need more storage, you can simply add more drives.</p><p><strong>Fault tolerance:</strong> For most RAID levels, some degree of redundancy and fault tolerance is built into the array, helping to prevent data loss.</p><p><strong>Continuous running:</strong> When hard drives fail on a computer, the operating system stops. In a RAID array, when hard drives fail, the systems continues to operate normally while the failed disk is replaced - assuming the system supports hot-swapping drives.</p><p><strong>Parity:</strong> Many RAID levels will include 'parity' protections which, in the event of a drive failure, use data from the other drives in an array to rebuild the replacement drive.</p><p><strong>Speed:</strong> RAID can run much faster than a single drive, as the array can write to and read from multiple disks at the same time, increasing transmission rates.</p><h3 class="article-body__section" id="section-raid-levels-explained"><span>RAID levels explained</span></h3><p><strong>RAID 0 (Disk striping)</strong></p><p>This type of RAID divides data across any number of disks enabling higher data throughput. Files are read from multiple disks, increasing speed and capacity. This is known as striping and has the benefit of increased performance.</p><p>However, it doesn't have redundancy and fault tolerance as data is not duplicated. Disks appear as a single partition. If one of them fails, the array is broken, and data is lost. RAID 0 is used where speed is more important than data loss (such as live streaming, video on demand and IPTV).</p><p><strong>RAID 1 (Disk Mirroring)</strong></p><p>This RAID level reads and writes the same data to two drives. This is known as data mirroring and provides redundancy. If a disk fails, the system can still access data from the other disk or disks. Once a faulty disk is replaced, data is copied from one of the remaining disks to the new disk, rebuilding the array. This is an easy way to create failover storage.</p><p>The downside is that it lowers the usable capacity by half, increasing the cost per GB. It is used where data redundancy and availability are critical.</p><p><strong>RAID 5 (Striping with parity)</strong></p><p>This type of RAID stripes data blocks across multiple disks as RAID 0 does, but it also stores parity information (this is a checksum to determine if the data on the disk has any errors and can help in recovering data in the event of disk failure). RAID 5 has both speed (as data is accessible from multiple disks) and redundancy as parity information is stored across disks. If a disk fails, data can be recreated from data on other disk and the parity blocks. Around a third of the disk capacity is used in storing parity data.</p><p>The drawback of this is it has lower performance, as servers need to carry out many more write operations for parity. It is ideal for file storage and application servers.</p><p><strong>RAID 6 (Striping with double parity)</strong></p><p>This is not unlike RAID 5, however, it stores two parity blocks instead of one. That means that two drives can fail without destroying the array. This enables it to have higher redundancy and better read performance.</p><p>However, if a server is carrying out lots of write operations, performance decreases because of the extra parity overhead. This too is ideal for large file and application servers.</p><p><strong>RAID 10 (Striping + Mirroring)</strong></p><p>This is a combination of RAID 0's striping and RAID 1's mirroring. This means you have redundancy (RAID 1) and better performance (RAID 0).</p><p>The drawbacks of this is that usable capacity is lower and cost is higher. There is also limited scalability compared to other RAID levels. This arrangement is heavily used in database servers carrying out a lot of write operations.</p><h3 class="article-body__section" id="section-implementing-raid"><span>Implementing RAID</span></h3><p>There are two ways of implementing RAID; Software RAID and hardware RAID.</p><p>Hardware RAID uses a dedicated hardware controller to which the disks are linked. An on-board processor manages RAID that offloads the work from the host processor, making it faster to read and write data. Hardware controllers offer an extra element of failsafe as its BBU (Battery Backup Unit) protects your data in case of an unanticipated loss of power in the server. Replacing failed disk is easy; you just pull it out and insert a new one.</p><p>The disadvantage of hardware RAID is the need to buy hardware, which makes it more expensive than software RAID. If the controller fails, you need a compatible one to replace it to get the system back up and working.</p><p>Software RAID is done within an operating system and is fairly easy to implement. There is no need for extra hardware and firmware; this makes it more cost effective. Arrays can also be reconfigured as they are not restricted by the hardware RAID controller.</p><p>The disadvantage of software RAID is that it is slower than hardware RAID. It uses processing power, and in turn, impacts read and write speeds of a RAID configuration, along with other operations on the server. Replacing disks is a more complicated task too, as the system has to stop using the disk before it is replaced.</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/server-storage/34537/raid-levels-explained</link>
                                                                            <description>
                            <![CDATA[ We break down the difference between the various RAID configurations ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">noFEew2gny6S1LRYGcpM7M</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/z8T8oxMcgxiPFdvg4ukeig-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Mon, 30 Sep 2019 16:53:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Rene Millman ]]></dc:creator>                                                                                    <dc:source><![CDATA[ https://cdn.mos.cms.futurecdn.net/vwWuTPNRCuw9vEaWzuXYnR-320-70.png ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/z8T8oxMcgxiPFdvg4ukeig-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                                                                                                                                                                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/z8T8oxMcgxiPFdvg4ukeig-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>To paraphrase Benjamin Franklin, nothing is certain except death, taxes and lost data. There's only so much that technology can do about death and taxes, but a solid RAID configuration can definitely help with the latter. RAID technology helps protect hard drives - whether they're in a <a href="https://www.itpro.com/server-storage/34260/hpe-proliant-dl20-gen10-review-compact-and-bijou" target="_blank" data-original-url="https://www.itpro.com/server-storage/34260/hpe-proliant-dl20-gen10-review-compact-and-bijou">server</a>, <a href="https://www.itpro.com/nas/27920/best-nas-drives" target="_blank" data-original-url="https://www.itpro.com/nas/27920/best-nas-drives">desktop NAS drive</a> or <a href="https://www.itpro.com/network-attached-storage-nas/34313/synology-sa3400-review-a-big-nas-for-big-businesses" target="_blank" data-original-url="https://www.itpro.com/network-attached-storage-nas/34313/synology-sa3400-review-a-big-nas-for-big-businesses">data centre storage array</a> - from data loss through mechanical failure or corruption.</p><div  class="fancy-box"><div class="fancy_box-title"></div><div class="fancy_box_body"><p class="fancy-box__body-text"><a data-analytics-id="inline-link" href="https://www.itpro.com/solid-state-storage-ssd/31387/what-the-future-holds-for-data-storage" data-original-url="/solid-state-storage-ssd/31387/what-the-future-holds-for-data-storage">What the future holds for data storage</a> <a data-analytics-id="inline-link" href="https://www.itpro.com/backup/32563/does-tape-still-have-a-place-in-my-backup-strategy" data-original-url="/backup/32563/does-tape-still-have-a-place-in-my-backup-strategy">Does tape still have a place in my backup strategy?</a> <a data-analytics-id="inline-link" href="https://www.itpro.com/server-storage/31876/the-history-and-evolution-of-storage" data-original-url="/server-storage/31876/the-history-and-evolution-of-storage">The history and evolution of storage</a></p></div></div><p>RAID stands for "Redundant Array of Independent Disks" or "Redundant Array of Inexpensive Disks". It was principally designed with fault tolerance or failover protection in mind, and involves mirroring the data in a storage array across multiple disks, ensuring that if one drive fails, the contents of the array are not lost. Redundancy is important as hard drive failure can and does happen, so RAID acts as a failsafe against hardware breakdown.</p><p>In addition, multiple drives can also be combined into a single pool to create a cheap, high-capacity storage resource. This also allows the system to write to multiple disks at once, thereby improving performance.</p><p>There are many different levels of RAID, the most common being RAID 0, RAID 1, and RAID 5. Other more niche levels include RAID 6, 10 and 5+1. In addition to this, there is JBOD (Just a Bunch Of Disks), virtual disk RAID, and other vendor-specific RAID implementations.</p><h3 class="article-body__section" id="section-benefits-of-using-raid"><span>Benefits of using RAID</span></h3><p>There are a number of advantages to using RAID over conventional hard drive configurations.</p><p><strong>Large storage:</strong> RAID volumes can support much larger capacities than a single drive. If you need more storage, you can simply add more drives.</p><p><strong>Fault tolerance:</strong> For most RAID levels, some degree of redundancy and fault tolerance is built into the array, helping to prevent data loss.</p><p><strong>Continuous running:</strong> When hard drives fail on a computer, the operating system stops. In a RAID array, when hard drives fail, the systems continues to operate normally while the failed disk is replaced - assuming the system supports hot-swapping drives.</p><p><strong>Parity:</strong> Many RAID levels will include 'parity' protections which, in the event of a drive failure, use data from the other drives in an array to rebuild the replacement drive.</p><p><strong>Speed:</strong> RAID can run much faster than a single drive, as the array can write to and read from multiple disks at the same time, increasing transmission rates.</p><h3 class="article-body__section" id="section-raid-levels-explained"><span>RAID levels explained</span></h3><p><strong>RAID 0 (Disk striping)</strong></p><p>This type of RAID divides data across any number of disks enabling higher data throughput. Files are read from multiple disks, increasing speed and capacity. This is known as striping and has the benefit of increased performance.</p><p>However, it doesn't have redundancy and fault tolerance as data is not duplicated. Disks appear as a single partition. If one of them fails, the array is broken, and data is lost. RAID 0 is used where speed is more important than data loss (such as live streaming, video on demand and IPTV).</p><p><strong>RAID 1 (Disk Mirroring)</strong></p><p>This RAID level reads and writes the same data to two drives. This is known as data mirroring and provides redundancy. If a disk fails, the system can still access data from the other disk or disks. Once a faulty disk is replaced, data is copied from one of the remaining disks to the new disk, rebuilding the array. This is an easy way to create failover storage.</p><p>The downside is that it lowers the usable capacity by half, increasing the cost per GB. It is used where data redundancy and availability are critical.</p><p><strong>RAID 5 (Striping with parity)</strong></p><p>This type of RAID stripes data blocks across multiple disks as RAID 0 does, but it also stores parity information (this is a checksum to determine if the data on the disk has any errors and can help in recovering data in the event of disk failure). RAID 5 has both speed (as data is accessible from multiple disks) and redundancy as parity information is stored across disks. If a disk fails, data can be recreated from data on other disk and the parity blocks. Around a third of the disk capacity is used in storing parity data.</p><p>The drawback of this is it has lower performance, as servers need to carry out many more write operations for parity. It is ideal for file storage and application servers.</p><p><strong>RAID 6 (Striping with double parity)</strong></p><p>This is not unlike RAID 5, however, it stores two parity blocks instead of one. That means that two drives can fail without destroying the array. This enables it to have higher redundancy and better read performance.</p><p>However, if a server is carrying out lots of write operations, performance decreases because of the extra parity overhead. This too is ideal for large file and application servers.</p><p><strong>RAID 10 (Striping + Mirroring)</strong></p><p>This is a combination of RAID 0's striping and RAID 1's mirroring. This means you have redundancy (RAID 1) and better performance (RAID 0).</p><p>The drawbacks of this is that usable capacity is lower and cost is higher. There is also limited scalability compared to other RAID levels. This arrangement is heavily used in database servers carrying out a lot of write operations.</p><h3 class="article-body__section" id="section-implementing-raid"><span>Implementing RAID</span></h3><p>There are two ways of implementing RAID; Software RAID and hardware RAID.</p><p>Hardware RAID uses a dedicated hardware controller to which the disks are linked. An on-board processor manages RAID that offloads the work from the host processor, making it faster to read and write data. Hardware controllers offer an extra element of failsafe as its BBU (Battery Backup Unit) protects your data in case of an unanticipated loss of power in the server. Replacing failed disk is easy; you just pull it out and insert a new one.</p><p>The disadvantage of hardware RAID is the need to buy hardware, which makes it more expensive than software RAID. If the controller fails, you need a compatible one to replace it to get the system back up and working.</p><p>Software RAID is done within an operating system and is fairly easy to implement. There is no need for extra hardware and firmware; this makes it more cost effective. Arrays can also be reconfigured as they are not restricted by the hardware RAID controller.</p><p>The disadvantage of software RAID is that it is slower than hardware RAID. It uses processing power, and in turn, impacts read and write speeds of a RAID configuration, along with other operations on the server. Replacing disks is a more complicated task too, as the system has to stop using the disk before it is replaced.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Synology DiskStation DS916+ review ]]></title>
                                                                                                <dc:content><![CDATA[ <p>The DS916+ is the latest member of Synology's burgeoning family of Plus' NAS appliances. It's aimed at IT professionals and small businesses who want affordable four-bay network storage with a heap of data protection features. Performance is another key feature as it's endowed with a speedy 1.6GHz quad-core Pentium N3710 processor.</p><p>Memory can't be upgraded but Synology has made the DS916+ available with either 2GB or 8GB of DDR3 RAM. We have the latter on review which costs 410. We think it is the better bet as the 2GB version only saves you around 32.</p><p>Along with dual Gigabit Ethernet ports, the DS916+ has three USB 3 ports. The single eSATA port provides room to grow as the appliance supports Synology's five-bay DX513 expansion unit.</p><h2 id="silence-is-golden">Silence is golden</h2><p>Externally, there are no differences between the DS916+ and the older Atom C2538-based DS415+ with both lacking any physical disk security. They employ a push-fit cover for the four hot-swap drive bays along with tool-free, non-lockable disk carriers. </p><p>For testing, we had no problems fitting a quartet of Seagate's latest 8TB NAS HDD drives. Cooling is handled by a pair of 9cm fans at the rear which are whisper-quiet.</p><p>We tested noise levels by placing the DS916+ in a quiet room and used the SPLnFTT iOS app to record a background noise level of 34dB. With the appliance powered up and our iPad placed one metre away, we recorded a small increase to 38dB.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="MXpFFipQenFJ48LzgSKcxR" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/MXpFFipQenFJ48LzgSKcxR-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/MXpFFipQenFJ48LzgSKcxR.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Noise levels from the dual cooling fans are very low</em></p><h2 id="deployment-and-dsm">Deployment and DSM</h2><p>Installation is neatly handled by Synology's web-based discovery web interface as it spotted the appliance on our lab network and offered to create a four-drive SHR (Synology Hybrid RAID) array. You can sidestep this and pick a classic RAID array, but we find SHR to be more flexible. </p><p>It allows you to mix and match drives of different sizes in the same array without taking a hit on capacity. Plus, during the creation phase, you can opt for single or dual-drive redundancy.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="H8UhDhPTcQeJ7DTrkL5M2d" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/H8UhDhPTcQeJ7DTrkL5M2d-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/H8UhDhPTcQeJ7DTrkL5M2d.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Versatile SHR arrays support single- and dual-drive redundancy</em></p><p>The set up wizard installed the latest DSM 6 software which has a superb range of features and a keen focus on data protection. All Synology's Plus models use 64-bit CPUs so they support BTRFS which brings share snapshots into play.</p><h2 id="great-data-protection">Great data protection </h2><p>The Snapshot Replication app provides all the tools required for scheduling snapshots. We used it to select shared folders and iSCSI LUNs, set regular schedules and request snapshot frequencies as often as every five minutes.</p><p>We also decided how long to retain snapshots with the oldest ones being automatically removed. Usefully, the app provides a customisable policy so you can retain daily, weekly, monthly and yearly snapshots if you wish.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="f4U8StntKXZ4XhuVVY4rNe" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/f4U8StntKXZ4XhuVVY4rNe-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/f4U8StntKXZ4XhuVVY4rNe.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>The Snapshot Replication app handles NAS share and iSCSI snapshot schedules and recovery</em></p><p>The new Hyper Backup app neatly centralises all your local, remote, Rysnc and cloud backups in a single console and provides wizards for scheduling 14 different types of backups. Data restoration is a cinch as we used the Backup Explorer app to browse our backups and choose files to copy back.</p><h2 id="good-performance">Good performance </h2><p>The DS916+ performed very well with copies of a 25GB file using a mapped share returning read and write speeds of 113MB/sec and 112MB/sec. Backup performance is also good as our 22.4GB folder with 10,500 small files was secured at a speedy average of 88MB/sec. </p><p>The processor's integral AES-NI engine also delivered the goods as copying our 25GB file to an encrypted folder averaged an impressive 104MB/sec. We also noticed that the CPU handled encryption overheads well with utilisation hovering around the 40 percent mark.</p><p>To test maximum performance we used a pair of Xeon E5-2600 v4 servers, mapped a share to each one over dedicated Gigabit Ethernet links and watched Iometer report cumulative read and write rates of 226MB/sec and 208MB/sec. It was no slouch for IP SANs either with Iometer reporting read and write rates of 226MB/sec and 222MB/sec for a dual-Gigabit MPIO link to a 500GB target.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="UF8i6wb39dYmTcj9UgNcd8" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/UF8i6wb39dYmTcj9UgNcd8-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/UF8i6wb39dYmTcj9UgNcd8.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>The appliance's Pentium CPU didn't wilt when under extreme pressure from our tests</em></p><h2 id="the-best-of-the-rest">The best of the rest</h2><p>Synology's cloud support is second to none with the Cloud Sync app now working with eighteen public providers. We easily linked it to Dropbox and also used the File Explorer app to remotely browse files in our Dropbox cloud repository and download them directly. </p><p>Workstation backup is covered by the updated Cloud Station Server app which teams up with Synology's Windows, Mac and Linux clients to sync local folders with the appliance in real time. With the Cloud Station client loaded on a Windows 10 desktop, we selected the folders we wanted protected and watched it secure new and modified files in seconds.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="S89xoBJSDUL8Cy7yZt6y99" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/S89xoBJSDUL8Cy7yZt6y99-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/S89xoBJSDUL8Cy7yZt6y99.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>You can create a private cloud and use it for workstation backup</em></p><p>Mail hosting is possible with the new MailPlus Server app which includes anti-spam and anti-virus protection. Along with a web client, Synology provides client apps for iOS and Android but it will be charging for additional client licenses beyond the five that are included.</p><h2 id="conclusions">Conclusions</h2><p>Apart from the lack of lockable drive carriers, there's nothing we can fault the DS916+ for. It delivers top performance, the low noise levels make it well suited to home offices or small businesses and its data protection and cloud features are beyond reproach. </p><p>There's a huge range of free apps to choose from as well and if you're planning on loading lots of them, we recommend spending a little extra cash and getting the 8GB model.</p><h2 id="verdict">Verdict</h2><p>Top performance and a heap of storage features makes Synology’s DS916+ an ideal small business NAS. Simply put, it’s great value.</p><p>Chassis: Desktop</p><p>CPU: 1.6GHz Intel Pentium N3710</p><p>Memory: 8GB DDR3 (also available with 2GB)</p><p>Storage: 4 x hot-swap SATA drive bays</p><p>Array support: SHR, RAID0, 1, 10, 5, 6, hot-spare</p><p>Network: 2 x Gigabit Ethernet</p><p>Other ports: 3 x USB 3</p><p>Expansion: 1 x eSATA</p><p>Power: External PSU</p><p>Management: Web browser</p><p>Warranty: 3 years limited</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/nas/26684/synology-diskstation-ds916-review</link>
                                                                            <description>
                            <![CDATA[ Synology puts some serious NAS power on your desktop ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">ef1wUL8VQdDKKi6jktq5vV</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/uk86PKdab8zM2XcRx39sUj-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Wed, 15 Jun 2016 08:55:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/uk86PKdab8zM2XcRx39sUj-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                                                                                                                                                                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/uk86PKdab8zM2XcRx39sUj-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>The DS916+ is the latest member of Synology's burgeoning family of Plus' NAS appliances. It's aimed at IT professionals and small businesses who want affordable four-bay network storage with a heap of data protection features. Performance is another key feature as it's endowed with a speedy 1.6GHz quad-core Pentium N3710 processor.</p><p>Memory can't be upgraded but Synology has made the DS916+ available with either 2GB or 8GB of DDR3 RAM. We have the latter on review which costs 410. We think it is the better bet as the 2GB version only saves you around 32.</p><p>Along with dual Gigabit Ethernet ports, the DS916+ has three USB 3 ports. The single eSATA port provides room to grow as the appliance supports Synology's five-bay DX513 expansion unit.</p><h2 id="silence-is-golden">Silence is golden</h2><p>Externally, there are no differences between the DS916+ and the older Atom C2538-based DS415+ with both lacking any physical disk security. They employ a push-fit cover for the four hot-swap drive bays along with tool-free, non-lockable disk carriers. </p><p>For testing, we had no problems fitting a quartet of Seagate's latest 8TB NAS HDD drives. Cooling is handled by a pair of 9cm fans at the rear which are whisper-quiet.</p><p>We tested noise levels by placing the DS916+ in a quiet room and used the SPLnFTT iOS app to record a background noise level of 34dB. With the appliance powered up and our iPad placed one metre away, we recorded a small increase to 38dB.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="MXpFFipQenFJ48LzgSKcxR" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/MXpFFipQenFJ48LzgSKcxR-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/MXpFFipQenFJ48LzgSKcxR.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Noise levels from the dual cooling fans are very low</em></p><h2 id="deployment-and-dsm">Deployment and DSM</h2><p>Installation is neatly handled by Synology's web-based discovery web interface as it spotted the appliance on our lab network and offered to create a four-drive SHR (Synology Hybrid RAID) array. You can sidestep this and pick a classic RAID array, but we find SHR to be more flexible. </p><p>It allows you to mix and match drives of different sizes in the same array without taking a hit on capacity. Plus, during the creation phase, you can opt for single or dual-drive redundancy.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="H8UhDhPTcQeJ7DTrkL5M2d" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/H8UhDhPTcQeJ7DTrkL5M2d-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/H8UhDhPTcQeJ7DTrkL5M2d.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Versatile SHR arrays support single- and dual-drive redundancy</em></p><p>The set up wizard installed the latest DSM 6 software which has a superb range of features and a keen focus on data protection. All Synology's Plus models use 64-bit CPUs so they support BTRFS which brings share snapshots into play.</p><h2 id="great-data-protection">Great data protection </h2><p>The Snapshot Replication app provides all the tools required for scheduling snapshots. We used it to select shared folders and iSCSI LUNs, set regular schedules and request snapshot frequencies as often as every five minutes.</p><p>We also decided how long to retain snapshots with the oldest ones being automatically removed. Usefully, the app provides a customisable policy so you can retain daily, weekly, monthly and yearly snapshots if you wish.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="f4U8StntKXZ4XhuVVY4rNe" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/f4U8StntKXZ4XhuVVY4rNe-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/f4U8StntKXZ4XhuVVY4rNe.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>The Snapshot Replication app handles NAS share and iSCSI snapshot schedules and recovery</em></p><p>The new Hyper Backup app neatly centralises all your local, remote, Rysnc and cloud backups in a single console and provides wizards for scheduling 14 different types of backups. Data restoration is a cinch as we used the Backup Explorer app to browse our backups and choose files to copy back.</p><h2 id="good-performance">Good performance </h2><p>The DS916+ performed very well with copies of a 25GB file using a mapped share returning read and write speeds of 113MB/sec and 112MB/sec. Backup performance is also good as our 22.4GB folder with 10,500 small files was secured at a speedy average of 88MB/sec. </p><p>The processor's integral AES-NI engine also delivered the goods as copying our 25GB file to an encrypted folder averaged an impressive 104MB/sec. We also noticed that the CPU handled encryption overheads well with utilisation hovering around the 40 percent mark.</p><p>To test maximum performance we used a pair of Xeon E5-2600 v4 servers, mapped a share to each one over dedicated Gigabit Ethernet links and watched Iometer report cumulative read and write rates of 226MB/sec and 208MB/sec. It was no slouch for IP SANs either with Iometer reporting read and write rates of 226MB/sec and 222MB/sec for a dual-Gigabit MPIO link to a 500GB target.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="UF8i6wb39dYmTcj9UgNcd8" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/UF8i6wb39dYmTcj9UgNcd8-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/UF8i6wb39dYmTcj9UgNcd8.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>The appliance's Pentium CPU didn't wilt when under extreme pressure from our tests</em></p><h2 id="the-best-of-the-rest">The best of the rest</h2><p>Synology's cloud support is second to none with the Cloud Sync app now working with eighteen public providers. We easily linked it to Dropbox and also used the File Explorer app to remotely browse files in our Dropbox cloud repository and download them directly. </p><p>Workstation backup is covered by the updated Cloud Station Server app which teams up with Synology's Windows, Mac and Linux clients to sync local folders with the appliance in real time. With the Cloud Station client loaded on a Windows 10 desktop, we selected the folders we wanted protected and watched it secure new and modified files in seconds.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="S89xoBJSDUL8Cy7yZt6y99" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/S89xoBJSDUL8Cy7yZt6y99-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/S89xoBJSDUL8Cy7yZt6y99.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>You can create a private cloud and use it for workstation backup</em></p><p>Mail hosting is possible with the new MailPlus Server app which includes anti-spam and anti-virus protection. Along with a web client, Synology provides client apps for iOS and Android but it will be charging for additional client licenses beyond the five that are included.</p><h2 id="conclusions">Conclusions</h2><p>Apart from the lack of lockable drive carriers, there's nothing we can fault the DS916+ for. It delivers top performance, the low noise levels make it well suited to home offices or small businesses and its data protection and cloud features are beyond reproach. </p><p>There's a huge range of free apps to choose from as well and if you're planning on loading lots of them, we recommend spending a little extra cash and getting the 8GB model.</p><h2 id="verdict">Verdict</h2><p>Top performance and a heap of storage features makes Synology’s DS916+ an ideal small business NAS. Simply put, it’s great value.</p><p>Chassis: Desktop</p><p>CPU: 1.6GHz Intel Pentium N3710</p><p>Memory: 8GB DDR3 (also available with 2GB)</p><p>Storage: 4 x hot-swap SATA drive bays</p><p>Array support: SHR, RAID0, 1, 10, 5, 6, hot-spare</p><p>Network: 2 x Gigabit Ethernet</p><p>Other ports: 3 x USB 3</p><p>Expansion: 1 x eSATA</p><p>Power: External PSU</p><p>Management: Web browser</p><p>Warranty: 3 years limited</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Asustor AS6204T review ]]></title>
                                                                                                <dc:content><![CDATA[ <p>Asustor is the storage spin-off of laptop giant Asus and has built up a solid range of well-priced NAS appliances. Its latest AS6204T continues this tradition as this four-bay desktop box has one of Intel's latest Braswell' 1.6GHz Celeron N3150 processors and yet prices start at just 352 ex VAT.</p><p>The port count is good as the AS6204T has a pair of Gigabit Ethernet ports, three USB 3 connectors, a couple of USB 2 sockets and two eSATA sockets at the rear along with a single HDMI port. You can plug in a USB disk at the front and press the One-Touch Backup button to start a backup job on the appliance that copies data to or from the external storage device.</p><p>The appliance comes with 4GB of DDR3L memory which can be upgraded to 8GB. It's easy to do, but you'll need to replace the two 2GB SO-DIMM modules with 4GB versions. Plus, it pays to be careful when removing the metal lid as it's wafer-thin and easily bent.</p><p>The appliance uses an external power brick which should be secured as it's easy to accidentally pull the plug out of its small socket. All cooling is handled by a single 12cm fan and we found the appliance was whisper-quiet.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="rshvrEeuPgtrXyyToQEyqK" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/rshvrEeuPgtrXyyToQEyqK-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/rshvrEeuPgtrXyyToQEyqK.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><h2 id="control-center-and-myarchive">Control Center and MyArchive</h2><p>We tested the AS6204T by loading three 4TB WD Red NAS Pro hard disks into the solid metal drive carriers and used the Asustor Control Center app to discover the appliance. We found the appliance's front-mounted LCD panel very useful and its menus easily accessed using the group of four buttons alongside. </p><p>We used the Control Center app to create a RAID5 array with mirrors, stripes and RAID6 also supported. It took nearly 10 hours to synchronise our array but we could use the appliance during this phase, albeit with slightly reduced performance.</p><p>The MyArchive feature allows hard disks in the third or fourth bays to be designated as removable media. This'll prove handy for quickly transferring data between separate Asustor appliances and for storing backup data off-site.</p><p>We tested this feature using a 1TB WD drive and after formatting it as a MyArchive drive, copied 22GB of data to it from another share using the File Manager app. We then ejected the drive from the Storage Manager app, plugged it into the IT Pro lab's trusty old AS-606T and swiftly transferred the new data across.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="feBUbniwYyDgnFmMmDfpXN" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/feBUbniwYyDgnFmMmDfpXN-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/feBUbniwYyDgnFmMmDfpXN.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>The ADM web console is well-designed and easy to use</em></p><h2 id="good-performance-2">Good performance</h2><p>For performance testing, we used a HP ProLiant DL380 Gen9 rack server loaded with Windows Server 2012 R2. For a share mapped over Gigabit Ethernet, Iometer reported fast raw read and write rates of 113MB/sec and 108MB/sec while copies of a 25GB file returned equally good real world speeds of 110MB/sec and 108MB/sec. </p><p>Backup performance won't disappoint as we secured our 22.4GB folder and its 10,500 small files at a speedy 84MB/sec. To test maximum NAS performance, we mapped a share to another Xeon E5-2600 v3 Windows server and with Iometer running on both systems, recorded cumulative read and write rates of 226MB/sec and 221MB/sec thus confirming Asustor's claimed speeds.</p><p>IP SAN performance is just as good with a 600GB target returning Iometer read and write speeds of 113MB/sec and 112MB/sec. The AS6204T didn't wilt under pressure as speeds for a dual Gigabit Ethernet MPIO link stepped up to 226MB/sec and 220MB/sec.</p><p>The N3150 CPU and its integral AES-NI engine handled encrypted folders well with copies of our 25GB test file delivering sustained write speeds of 78MB/sec. To put this in perspective, we ran the same test on <a href="https://www.itpro.com/storage/20048/synology-diskstation-ds1813-review" target="_self" data-original-url="https://www.itpro.com/storage/20048/synology-diskstation-ds1813-review">an older Synology DS1813+</a> with an older D2700 Atom processor which only mustered an average 22MB/sec write speed.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="Vqi4JUtMHNW9Xm9sXsvxzg" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/Vqi4JUtMHNW9Xm9sXsvxzg-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/Vqi4JUtMHNW9Xm9sXsvxzg.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>You can even use the VirtualBox app to host a Windows Server 2012 R2 VM on the appliance</em></p><h2 id="backup-and-file-syncing">Backup and file syncing</h2><p>Asustor's Data Master (ADM) web console and its chunky icons provide easy access to all features. We used the Backup & Restore app to secure data to other local folders, Rsync compatible NAS appliances and FTP servers plus external USB and eSATA devices. </p><p>The Amazon S3 app worked well. If you want to use providers such as Amazon Glacier or Microsoft Azure then you'll need to check out alternative appliances from Qnap and Synology.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="RWD3SfVYAJZReqYHfRUuF4" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/RWD3SfVYAJZReqYHfRUuF4-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/RWD3SfVYAJZReqYHfRUuF4.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Cloud backup support is limited to Amazon S3 which we had no problems with</em></p><p>File syncing apps are provided for multiple Dropbox, Google Drive and OneDrive accounts while Asustor has its own cloud storage service which works via its WebStorage app. The new QuikFynd app is useful for finding files on the appliance but, unlike Qnap's Q'sirch app, this is a third-party cloud service and the free Lite version of the app is heavily feature-limited.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="GSv2rT5xU9ej9waVwW76AY" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/GSv2rT5xU9ej9waVwW76AY-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/GSv2rT5xU9ej9waVwW76AY.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Asustor offers a choice of file syncing apps including Google Drive </em></p><p>Snapshots are supported, but these are only available for iSCSI LUNs and can only be taken manually. They worked well enough though, as we deleted data from a 600GB target and restored it all from the Storage Manager app in 30 seconds.</p><h2 id="conclusions-2">Conclusions</h2><p>The AS6204T's low price and good performance make it a tempting NAS for small businesses. It's well built and has some useful backup apps as well. </p><p>However, we recommend checking out Qnap's new TS-453A as this N3150-powered 4-bay appliance puts up some stiff competition. Along with quad Gigabit Ethernet and dual HDMI ports, it has a vastly superior range of apps and it costs around 25 less too.</p><h2 id="verdict-2">Verdict</h2><p>The AS6204T delivers good storage performance and is well-suited to small businesses that don’t want many bells and whistles</p><p>Chassis: Desktop</p><p>CPU: 1.6GHz Intel Celeron N3150</p><p>Memory: 4GB DDR3L (max. 8GB)</p><p>Storage: 4 x 3.5in/2.5in hot-swap SATA drive bays</p><p>Array support: RAID0, 1, 5, 6, 10, JBOD</p><p>Network: 2 x Gigabit Ethernet</p><p>Other ports: 3 x USB 3, 2 x USB 2, 2 x eSATA, 1x HDMI</p><p>Management: Web browser</p><p>Warranty: 3 years RTB</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/nas/26481/asustor-as6204t-review</link>
                                                                            <description>
                            <![CDATA[ Asustor launches a cheap Braswell-powered NAS appliance ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">4QUuVbhpJCm25k8veE1KjB</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/sga6ktURYMvxXwfwX57P8k-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Thu, 05 May 2016 10:43:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/sga6ktURYMvxXwfwX57P8k-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                                                                                                                                                                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/sga6ktURYMvxXwfwX57P8k-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Asustor is the storage spin-off of laptop giant Asus and has built up a solid range of well-priced NAS appliances. Its latest AS6204T continues this tradition as this four-bay desktop box has one of Intel's latest Braswell' 1.6GHz Celeron N3150 processors and yet prices start at just 352 ex VAT.</p><p>The port count is good as the AS6204T has a pair of Gigabit Ethernet ports, three USB 3 connectors, a couple of USB 2 sockets and two eSATA sockets at the rear along with a single HDMI port. You can plug in a USB disk at the front and press the One-Touch Backup button to start a backup job on the appliance that copies data to or from the external storage device.</p><p>The appliance comes with 4GB of DDR3L memory which can be upgraded to 8GB. It's easy to do, but you'll need to replace the two 2GB SO-DIMM modules with 4GB versions. Plus, it pays to be careful when removing the metal lid as it's wafer-thin and easily bent.</p><p>The appliance uses an external power brick which should be secured as it's easy to accidentally pull the plug out of its small socket. All cooling is handled by a single 12cm fan and we found the appliance was whisper-quiet.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="rshvrEeuPgtrXyyToQEyqK" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/rshvrEeuPgtrXyyToQEyqK-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/rshvrEeuPgtrXyyToQEyqK.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><h2 id="control-center-and-myarchive">Control Center and MyArchive</h2><p>We tested the AS6204T by loading three 4TB WD Red NAS Pro hard disks into the solid metal drive carriers and used the Asustor Control Center app to discover the appliance. We found the appliance's front-mounted LCD panel very useful and its menus easily accessed using the group of four buttons alongside. </p><p>We used the Control Center app to create a RAID5 array with mirrors, stripes and RAID6 also supported. It took nearly 10 hours to synchronise our array but we could use the appliance during this phase, albeit with slightly reduced performance.</p><p>The MyArchive feature allows hard disks in the third or fourth bays to be designated as removable media. This'll prove handy for quickly transferring data between separate Asustor appliances and for storing backup data off-site.</p><p>We tested this feature using a 1TB WD drive and after formatting it as a MyArchive drive, copied 22GB of data to it from another share using the File Manager app. We then ejected the drive from the Storage Manager app, plugged it into the IT Pro lab's trusty old AS-606T and swiftly transferred the new data across.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="feBUbniwYyDgnFmMmDfpXN" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/feBUbniwYyDgnFmMmDfpXN-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/feBUbniwYyDgnFmMmDfpXN.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>The ADM web console is well-designed and easy to use</em></p><h2 id="good-performance-2">Good performance</h2><p>For performance testing, we used a HP ProLiant DL380 Gen9 rack server loaded with Windows Server 2012 R2. For a share mapped over Gigabit Ethernet, Iometer reported fast raw read and write rates of 113MB/sec and 108MB/sec while copies of a 25GB file returned equally good real world speeds of 110MB/sec and 108MB/sec. </p><p>Backup performance won't disappoint as we secured our 22.4GB folder and its 10,500 small files at a speedy 84MB/sec. To test maximum NAS performance, we mapped a share to another Xeon E5-2600 v3 Windows server and with Iometer running on both systems, recorded cumulative read and write rates of 226MB/sec and 221MB/sec thus confirming Asustor's claimed speeds.</p><p>IP SAN performance is just as good with a 600GB target returning Iometer read and write speeds of 113MB/sec and 112MB/sec. The AS6204T didn't wilt under pressure as speeds for a dual Gigabit Ethernet MPIO link stepped up to 226MB/sec and 220MB/sec.</p><p>The N3150 CPU and its integral AES-NI engine handled encrypted folders well with copies of our 25GB test file delivering sustained write speeds of 78MB/sec. To put this in perspective, we ran the same test on <a href="https://www.itpro.com/storage/20048/synology-diskstation-ds1813-review" target="_self" data-original-url="https://www.itpro.com/storage/20048/synology-diskstation-ds1813-review">an older Synology DS1813+</a> with an older D2700 Atom processor which only mustered an average 22MB/sec write speed.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="Vqi4JUtMHNW9Xm9sXsvxzg" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/Vqi4JUtMHNW9Xm9sXsvxzg-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/Vqi4JUtMHNW9Xm9sXsvxzg.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>You can even use the VirtualBox app to host a Windows Server 2012 R2 VM on the appliance</em></p><h2 id="backup-and-file-syncing">Backup and file syncing</h2><p>Asustor's Data Master (ADM) web console and its chunky icons provide easy access to all features. We used the Backup & Restore app to secure data to other local folders, Rsync compatible NAS appliances and FTP servers plus external USB and eSATA devices. </p><p>The Amazon S3 app worked well. If you want to use providers such as Amazon Glacier or Microsoft Azure then you'll need to check out alternative appliances from Qnap and Synology.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="RWD3SfVYAJZReqYHfRUuF4" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/RWD3SfVYAJZReqYHfRUuF4-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/RWD3SfVYAJZReqYHfRUuF4.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Cloud backup support is limited to Amazon S3 which we had no problems with</em></p><p>File syncing apps are provided for multiple Dropbox, Google Drive and OneDrive accounts while Asustor has its own cloud storage service which works via its WebStorage app. The new QuikFynd app is useful for finding files on the appliance but, unlike Qnap's Q'sirch app, this is a third-party cloud service and the free Lite version of the app is heavily feature-limited.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="GSv2rT5xU9ej9waVwW76AY" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/GSv2rT5xU9ej9waVwW76AY-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/GSv2rT5xU9ej9waVwW76AY.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Asustor offers a choice of file syncing apps including Google Drive </em></p><p>Snapshots are supported, but these are only available for iSCSI LUNs and can only be taken manually. They worked well enough though, as we deleted data from a 600GB target and restored it all from the Storage Manager app in 30 seconds.</p><h2 id="conclusions-2">Conclusions</h2><p>The AS6204T's low price and good performance make it a tempting NAS for small businesses. It's well built and has some useful backup apps as well. </p><p>However, we recommend checking out Qnap's new TS-453A as this N3150-powered 4-bay appliance puts up some stiff competition. Along with quad Gigabit Ethernet and dual HDMI ports, it has a vastly superior range of apps and it costs around 25 less too.</p><h2 id="verdict-2">Verdict</h2><p>The AS6204T delivers good storage performance and is well-suited to small businesses that don’t want many bells and whistles</p><p>Chassis: Desktop</p><p>CPU: 1.6GHz Intel Celeron N3150</p><p>Memory: 4GB DDR3L (max. 8GB)</p><p>Storage: 4 x 3.5in/2.5in hot-swap SATA drive bays</p><p>Array support: RAID0, 1, 5, 6, 10, JBOD</p><p>Network: 2 x Gigabit Ethernet</p><p>Other ports: 3 x USB 3, 2 x USB 2, 2 x eSATA, 1x HDMI</p><p>Management: Web browser</p><p>Warranty: 3 years RTB</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Thecus N5810 review ]]></title>
                                                                                                <dc:content><![CDATA[ <p>Thecus has a reputation for delivering affordable NAS appliances and it does so again with its latest NAS, the N5810. This 5-bay desktop box is endowed with a 2GHz J1900 Intel Celeron CPU and yet prices start at only 369 ex VAT nearly 50 less than <a href="https://www.itpro.com/nas/25608/synology-diskstation-ds1515-review" target="_self" data-original-url="https://www.itpro.com/nas/25608/synology-diskstation-ds1515-review">Synology's DS1515</a>.</p><p>The N5810 employs the same sturdy chassis as <a href="https://www.itpro.com/nas/25853/thecus-n5810pro-zero-crash-review" target="_self" data-original-url="https://www.itpro.com/nas/25853/thecus-n5810pro-zero-crash-review">the N5810Pro</a>, but minus the clever built-in little mini-UPS battery. Thecus has cut costs further by reducing the Gigabit Ethernet port count from five to two.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="SkxHrSMwPBptFQUAEHvo9n" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/SkxHrSMwPBptFQUAEHvo9n-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/SkxHrSMwPBptFQUAEHvo9n.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>It includes 4GB of DDR3 memory, but we advise caution if you're planning on upgrading it. As we highlighted in our N5810Pro review, the appliance's cover is very tricky to remove and replace. </p><p>A new feature that will appeal to businesses looking for maximum uptime is Thecus System Failover which mirrors data to a secondary N5810 appliance. Thecus has also released an early beta of its ThecusOS 7 firmware. It's been a long time in the making and we tell you whether it's a worthy upgrade.</p><h2 id="easy-deployment">Easy deployment </h2><p>The N5810 was simple to install. The Setup Wizard quickly discovered it and installed the ThecusOS 5 production firmware. It also helped create a RAID5 array with our quartet of 4TB WD Red NAS Pro drives.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="VMN2Lp3wRwSCPWa5ZU89EX" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/VMN2Lp3wRwSCPWa5ZU89EX-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/VMN2Lp3wRwSCPWa5ZU89EX.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Installation is aided by a wizard that helped set up our RAID array</em></p><p>The ThecusOS 5 web interface is looking dated, but does provide quick access to all key storage features. We easily created NAS shares and dished out read and write privileges for local users.</p><p>IP SANs are equally pain-free as we selected a target size, applied CHAP authentication as required and chose from thin provisioning or instant allocation. The whole process is swift as LUN creation and target assignment are carried out automatically by the IP SAN wizard.</p><h2 id="snapshots-and-backup-features">Snapshots and backup features </h2><p>When creating RAID arrays, choose BTRFS as this brings Thecus' snapshots into play. The N5810 supports up to 16 snapshots for each share or iSCSI LUN and we could run them manually or schedule them at regular intervals. </p><p>Restoring entire shares is swift as we selected one from the list and had deleted data recovered in under a minute. Snapshots can also be presented as network shares to authorised users so they can restore individual files using drag and drop.</p><p>Thecus' Data Guard app allowed us to schedule backups to other local shares, USB devices and remote Rsync-compatible NAS appliances. Cloud storage backup is limited to Amazon S3. For cloud-based file syncing, Thecus only provides ElephantDrive and Dropbox apps. </p><h2 id="good-performance-3">Good performance</h2><p>For testing, we mapped a share to an HP ProLiant DL380 Gen9 rack server running Windows Server 2012 R2. Iometer returned fast raw read and write speeds of 113MB/sec and 107MB/sec while real world copies of a 25GB test file delivered sustained averages of 111MB/sec and 106MB/sec.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="2NpQ9yoawNbjBGeZViHLBa" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/2NpQ9yoawNbjBGeZViHLBa-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/2NpQ9yoawNbjBGeZViHLBa.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The N5810 is a good choice for data backup as copies of a 22.4GB folder containing 10,500 small files mustered a healthy 85MB/sec. We also tested maximum performance by mapping a share to another server connected to the second Gigabit Ethernet port and saw Iometer report cumulative read and write speeds of 224MB/sec and 192MB/sec.</p><p>IP SAN speed are good as well, with a 600GB target returning Iometer read and write speeds of 113MB/sec and 98MB/sec. On a dual MPIO link, speeds increased to 226MB/sec and 173MB/sec.</p><h2 id="thecusos-7-should-you-upgrade-now">ThecusOS 7 should you upgrade now? </h2><p>With the appliance upgraded to ThecusOS 7, we were initially impressed with the new Linux/OS X desktop-style web interface. It's similar to both Synology's and QNap's current operating systems and, compared to ThecusOS 5, is much easier to use with quick access icons on its desktop, a taskbar and a handy resource monitor.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="ShB2ZWBYyhVsdUMcYyRid" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/ShB2ZWBYyhVsdUMcYyRid-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/ShB2ZWBYyhVsdUMcYyRid.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>The ThecusOS 7 beta user interface is much nicer than its predecessor</em></p><p>The Control Panel app provides links to all key features and there are desktop icons for disk and RAID settings as well as for file services and local user accounts. It also introduces SSD caching for improved performance but when we upgraded to the latest v3.00.03 firmware revision, we found Thecus had removed this feature as it could cause the system to become unstable'.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="GXAShweVmQoUoRuQ6YJLXJ" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/GXAShweVmQoUoRuQ6YJLXJ-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/GXAShweVmQoUoRuQ6YJLXJ.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>The new performance monitors are much more informative</em></p><p>The new App Center makes it easier to install apps for adding extra features to the N5810, but the selection is puny compared to those available for Qnap and Synology NAS devices. Many of the apps that are available feel half-baked or haven't been updated yet to work properly with ThecusOS 7 - the innovative' Google Drive app requires knowledge of FUSE coding to use and we found the preconfigured Dropbox app no longer worked.</p><p>Thecus' older Data Burn app for backing up files on the NAS to optical disc isn't supported by ThecusOS 7 beta. The Amazon S3 backup app didn't work either. We relayed this to Thecus, which confirmed that this app is also on its fix list.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="oAtUDK3w4bkzLG6fH5XyPh" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/oAtUDK3w4bkzLG6fH5XyPh-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/oAtUDK3w4bkzLG6fH5XyPh.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>The App Center provides easy access to apps but some don't work properly with ThecusOS 7</em></p><h2 id="conclusions-3">Conclusions </h2><p>The ThecusOS 7 beta firmware is a step in the right direction as the new user interface is a big improvement. We don't recommend installing it on a live production appliance though, as it's far too flaky at the moment. The good news is that we were able to downgrade our appliance back to ThecusOS 5. </p><p>We had no problems with the current production firmware and although the N5810 lags behind Qnap and Synology for features, it delivers top NAS and IP SAN performance. The appliance is good value too, as you won't find a 5-bay business-class desktop NAS for less than this.</p><h2 id="verdict-3">Verdict</h2><p>A good value 5-bay NAS appliance, but what you gain in cash you lose in features and the ThecusOS 7 beta firmware should not be used on a live, production appliance</p><p>Chassis: Desktop</p><p>CPU: 2GHz Intel Celeron J1900</p><p>Memory: 4GB DDR3 (max 8GB)</p><p>Storage: 5 x 2.5/3.5in SATA hot-swap drive bays</p><p>Array support: RAID0, 1, 5, 6, 10, hot-spare, JBODs</p><p>Network: 2 x Gigabit Ethernet</p><p>Other ports: 3 x USB 3, 2 x USB 2, HDMI</p><p>Management: Web browser</p><p>Warranty: Two year RTB</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/nas/26422/thecus-n5810-review</link>
                                                                            <description>
                            <![CDATA[ This affordable small business NAS has some growing pains ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">3d1mkktjUcjQJCBFPdiDRt</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/UhhsyrMDnFKyZ5Y6vdUGk5-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Tue, 26 Apr 2016 11:13:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/UhhsyrMDnFKyZ5Y6vdUGk5-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                                                                                                                                                                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/UhhsyrMDnFKyZ5Y6vdUGk5-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Thecus has a reputation for delivering affordable NAS appliances and it does so again with its latest NAS, the N5810. This 5-bay desktop box is endowed with a 2GHz J1900 Intel Celeron CPU and yet prices start at only 369 ex VAT nearly 50 less than <a href="https://www.itpro.com/nas/25608/synology-diskstation-ds1515-review" target="_self" data-original-url="https://www.itpro.com/nas/25608/synology-diskstation-ds1515-review">Synology's DS1515</a>.</p><p>The N5810 employs the same sturdy chassis as <a href="https://www.itpro.com/nas/25853/thecus-n5810pro-zero-crash-review" target="_self" data-original-url="https://www.itpro.com/nas/25853/thecus-n5810pro-zero-crash-review">the N5810Pro</a>, but minus the clever built-in little mini-UPS battery. Thecus has cut costs further by reducing the Gigabit Ethernet port count from five to two.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="SkxHrSMwPBptFQUAEHvo9n" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/SkxHrSMwPBptFQUAEHvo9n-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/SkxHrSMwPBptFQUAEHvo9n.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>It includes 4GB of DDR3 memory, but we advise caution if you're planning on upgrading it. As we highlighted in our N5810Pro review, the appliance's cover is very tricky to remove and replace. </p><p>A new feature that will appeal to businesses looking for maximum uptime is Thecus System Failover which mirrors data to a secondary N5810 appliance. Thecus has also released an early beta of its ThecusOS 7 firmware. It's been a long time in the making and we tell you whether it's a worthy upgrade.</p><h2 id="easy-deployment">Easy deployment </h2><p>The N5810 was simple to install. The Setup Wizard quickly discovered it and installed the ThecusOS 5 production firmware. It also helped create a RAID5 array with our quartet of 4TB WD Red NAS Pro drives.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="VMN2Lp3wRwSCPWa5ZU89EX" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/VMN2Lp3wRwSCPWa5ZU89EX-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/VMN2Lp3wRwSCPWa5ZU89EX.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Installation is aided by a wizard that helped set up our RAID array</em></p><p>The ThecusOS 5 web interface is looking dated, but does provide quick access to all key storage features. We easily created NAS shares and dished out read and write privileges for local users.</p><p>IP SANs are equally pain-free as we selected a target size, applied CHAP authentication as required and chose from thin provisioning or instant allocation. The whole process is swift as LUN creation and target assignment are carried out automatically by the IP SAN wizard.</p><h2 id="snapshots-and-backup-features">Snapshots and backup features </h2><p>When creating RAID arrays, choose BTRFS as this brings Thecus' snapshots into play. The N5810 supports up to 16 snapshots for each share or iSCSI LUN and we could run them manually or schedule them at regular intervals. </p><p>Restoring entire shares is swift as we selected one from the list and had deleted data recovered in under a minute. Snapshots can also be presented as network shares to authorised users so they can restore individual files using drag and drop.</p><p>Thecus' Data Guard app allowed us to schedule backups to other local shares, USB devices and remote Rsync-compatible NAS appliances. Cloud storage backup is limited to Amazon S3. For cloud-based file syncing, Thecus only provides ElephantDrive and Dropbox apps. </p><h2 id="good-performance-3">Good performance</h2><p>For testing, we mapped a share to an HP ProLiant DL380 Gen9 rack server running Windows Server 2012 R2. Iometer returned fast raw read and write speeds of 113MB/sec and 107MB/sec while real world copies of a 25GB test file delivered sustained averages of 111MB/sec and 106MB/sec.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="2NpQ9yoawNbjBGeZViHLBa" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/2NpQ9yoawNbjBGeZViHLBa-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/2NpQ9yoawNbjBGeZViHLBa.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The N5810 is a good choice for data backup as copies of a 22.4GB folder containing 10,500 small files mustered a healthy 85MB/sec. We also tested maximum performance by mapping a share to another server connected to the second Gigabit Ethernet port and saw Iometer report cumulative read and write speeds of 224MB/sec and 192MB/sec.</p><p>IP SAN speed are good as well, with a 600GB target returning Iometer read and write speeds of 113MB/sec and 98MB/sec. On a dual MPIO link, speeds increased to 226MB/sec and 173MB/sec.</p><h2 id="thecusos-7-should-you-upgrade-now">ThecusOS 7 should you upgrade now? </h2><p>With the appliance upgraded to ThecusOS 7, we were initially impressed with the new Linux/OS X desktop-style web interface. It's similar to both Synology's and QNap's current operating systems and, compared to ThecusOS 5, is much easier to use with quick access icons on its desktop, a taskbar and a handy resource monitor.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="ShB2ZWBYyhVsdUMcYyRid" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/ShB2ZWBYyhVsdUMcYyRid-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/ShB2ZWBYyhVsdUMcYyRid.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>The ThecusOS 7 beta user interface is much nicer than its predecessor</em></p><p>The Control Panel app provides links to all key features and there are desktop icons for disk and RAID settings as well as for file services and local user accounts. It also introduces SSD caching for improved performance but when we upgraded to the latest v3.00.03 firmware revision, we found Thecus had removed this feature as it could cause the system to become unstable'.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="GXAShweVmQoUoRuQ6YJLXJ" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/GXAShweVmQoUoRuQ6YJLXJ-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/GXAShweVmQoUoRuQ6YJLXJ.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>The new performance monitors are much more informative</em></p><p>The new App Center makes it easier to install apps for adding extra features to the N5810, but the selection is puny compared to those available for Qnap and Synology NAS devices. Many of the apps that are available feel half-baked or haven't been updated yet to work properly with ThecusOS 7 - the innovative' Google Drive app requires knowledge of FUSE coding to use and we found the preconfigured Dropbox app no longer worked.</p><p>Thecus' older Data Burn app for backing up files on the NAS to optical disc isn't supported by ThecusOS 7 beta. The Amazon S3 backup app didn't work either. We relayed this to Thecus, which confirmed that this app is also on its fix list.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="oAtUDK3w4bkzLG6fH5XyPh" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/oAtUDK3w4bkzLG6fH5XyPh-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/oAtUDK3w4bkzLG6fH5XyPh.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>The App Center provides easy access to apps but some don't work properly with ThecusOS 7</em></p><h2 id="conclusions-3">Conclusions </h2><p>The ThecusOS 7 beta firmware is a step in the right direction as the new user interface is a big improvement. We don't recommend installing it on a live production appliance though, as it's far too flaky at the moment. The good news is that we were able to downgrade our appliance back to ThecusOS 5. </p><p>We had no problems with the current production firmware and although the N5810 lags behind Qnap and Synology for features, it delivers top NAS and IP SAN performance. The appliance is good value too, as you won't find a 5-bay business-class desktop NAS for less than this.</p><h2 id="verdict-3">Verdict</h2><p>A good value 5-bay NAS appliance, but what you gain in cash you lose in features and the ThecusOS 7 beta firmware should not be used on a live, production appliance</p><p>Chassis: Desktop</p><p>CPU: 2GHz Intel Celeron J1900</p><p>Memory: 4GB DDR3 (max 8GB)</p><p>Storage: 5 x 2.5/3.5in SATA hot-swap drive bays</p><p>Array support: RAID0, 1, 5, 6, 10, hot-spare, JBODs</p><p>Network: 2 x Gigabit Ethernet</p><p>Other ports: 3 x USB 3, 2 x USB 2, HDMI</p><p>Management: Web browser</p><p>Warranty: Two year RTB</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Dell PowerEdge R330 review ]]></title>
                                                                                                <dc:content><![CDATA[ <p>SMBs and remote offices looking for their first rack server should check out Dell's PowerEdge R330 as it has a lot to offer. Succeeding the venerable twelfth-generation R320, it supports the latest Skylake' Xeon E3-1200 v5 processors and DDR4 memory plus it has improved storage options and performance.</p><p>It's not exorbitantly priced either, with prices starting at only 830 ex VAT. This'll get most small businesses out of the starting blocks as it includes a decent quad-core 3GHz Xeon E3-1220 v5 CPU and 4GB of 1.2V DDR4 memory.</p><p>Memory capacity is significantly less than the R320 which has six DIMM slots and supports up to 192GB of DDR3. However, for the majority of SMBs, we think the maximum 64GB of faster DDR4 in the R330 will still be enough to handle even their most demanding apps.</p><p>Both the R320 and R330 can be ordered with four LFF or eight SFF hot-plug drive bays, but the R330 has a trick up its sleeve as you can sneak a couple of 1.8in SATA SSDs into its optical drive bay and use them as fast-booting mirrored OS drives. It's a little surprising that Dell didn't opt for M.2 or mSATA space-saving SSDs though, as 1.8in SATA SSDs are an increasingly rare breed.</p><h2 id="storage-decisions">Storage decisions </h2><p>Cold-swap four-bay systems start with the drive backplane cabled to the motherboard's embedded four-port SATA connector and PERC S130 controller. The dual 1.8in SATA SSD boot option is only available on this chassis though, as you would be expected to use two of the normal SFF bays for this purpose in the eight-drive model.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="KudsH5AX3araRLnQCotvhL" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/KudsH5AX3araRLnQCotvhL-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/KudsH5AX3araRLnQCotvhL.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The S130 supports software-managed mirrors, stripes and RAID5 arrays for SATA drives only. Our review system was supplied with Dell's optional PERC H330 controller card which fits in a dedicated slot and brings 12Gbits/sec SAS and hot-swap support.</p><p>The H330 has dual, 4-port mini-SAS connectors and can be used in both the 4- and 8-bay versions of the chassis. It adds support for RAID10 and 50 spanned arrays. Plus, it can be viewed and managed directly from Dell's iDRAC8 remote management console - another useful feature.</p><p>If you have a fancy for dual-redundant RAID6 arrays, then you'll need Dell's PERC H730 controller. It uses the same dedicated slot as the H330 and also has 1GB of onboard DDR3 cache memory.</p><h2 id="expansion-noise-and-power">Expansion, noise and power </h2><p>The R330 slotted easily into our lab's 1000mm server rack cabinet but, at only 24in deep, it'll fit neatly into 800mm data cabinets as well. The server comes as standard with Dell's handy LCD panel which changes colour from blue to orange in the event of an error to provide at-a-glance server status.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="pLJwRq7JY4tUMs6vGT9DxK" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/pLJwRq7JY4tUMs6vGT9DxK-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/pLJwRq7JY4tUMs6vGT9DxK.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Good internal design makes it easy to maintain and upgrade the server. There's room for two PCI-Express slots, but you'll need to add the butterfly riser card when ordering as this isn't included as standard.</p><p>Cooling is handled by a bank of three cold-swap fans in front of the CPU and memory sockets. On 4-bay models with the expansion riser card and 8-bay models, an extra fan module needs to be installed in the spare bracket to the left.</p><p>We found noise levels to be slightly higher than <a href="https://www.itpro.com/1u-servers/25753/hpe-proliant-dl20-gen9-review" target="_self" data-original-url="https://www.itpro.com/1u-servers/25753/hpe-proliant-dl20-gen9-review">HP's ultra-compact ProLiant DL20 Gen9</a>. With our iPad placed one metre in front of the servers, <a href="https://itunes.apple.com/gb/app/splnfft-noise-meter/id355396114?mt=8" target="_blank">the SPLnFFT iOS app</a> recorded 41dB for the DL20 and 53dB for the R330.</p><p>The server comes with a single 350W hot-plug power supply and there's room next door for a second redundant PSU. Power consumption isn't a worry as our review system was measured drawing 48W in idle and peaking at only 75W with the CPU under extreme load.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="SpW5qURkY4sNrRo8x7EvcH" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/SpW5qURkY4sNrRo8x7EvcH-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/SpW5qURkY4sNrRo8x7EvcH.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>An iDRAC8 Express license provides remote server power control, monitoring and historical graphs</em></p><h2 id="remote-management">Remote management </h2><p>Management tools are in abundance with Dell's iDRAC8 providing a tidy web interface with a wealth of status information about critical hardware along with power monitoring and access to the PERC H330 RAID controller. The latter shares access with the first Gigabit Ethernet port, but Dell offers a snap-in upgrade card with a dedicated management port. You will need to upgrade form the included iDRAC Express 8 licence to the iDRAC8 Enterprise license if you want full server and OS remote control. </p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="WzPYotaRe7YA7gdjrdD6UV" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/WzPYotaRe7YA7gdjrdD6UV-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/WzPYotaRe7YA7gdjrdD6UV.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Dell's iDRAC8 provides direct access to the server's PERC RAID controller</em></p><p>Dell's OpenManage Server Administrator (OMSA) provides local web-based management while the free OpenManage Essentials (OME) delivers centralised management for all SNMP and WMI enabled systems. It runs regular network discoveries and provides a dashboard showing the status of all systems along with extensive alerting and graphical reporting facilities.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="ZhALpjuMshvWEccxKqMxQ5" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/ZhALpjuMshvWEccxKqMxQ5-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/ZhALpjuMshvWEccxKqMxQ5.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Dell's OpenManage Essentials provides network-wide system monitoring and fault alerting features</em></p><p>Mobile users will like Dell's OpenManage Mobile (OMM) app as it can link up with the iDRAC8 controller. We tested the iOS version on our iPad and found its hardware health status displays and alert notification really useful.</p><p>Even better, the OMM app can talk to the server running OME so we could keep a close eye on all our monitored network systems. The app opens with an overview providing coloured icons for swift status views and we could drill down and check alerts, system logs and hardware details.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="rwDrZwSrBLiyfsZrzHWQDD" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/rwDrZwSrBLiyfsZrzHWQDD-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/rwDrZwSrBLiyfsZrzHWQDD.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Dell's OMM iOS app links up with OME and provides mobile users with remote network and system monitoring</em></p><h2 id="conclusions-4">Conclusions </h2><p>The PowerEdge R330 is ideally suited to space-constrained SMBs looking for a powerful first server or to upgrade existing systems to cope with their expanding business apps. The myriad storage options can be confusing but there's no doubting this compact rack server's flexibility and it can't be faulted for features and performance making it good value.</p><h2 id="verdict-4">Verdict</h2><p>A versatile and powerful Xeon E3 v5 rack server that’s good value with plenty of expansion options and a generous remote management toolbox</p><p>Chassis: 1U rack</p><p>CPU: 3GHz Xeon E3-1220 v5</p><p>Memory: 32GB 2,133MHz 1.2V DDR4 (max 64GB)</p><p>Storage: 2 x 2TB Dell 7.2K NL-SAS SFF hard disks (max 8)</p><p>RAID: Dell PERC H330</p><p>Array support: Array support: RAID0, 1, 10, 5, 50</p><p>Network: 2 x Gigabit Ethernet</p><p>Expansion: 2 x PCI-Express 3.0 slots (with optional riser)</p><p>Power: 350W hot-plug PSU (max 2)</p><p>Management: Dell iDRAC8 Express</p><p>Warranty: 1 year basic Next Business Day</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/server/26035/dell-poweredge-r330-review</link>
                                                                            <description>
                            <![CDATA[ This Skylake rack server will give your business the edge ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">6Uoia6nXhvp6WXNtu5gmV9</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/WoDsz9sCvnCWZYA35Z4knR-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Thu, 11 Feb 2016 16:29:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Servers & Storage]]></category>
                                                    <category><![CDATA[Infrastructure]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/WoDsz9sCvnCWZYA35Z4knR-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                                                                                                                                                                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/WoDsz9sCvnCWZYA35Z4knR-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>SMBs and remote offices looking for their first rack server should check out Dell's PowerEdge R330 as it has a lot to offer. Succeeding the venerable twelfth-generation R320, it supports the latest Skylake' Xeon E3-1200 v5 processors and DDR4 memory plus it has improved storage options and performance.</p><p>It's not exorbitantly priced either, with prices starting at only 830 ex VAT. This'll get most small businesses out of the starting blocks as it includes a decent quad-core 3GHz Xeon E3-1220 v5 CPU and 4GB of 1.2V DDR4 memory.</p><p>Memory capacity is significantly less than the R320 which has six DIMM slots and supports up to 192GB of DDR3. However, for the majority of SMBs, we think the maximum 64GB of faster DDR4 in the R330 will still be enough to handle even their most demanding apps.</p><p>Both the R320 and R330 can be ordered with four LFF or eight SFF hot-plug drive bays, but the R330 has a trick up its sleeve as you can sneak a couple of 1.8in SATA SSDs into its optical drive bay and use them as fast-booting mirrored OS drives. It's a little surprising that Dell didn't opt for M.2 or mSATA space-saving SSDs though, as 1.8in SATA SSDs are an increasingly rare breed.</p><h2 id="storage-decisions">Storage decisions </h2><p>Cold-swap four-bay systems start with the drive backplane cabled to the motherboard's embedded four-port SATA connector and PERC S130 controller. The dual 1.8in SATA SSD boot option is only available on this chassis though, as you would be expected to use two of the normal SFF bays for this purpose in the eight-drive model.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="KudsH5AX3araRLnQCotvhL" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/KudsH5AX3araRLnQCotvhL-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/KudsH5AX3araRLnQCotvhL.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The S130 supports software-managed mirrors, stripes and RAID5 arrays for SATA drives only. Our review system was supplied with Dell's optional PERC H330 controller card which fits in a dedicated slot and brings 12Gbits/sec SAS and hot-swap support.</p><p>The H330 has dual, 4-port mini-SAS connectors and can be used in both the 4- and 8-bay versions of the chassis. It adds support for RAID10 and 50 spanned arrays. Plus, it can be viewed and managed directly from Dell's iDRAC8 remote management console - another useful feature.</p><p>If you have a fancy for dual-redundant RAID6 arrays, then you'll need Dell's PERC H730 controller. It uses the same dedicated slot as the H330 and also has 1GB of onboard DDR3 cache memory.</p><h2 id="expansion-noise-and-power">Expansion, noise and power </h2><p>The R330 slotted easily into our lab's 1000mm server rack cabinet but, at only 24in deep, it'll fit neatly into 800mm data cabinets as well. The server comes as standard with Dell's handy LCD panel which changes colour from blue to orange in the event of an error to provide at-a-glance server status.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="pLJwRq7JY4tUMs6vGT9DxK" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/pLJwRq7JY4tUMs6vGT9DxK-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/pLJwRq7JY4tUMs6vGT9DxK.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Good internal design makes it easy to maintain and upgrade the server. There's room for two PCI-Express slots, but you'll need to add the butterfly riser card when ordering as this isn't included as standard.</p><p>Cooling is handled by a bank of three cold-swap fans in front of the CPU and memory sockets. On 4-bay models with the expansion riser card and 8-bay models, an extra fan module needs to be installed in the spare bracket to the left.</p><p>We found noise levels to be slightly higher than <a href="https://www.itpro.com/1u-servers/25753/hpe-proliant-dl20-gen9-review" target="_self" data-original-url="https://www.itpro.com/1u-servers/25753/hpe-proliant-dl20-gen9-review">HP's ultra-compact ProLiant DL20 Gen9</a>. With our iPad placed one metre in front of the servers, <a href="https://itunes.apple.com/gb/app/splnfft-noise-meter/id355396114?mt=8" target="_blank">the SPLnFFT iOS app</a> recorded 41dB for the DL20 and 53dB for the R330.</p><p>The server comes with a single 350W hot-plug power supply and there's room next door for a second redundant PSU. Power consumption isn't a worry as our review system was measured drawing 48W in idle and peaking at only 75W with the CPU under extreme load.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="SpW5qURkY4sNrRo8x7EvcH" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/SpW5qURkY4sNrRo8x7EvcH-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/SpW5qURkY4sNrRo8x7EvcH.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>An iDRAC8 Express license provides remote server power control, monitoring and historical graphs</em></p><h2 id="remote-management">Remote management </h2><p>Management tools are in abundance with Dell's iDRAC8 providing a tidy web interface with a wealth of status information about critical hardware along with power monitoring and access to the PERC H330 RAID controller. The latter shares access with the first Gigabit Ethernet port, but Dell offers a snap-in upgrade card with a dedicated management port. You will need to upgrade form the included iDRAC Express 8 licence to the iDRAC8 Enterprise license if you want full server and OS remote control. </p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="WzPYotaRe7YA7gdjrdD6UV" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/WzPYotaRe7YA7gdjrdD6UV-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/WzPYotaRe7YA7gdjrdD6UV.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Dell's iDRAC8 provides direct access to the server's PERC RAID controller</em></p><p>Dell's OpenManage Server Administrator (OMSA) provides local web-based management while the free OpenManage Essentials (OME) delivers centralised management for all SNMP and WMI enabled systems. It runs regular network discoveries and provides a dashboard showing the status of all systems along with extensive alerting and graphical reporting facilities.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="ZhALpjuMshvWEccxKqMxQ5" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/ZhALpjuMshvWEccxKqMxQ5-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/ZhALpjuMshvWEccxKqMxQ5.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Dell's OpenManage Essentials provides network-wide system monitoring and fault alerting features</em></p><p>Mobile users will like Dell's OpenManage Mobile (OMM) app as it can link up with the iDRAC8 controller. We tested the iOS version on our iPad and found its hardware health status displays and alert notification really useful.</p><p>Even better, the OMM app can talk to the server running OME so we could keep a close eye on all our monitored network systems. The app opens with an overview providing coloured icons for swift status views and we could drill down and check alerts, system logs and hardware details.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="rwDrZwSrBLiyfsZrzHWQDD" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/rwDrZwSrBLiyfsZrzHWQDD-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/rwDrZwSrBLiyfsZrzHWQDD.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Dell's OMM iOS app links up with OME and provides mobile users with remote network and system monitoring</em></p><h2 id="conclusions-4">Conclusions </h2><p>The PowerEdge R330 is ideally suited to space-constrained SMBs looking for a powerful first server or to upgrade existing systems to cope with their expanding business apps. The myriad storage options can be confusing but there's no doubting this compact rack server's flexibility and it can't be faulted for features and performance making it good value.</p><h2 id="verdict-4">Verdict</h2><p>A versatile and powerful Xeon E3 v5 rack server that’s good value with plenty of expansion options and a generous remote management toolbox</p><p>Chassis: 1U rack</p><p>CPU: 3GHz Xeon E3-1220 v5</p><p>Memory: 32GB 2,133MHz 1.2V DDR4 (max 64GB)</p><p>Storage: 2 x 2TB Dell 7.2K NL-SAS SFF hard disks (max 8)</p><p>RAID: Dell PERC H330</p><p>Array support: Array support: RAID0, 1, 10, 5, 50</p><p>Network: 2 x Gigabit Ethernet</p><p>Expansion: 2 x PCI-Express 3.0 slots (with optional riser)</p><p>Power: 350W hot-plug PSU (max 2)</p><p>Management: Dell iDRAC8 Express</p><p>Warranty: 1 year basic Next Business Day</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Qnap TS-1263U-RP review ]]></title>
                                                                                                <dc:content><![CDATA[ <p>Prices for 10-Gigabit (10GbE) networking kit are dropping rapidly making it much more affordable for SMBs. This hasn't gone unnoticed by most NAS appliance vendors with Qnap the first to include a 10GbE SFP+ fibre adapter with a NAS, specifically the TS-x63U series.</p><p>Another feature that makes this family stand out is its wholesale adoption of AMD's 2GHz GX-420MC SoC (system on chip). This low-cost embedded x86 processor has four cores running at 2GHz, supports DDR3-1600 memory and has a low TDP of 17.6W.</p><p>The flagship TS-1263U-RP on review is a 2U rack mount system with 12 hot-swap SATA drive bays and dual hot-plug PSUs. You can add only a single external disk shelf, either the eight-disk SATA UX-800U-RP or the 12-disk UX-1200U-RP. Qnap's 10GbE card nestles in the single PCI-Express slot but it doesn't come with a transceiver so you'll need to source one separately - the Avago 850nm models we use cost around 80 ex VAT.</p><h2 id="build-quality-and-deployment">Build quality and deployment</h2><p>The appliance exhibits the classy build quality we've come to expect from Qnap with a solid steel chassis and sturdy metal drive carriers. The lid is easily removed for upgrades and the dual internal cooling fans are very quiet.</p><p>The appliance is supplied with 4GB of DDR3L memory on a single SO-DIMM module. You can fit up to 16GB, but as there are only two memory slots you'll need to dispense with the pre-installed 4GB to max it out.</p><p>Installation is deftly handled by Qnap's cloud portal as we entered the unique cloud key on the label on the lid and followed the quick start wizard which installed the latest QTS firmware. We also popped in a quartet of 4TB WD Red NAS Pro SATA drives and let it create a RAID5 array from them.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="vrZ9WcSjv2jhR8Ab9zGpQT" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/vrZ9WcSjv2jhR8Ab9zGpQT-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/vrZ9WcSjv2jhR8Ab9zGpQT.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>The discovery web portal helps set up storage but make sure you choose thick or thin volumes if you want snapshots</em></p><h2 id="new-storage-features">New storage features</h2><p>Qnap's latest QTS 4.2 firmware has a wealth of data backup features including excellent support for a wide range of cloud storage providers. We successfully backed up folders on the appliance to our Amazon S3 account using the Backup Station app, but Qnap also provides free apps for Amazon Glacier, Microsoft Azure, Google Cloud Storage and many more.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="pYif36Qbb5ofdfDbuJKEZn" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/pYif36Qbb5ofdfDbuJKEZn-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/pYif36Qbb5ofdfDbuJKEZn.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Qnap offers an impressive range of backup apps and supports a multitude of cloud providers</em></p><p>Workstation backup gets a boost as the new Qsync Central Station app allows users to link up with authorised shares on the appliance and synchronise folders with them. The Qsync Windows app is easy to use and for swift file restoration, it provides a direct link to the browser-based File Manager.</p><p>The File Manager also gets a makeover and now supports direct links to cloud storage providers. We linked it with our Dropbox and Google Drive accounts but it also supports remote links to FTP servers and allows folders to be remotely mounted using WebDAV.</p><h2 id="snapshots">Snapshots </h2><p>No self-respecting NAS vendor would now be seen without snapshots and QTS 4.2 supports them for both thick and thin multiple volume types (but not static volumes). You can run them on-demand or schedule them regularly for NAS volumes or iSCSI LUNs. You use the Snapshot Manager app to keep track of them.</p><p>Scheduled smart snapshots can save storage space as the appliance will only take the next snapshot if the data has changed since the last one. The Snapshot Manager makes light work of data recovery. We could view snapshots and use the Revert option for full recovery, or view NAS share contents and restore individual files.</p><p>The new Windows Snapshot Agent can be used to take application-consistent snapshots on iSCSI LUNs. Whenever the appliance wants to take a LUN snapshot, it'll inform the agent first which instructs the host system to flush all data from memory into the LUN.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="zJnSsDAihazKFfP5mSTyjR" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/zJnSsDAihazKFfP5mSTyjR-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/zJnSsDAihazKFfP5mSTyjR.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Snapshots can be scheduled and Qnap's Windows agent makes sure they're application-consistent</em></p><h2 id="good-management-and-performance">Good management and performance </h2><p>If you have multiple Qnap appliances then you can use the new Q'centre app to centrally manage and monitor them all from a single console. We used custom dashboards to create views of the appliance with graphs of storage pool and volume usage plus appliance hardware utilisation.</p><p>Qnap now offers Q'centre as VMware and Hyper-V virtual appliances. We tested the latter on our Windows Server 2012 R2 Hyper-V host. After importing the free VM, we found it delivered all the same features as the on-appliance version.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="tAE8hjPwg3bQ6Efc5YphNF" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/tAE8hjPwg3bQ6Efc5YphNF-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/tAE8hjPwg3bQ6Efc5YphNF.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>We used the new Q'centre Hyper-V VM to centrally manage the lab's Qnap appliances</em></p><p>For performance testing, we mapped a share over 10GbE to an HP ProLiant DL380 Gen9 rack server running Windows Server 2012 R2. Iometer reported fast raw read and write rates of 9.2Gbits/sec and 5Gbits/sec.</p><p>Real world NAS speeds are good too, with drag and drop copies of a 25GB test file returning read and write speeds of 412MB/sec and 316MB/sec. Backup operations are reasonably fast with our 22.4GB test folder and its 10,500 small files copied to a share at an average of 183MB/sec.</p><h2 id="conclusions-5">Conclusions</h2><p>Pricewise, the TS-1263U-RP is a winner as even though you'll need to source a 10GbE transceiver, it's still excellent value. Synology's 12-bay RS2416RP+ for example, costs nearly the same but has no PCI-Express slots and so can't be upgraded to 10GbE.</p><p>And then there's Qnap's own TS-1280U-RP which comes with a 3.4GHz E3-1200 v3 Xeon, dual PCI-Express slots and a massive expansion potential but costs around 800 more. If you're looking for a 10GbE-ready network storage appliance with a balanced combination of features, performance and price, then the TS-1263U-RP is well worth considering.</p><h2 id="verdict-5">Verdict</h2><p>Limited external expansion but this 12-bay appliance scores highly for storage features, its 10GbE readiness and its price</p><p>Chassis: 2U rack</p><p>CPU: 2GHz AMD GX-420MC SoC</p><p>Memory: 4GB DDR3 (max 16GB)</p><p>Storage: 12 x 2.5/3.5in SATA hot-swap drive bays</p><p>Array support: RAID0, 1, 5, 6, 10, hot-spare, JBODs</p><p>Network: 4 x Gigabit Ethernet; 1 x LAN-10G1SR-D 10GbE SFP+ card</p><p>Other ports: 2 x USB 3, 2 x USB 2</p><p>Power: 2 x 250W hot-plug PSUs</p><p>Management: Web browser</p><p>Warranty: Two year limited</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/nas/25816/qnap-ts-1263u-rp-review</link>
                                                                            <description>
                            <![CDATA[ Qnap’s affordable business NAS appliance comes 10GbE-ready out of the box ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">2o6UY7KXydA35LbV7c13Ru</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/QDDVrfBTk53iFJqc5x7ePV-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Thu, 07 Jan 2016 11:58:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/QDDVrfBTk53iFJqc5x7ePV-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                                                                                                                                                                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/QDDVrfBTk53iFJqc5x7ePV-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Prices for 10-Gigabit (10GbE) networking kit are dropping rapidly making it much more affordable for SMBs. This hasn't gone unnoticed by most NAS appliance vendors with Qnap the first to include a 10GbE SFP+ fibre adapter with a NAS, specifically the TS-x63U series.</p><p>Another feature that makes this family stand out is its wholesale adoption of AMD's 2GHz GX-420MC SoC (system on chip). This low-cost embedded x86 processor has four cores running at 2GHz, supports DDR3-1600 memory and has a low TDP of 17.6W.</p><p>The flagship TS-1263U-RP on review is a 2U rack mount system with 12 hot-swap SATA drive bays and dual hot-plug PSUs. You can add only a single external disk shelf, either the eight-disk SATA UX-800U-RP or the 12-disk UX-1200U-RP. Qnap's 10GbE card nestles in the single PCI-Express slot but it doesn't come with a transceiver so you'll need to source one separately - the Avago 850nm models we use cost around 80 ex VAT.</p><h2 id="build-quality-and-deployment">Build quality and deployment</h2><p>The appliance exhibits the classy build quality we've come to expect from Qnap with a solid steel chassis and sturdy metal drive carriers. The lid is easily removed for upgrades and the dual internal cooling fans are very quiet.</p><p>The appliance is supplied with 4GB of DDR3L memory on a single SO-DIMM module. You can fit up to 16GB, but as there are only two memory slots you'll need to dispense with the pre-installed 4GB to max it out.</p><p>Installation is deftly handled by Qnap's cloud portal as we entered the unique cloud key on the label on the lid and followed the quick start wizard which installed the latest QTS firmware. We also popped in a quartet of 4TB WD Red NAS Pro SATA drives and let it create a RAID5 array from them.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="vrZ9WcSjv2jhR8Ab9zGpQT" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/vrZ9WcSjv2jhR8Ab9zGpQT-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/vrZ9WcSjv2jhR8Ab9zGpQT.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>The discovery web portal helps set up storage but make sure you choose thick or thin volumes if you want snapshots</em></p><h2 id="new-storage-features">New storage features</h2><p>Qnap's latest QTS 4.2 firmware has a wealth of data backup features including excellent support for a wide range of cloud storage providers. We successfully backed up folders on the appliance to our Amazon S3 account using the Backup Station app, but Qnap also provides free apps for Amazon Glacier, Microsoft Azure, Google Cloud Storage and many more.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="pYif36Qbb5ofdfDbuJKEZn" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/pYif36Qbb5ofdfDbuJKEZn-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/pYif36Qbb5ofdfDbuJKEZn.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Qnap offers an impressive range of backup apps and supports a multitude of cloud providers</em></p><p>Workstation backup gets a boost as the new Qsync Central Station app allows users to link up with authorised shares on the appliance and synchronise folders with them. The Qsync Windows app is easy to use and for swift file restoration, it provides a direct link to the browser-based File Manager.</p><p>The File Manager also gets a makeover and now supports direct links to cloud storage providers. We linked it with our Dropbox and Google Drive accounts but it also supports remote links to FTP servers and allows folders to be remotely mounted using WebDAV.</p><h2 id="snapshots">Snapshots </h2><p>No self-respecting NAS vendor would now be seen without snapshots and QTS 4.2 supports them for both thick and thin multiple volume types (but not static volumes). You can run them on-demand or schedule them regularly for NAS volumes or iSCSI LUNs. You use the Snapshot Manager app to keep track of them.</p><p>Scheduled smart snapshots can save storage space as the appliance will only take the next snapshot if the data has changed since the last one. The Snapshot Manager makes light work of data recovery. We could view snapshots and use the Revert option for full recovery, or view NAS share contents and restore individual files.</p><p>The new Windows Snapshot Agent can be used to take application-consistent snapshots on iSCSI LUNs. Whenever the appliance wants to take a LUN snapshot, it'll inform the agent first which instructs the host system to flush all data from memory into the LUN.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="zJnSsDAihazKFfP5mSTyjR" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/zJnSsDAihazKFfP5mSTyjR-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/zJnSsDAihazKFfP5mSTyjR.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>Snapshots can be scheduled and Qnap's Windows agent makes sure they're application-consistent</em></p><h2 id="good-management-and-performance">Good management and performance </h2><p>If you have multiple Qnap appliances then you can use the new Q'centre app to centrally manage and monitor them all from a single console. We used custom dashboards to create views of the appliance with graphs of storage pool and volume usage plus appliance hardware utilisation.</p><p>Qnap now offers Q'centre as VMware and Hyper-V virtual appliances. We tested the latter on our Windows Server 2012 R2 Hyper-V host. After importing the free VM, we found it delivered all the same features as the on-appliance version.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="tAE8hjPwg3bQ6Efc5YphNF" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/tAE8hjPwg3bQ6Efc5YphNF-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/tAE8hjPwg3bQ6Efc5YphNF.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p><em>We used the new Q'centre Hyper-V VM to centrally manage the lab's Qnap appliances</em></p><p>For performance testing, we mapped a share over 10GbE to an HP ProLiant DL380 Gen9 rack server running Windows Server 2012 R2. Iometer reported fast raw read and write rates of 9.2Gbits/sec and 5Gbits/sec.</p><p>Real world NAS speeds are good too, with drag and drop copies of a 25GB test file returning read and write speeds of 412MB/sec and 316MB/sec. Backup operations are reasonably fast with our 22.4GB test folder and its 10,500 small files copied to a share at an average of 183MB/sec.</p><h2 id="conclusions-5">Conclusions</h2><p>Pricewise, the TS-1263U-RP is a winner as even though you'll need to source a 10GbE transceiver, it's still excellent value. Synology's 12-bay RS2416RP+ for example, costs nearly the same but has no PCI-Express slots and so can't be upgraded to 10GbE.</p><p>And then there's Qnap's own TS-1280U-RP which comes with a 3.4GHz E3-1200 v3 Xeon, dual PCI-Express slots and a massive expansion potential but costs around 800 more. If you're looking for a 10GbE-ready network storage appliance with a balanced combination of features, performance and price, then the TS-1263U-RP is well worth considering.</p><h2 id="verdict-5">Verdict</h2><p>Limited external expansion but this 12-bay appliance scores highly for storage features, its 10GbE readiness and its price</p><p>Chassis: 2U rack</p><p>CPU: 2GHz AMD GX-420MC SoC</p><p>Memory: 4GB DDR3 (max 16GB)</p><p>Storage: 12 x 2.5/3.5in SATA hot-swap drive bays</p><p>Array support: RAID0, 1, 5, 6, 10, hot-spare, JBODs</p><p>Network: 4 x Gigabit Ethernet; 1 x LAN-10G1SR-D 10GbE SFP+ card</p><p>Other ports: 2 x USB 3, 2 x USB 2</p><p>Power: 2 x 250W hot-plug PSUs</p><p>Management: Web browser</p><p>Warranty: Two year limited</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Dell PowerEdge R430 review ]]></title>
                                                                                                <dc:content><![CDATA[ <p>SMBs looking to maximise their precious rack space will like Dell's new PowerEdge R430. This 1U rack server may only be 24in. deep but it squeezes in a big hardware package that includes dual E5-2600 v3 CPUs, a high memory capacity and plenty of storage options.</p><p>Dell supplied us with the base model kitted out with four LFF drive bays serviced by the embedded PERC S130 RAID controller. Ordered at the point of sale, the R430 can be specified with up to 10 SFF drives and choice selection of PCI-Express RAID cards although, as we found, the process is far from simple.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="pPAX7KXz9E7KX6THA4TSum" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/pPAX7KXz9E7KX6THA4TSum-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/pPAX7KXz9E7KX6THA4TSum.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The R430 exhibits very good internal design and whisper-quiet cooling</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="ybAXoatAXMhCJDXRNucpJa" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/ybAXoatAXMhCJDXRNucpJa-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/ybAXoatAXMhCJDXRNucpJa.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Dell's iDRAC8 controller provides quality server monitoring tools and handy power consumption graphs</p><p><strong>Storage conundrums</strong></p><p>The review system had four 1TB SATA LFF drives with each cold-swap carrier cabled directly to the motherboard's SATA port via a fan-out cable. Entry-level systems start with the embedded PERC S130 controller which supports RAID0, 1, 5 and 10 arrays in software.</p><p>Hot-swap drives are supported by the S130 but you'll need to specify this backplane during the ordering phase. A dedicated expansion slot is also provided and you can choose from the PERC H330, H730 and H730P snap-in cards which all support 12Gbps SAS drives with the latter two offering 1GB or 2GB of Flash backed cache.</p><p>It gets more complicated as the PERC cards have dual 4-port connectors so only support up to eight SAS SFF drives. The 8-bay backplane also has a cut-out to allow a low-profile optical drive to be fitted in the front panel.</p><p>Contrary to some of the images on Dell's web site, the 10-bay model only supports SATA SFF drives where the backplane takes up all available space at the front of the server. It's cabled to all four of the motherboard's embedded SATA ports and cannot be used with the optional PERC RAID cards.</p><h3 class="article-body__section" id="section-internal-design"><span>Internal design</span></h3><p>The short depth of the chassis makes good cooling design imperative and Dell has done a fine job. System cooling is handled by a bank of six cold-swap, dual rotor fans in front of the motherboard while the CPU sockets and attendant DIMM slots are covered by a removable plastic air shroud.</p><p>The smooth air flow path through the chassis means the fans don't have to work hard and we found the R430 extremely quiet. The portion of the lid over the PSU bays gets a bit warm to the touch but as long as you leave some space above the server, this won't be an issue.</p><p>Memory allotment is slightly unusual as the eight front slots are assigned to the first CPU socket while the second socket gets four slots. The main advantage here is you can cut costs by specifying a single CPU and still upgrade to 256GB of memory.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="5CmbYMNQewyGXTXU2TAVRm" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/5CmbYMNQewyGXTXU2TAVRm-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/5CmbYMNQewyGXTXU2TAVRm.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The free OpenManage Essentials app provides network system monitoring and alerting tools</p><h3 class="article-body__section" id="section-deployment-and-power"><span>Deployment and power</span></h3><p>Dell's embedded LifeCycle Controller makes light work of OS deployment as we used it to install Windows Server 2012 R2 with all the right drivers inside 30 minutes. It provides firmware upgrades tools, hardware diagnostics and facilities for configuring remote access and storage.</p><p>Dell's iDRAC8 provides a wealth of remote management features. Along with power controls, we could monitor graphs of power consumption and temperatures but if you want full remote control, you'll must upgrade to the Enterprise version - we've included this in the price shown.</p><p>The server was supplied with dual 1.6GHz E5-2603 Xeons and redundant 550W Platinum PSUs which proved to be easy on the power supply. With the OS in idle we measured a draw of 85W which peaked at only 132W with the CPUs under extreme load from the SiSoft Sandra benchmarking app.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="ydB5A666S43ZCR3Z38MEan" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/ydB5A666S43ZCR3Z38MEan-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/ydB5A666S43ZCR3Z38MEan.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Dell's OMM iOS app allowed us to keep a close eye on the server from our iPad </p><h3 class="article-body__section" id="section-server-management"><span>Server management</span></h3><p>Dell OpenManage Server Administrator provides local and remote web-based management for the server it's installed on. The free OpenManage Essentials goes further by extending centralised management and alerting to all your SNMP and WMI enabled systems.</p><p>We were pleased to see Dell has updated its OpenManage Mobile (OMM) app with improved iOS support. We had problems with it when we reviewed the <a href="https://www.itpro.com/server/23980/dell-poweredge-r730-review" data-original-url="https://www.itpro.com/server/23980/dell-poweredge-r730-review">R730</a> as it refused to talk to the server's iDRAC controller.</p><p>OMM version 1.0.2 resolves these issues but after updating our app, we still couldn't connect to the R430's iDRAC. We discussed this Dell and the workaround was to remove the app and do a fresh install from the App Store.</p><p>With this fixed, we could view the server's vital signs from the OMM app on our iPad which listed details of installed CPUs and memory plus the OS version. Hardware logs are provided for system events and the LifeCycle controller, we could check on the firmware versions for all hardware components and view a server health status page.</p><h3 class="article-body__section" id="section-conclusions"><span>Conclusions</span></h3><p>Dell's confusing web site ordering processes and user manual make choosing the right storage options more complicated than necessary but there's no doubting the R430's credentials. Its compact chassis teams up a powerful specification with good expansion potential and all at a price that will appeal to enterprises and SMBs alike.</p><h2 id="verdict-6">Verdict</h2><p>Once you’ve worked out which storage option you want, the PowerEdge R430 is an ideal choice where server rack space is at a premium. It packs a lot of processing power into its compact chassis and delivers it at a very competitive price</p><p><strong>Chassis</strong>: 1U rack <strong>CPU</strong>: 2 x 1.6GHz Xeon E5-2603 v3 <strong>Memory</strong>: 48GB 1,600MHz DDR4 (max 384GB) <strong>Storage</strong>: 4 x 1TB Dell 7.2K SATA hard disks (max 10) <strong>RAID</strong>: Dell PERC S130 <strong>Array support</strong>: Array support: RAID0, 1, 10, 5 <strong>Network</strong>: 4 x Gigabit <strong>Expansion</strong>: 2 x PCI-Express 3.0 slots <strong>Power</strong>: 2 x 550W Platinum hot-swap PSUs <strong>Management</strong>: Dell iDRAC8 with Enterprise upgrade <strong>Warranty</strong>: 3yrs on-site NBD</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/server/24706/dell-poweredge-r430-review</link>
                                                                            <description>
                            <![CDATA[ Dell’s PowerEdge R430 offers an impressive compute power for space-constrained racks ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">pDZqSDXt5zsP3Z1uuUBzQf</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/uVeGu7FdG7KWvSS2gLn9sc-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Fri, 29 May 2015 07:33:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Servers & Storage]]></category>
                                                    <category><![CDATA[Infrastructure]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/uVeGu7FdG7KWvSS2gLn9sc-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                                                                                                                                                                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/uVeGu7FdG7KWvSS2gLn9sc-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>SMBs looking to maximise their precious rack space will like Dell's new PowerEdge R430. This 1U rack server may only be 24in. deep but it squeezes in a big hardware package that includes dual E5-2600 v3 CPUs, a high memory capacity and plenty of storage options.</p><p>Dell supplied us with the base model kitted out with four LFF drive bays serviced by the embedded PERC S130 RAID controller. Ordered at the point of sale, the R430 can be specified with up to 10 SFF drives and choice selection of PCI-Express RAID cards although, as we found, the process is far from simple.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="pPAX7KXz9E7KX6THA4TSum" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/pPAX7KXz9E7KX6THA4TSum-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/pPAX7KXz9E7KX6THA4TSum.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The R430 exhibits very good internal design and whisper-quiet cooling</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="ybAXoatAXMhCJDXRNucpJa" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/ybAXoatAXMhCJDXRNucpJa-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/ybAXoatAXMhCJDXRNucpJa.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Dell's iDRAC8 controller provides quality server monitoring tools and handy power consumption graphs</p><p><strong>Storage conundrums</strong></p><p>The review system had four 1TB SATA LFF drives with each cold-swap carrier cabled directly to the motherboard's SATA port via a fan-out cable. Entry-level systems start with the embedded PERC S130 controller which supports RAID0, 1, 5 and 10 arrays in software.</p><p>Hot-swap drives are supported by the S130 but you'll need to specify this backplane during the ordering phase. A dedicated expansion slot is also provided and you can choose from the PERC H330, H730 and H730P snap-in cards which all support 12Gbps SAS drives with the latter two offering 1GB or 2GB of Flash backed cache.</p><p>It gets more complicated as the PERC cards have dual 4-port connectors so only support up to eight SAS SFF drives. The 8-bay backplane also has a cut-out to allow a low-profile optical drive to be fitted in the front panel.</p><p>Contrary to some of the images on Dell's web site, the 10-bay model only supports SATA SFF drives where the backplane takes up all available space at the front of the server. It's cabled to all four of the motherboard's embedded SATA ports and cannot be used with the optional PERC RAID cards.</p><h3 class="article-body__section" id="section-internal-design"><span>Internal design</span></h3><p>The short depth of the chassis makes good cooling design imperative and Dell has done a fine job. System cooling is handled by a bank of six cold-swap, dual rotor fans in front of the motherboard while the CPU sockets and attendant DIMM slots are covered by a removable plastic air shroud.</p><p>The smooth air flow path through the chassis means the fans don't have to work hard and we found the R430 extremely quiet. The portion of the lid over the PSU bays gets a bit warm to the touch but as long as you leave some space above the server, this won't be an issue.</p><p>Memory allotment is slightly unusual as the eight front slots are assigned to the first CPU socket while the second socket gets four slots. The main advantage here is you can cut costs by specifying a single CPU and still upgrade to 256GB of memory.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="5CmbYMNQewyGXTXU2TAVRm" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/5CmbYMNQewyGXTXU2TAVRm-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/5CmbYMNQewyGXTXU2TAVRm.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The free OpenManage Essentials app provides network system monitoring and alerting tools</p><h3 class="article-body__section" id="section-deployment-and-power"><span>Deployment and power</span></h3><p>Dell's embedded LifeCycle Controller makes light work of OS deployment as we used it to install Windows Server 2012 R2 with all the right drivers inside 30 minutes. It provides firmware upgrades tools, hardware diagnostics and facilities for configuring remote access and storage.</p><p>Dell's iDRAC8 provides a wealth of remote management features. Along with power controls, we could monitor graphs of power consumption and temperatures but if you want full remote control, you'll must upgrade to the Enterprise version - we've included this in the price shown.</p><p>The server was supplied with dual 1.6GHz E5-2603 Xeons and redundant 550W Platinum PSUs which proved to be easy on the power supply. With the OS in idle we measured a draw of 85W which peaked at only 132W with the CPUs under extreme load from the SiSoft Sandra benchmarking app.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="ydB5A666S43ZCR3Z38MEan" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/ydB5A666S43ZCR3Z38MEan-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/ydB5A666S43ZCR3Z38MEan.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Dell's OMM iOS app allowed us to keep a close eye on the server from our iPad </p><h3 class="article-body__section" id="section-server-management"><span>Server management</span></h3><p>Dell OpenManage Server Administrator provides local and remote web-based management for the server it's installed on. The free OpenManage Essentials goes further by extending centralised management and alerting to all your SNMP and WMI enabled systems.</p><p>We were pleased to see Dell has updated its OpenManage Mobile (OMM) app with improved iOS support. We had problems with it when we reviewed the <a href="https://www.itpro.com/server/23980/dell-poweredge-r730-review" data-original-url="https://www.itpro.com/server/23980/dell-poweredge-r730-review">R730</a> as it refused to talk to the server's iDRAC controller.</p><p>OMM version 1.0.2 resolves these issues but after updating our app, we still couldn't connect to the R430's iDRAC. We discussed this Dell and the workaround was to remove the app and do a fresh install from the App Store.</p><p>With this fixed, we could view the server's vital signs from the OMM app on our iPad which listed details of installed CPUs and memory plus the OS version. Hardware logs are provided for system events and the LifeCycle controller, we could check on the firmware versions for all hardware components and view a server health status page.</p><h3 class="article-body__section" id="section-conclusions"><span>Conclusions</span></h3><p>Dell's confusing web site ordering processes and user manual make choosing the right storage options more complicated than necessary but there's no doubting the R430's credentials. Its compact chassis teams up a powerful specification with good expansion potential and all at a price that will appeal to enterprises and SMBs alike.</p><h2 id="verdict-6">Verdict</h2><p>Once you’ve worked out which storage option you want, the PowerEdge R430 is an ideal choice where server rack space is at a premium. It packs a lot of processing power into its compact chassis and delivers it at a very competitive price</p><p><strong>Chassis</strong>: 1U rack <strong>CPU</strong>: 2 x 1.6GHz Xeon E5-2603 v3 <strong>Memory</strong>: 48GB 1,600MHz DDR4 (max 384GB) <strong>Storage</strong>: 4 x 1TB Dell 7.2K SATA hard disks (max 10) <strong>RAID</strong>: Dell PERC S130 <strong>Array support</strong>: Array support: RAID0, 1, 10, 5 <strong>Network</strong>: 4 x Gigabit <strong>Expansion</strong>: 2 x PCI-Express 3.0 slots <strong>Power</strong>: 2 x 550W Platinum hot-swap PSUs <strong>Management</strong>: Dell iDRAC8 with Enterprise upgrade <strong>Warranty</strong>: 3yrs on-site NBD</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Synology RackStation RS3411xs review ]]></title>
                                                                                                <dc:content><![CDATA[ <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/mzuBGiYzxeeFuaQG3dwpBm-1920-80.jpg" alt="The Synology RS3411xs." /><figcaption>The Synology RS3411xs.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/ajTBb6o6NNwCs7GsXU7jV5-1920-80.jpg" alt="The Synology RS3411xs has ten hot swap SATA2 disk bays." /><figcaption>The Synology RS3411xs has ten hot swap SATA2 disk bays.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/wQLC5TpV2MQNYS7Ed7UEQ5-1920-80.jpg" alt="The RS3411xs has plenty of ports including four Gigabit Ethernet connections and two high-speed Infiniband expansion interfac" /><figcaption>The RS3411xs has plenty of ports including four Gigabit Ethernet connections and two high-speed Infiniband expansion interfac</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/7dYfh4TTFpXtJ4NZnT3dne-1920-80.jpg" alt="The management interface is very well designed and provides easy access to an extensive range of features." /><figcaption>The management interface is very well designed and provides easy access to an extensive range of features.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Ekfxbp63WFeWNcV5zaHeFm-1920-80.jpg" alt="RAID array options are good and we had no problems attaching an RX1211 expansion array using its Infiniband port." /><figcaption>RAID array options are good and we had no problems attaching an RX1211 expansion array using its Infiniband port.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/p4KwSrbVnCzkCUe46j5WV6-1920-80.jpg" alt="Plenty of backup choices are available, including support for Amazon’s S3 cloud service." /><figcaption>Plenty of backup choices are available, including support for Amazon’s S3 cloud service.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/KegFRdqtagoHt4gH7nQyET-1920-80.png" alt="Synology provides plenty of extra features as standard, including the excellent Surveillance Station 5 and the new Photo Stat" /><figcaption>Synology provides plenty of extra features as standard, including the excellent Surveillance Station 5 and the new Photo Stat</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/us6YxzdGMSM5NpPgjmz8RC-1920-80.jpg" alt="Optional packages make the RS3411xs even more versatile and are easily downloaded from the main web interface." /><figcaption>Optional packages make the RS3411xs even more versatile and are easily downloaded from the main web interface.</figcaption></figure></figure><p>Synology was one of the first NAS appliance vendors to take expansion seriously and its latest ten-bay RS3411xs comes equipped with not one, but two high performance Infiniband ports. Linking it up with two twelve-bay RX1211 disk shelves allows raw capacity to be increased to a massive 102TB when using 3TB hard disks.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="wbG3rADo2Kumw874ByTnyV" name="" alt="ITPRO Recommended award" src="https://cdn.mos.cms.futurecdn.net/wbG3rADo2Kumw874ByTnyV-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/wbG3rADo2Kumw874ByTnyV.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The RS3411xs is also one of the first Synology business appliances to make the move from an Atom CPU to Core i3 and its PCI Express expansion slot accepts single and dual-port 10-Gigabit Ethernet (10GbE) cards. It also uses server grade ECC memory and the standard 2GB of RAM can be expanded to 8GB, although you will have to dispense with the pair of 1GB sticks to achieve this.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="wQLC5TpV2MQNYS7Ed7UEQ5" name="" alt="The RS3411xs has plenty of ports including four Gigabit Ethernet connections and two high-speed Infiniband expansion interfac" src="https://cdn.mos.cms.futurecdn.net/wQLC5TpV2MQNYS7Ed7UEQ5-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/wQLC5TpV2MQNYS7Ed7UEQ5.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The RS3411xs has plenty of ports including four Gigabit Ethernet connections and two high-speed Infiniband expansion interfac </span></figcaption></figure><p>The RS3411xs comes equipped with not one, but two high performance Infiniband ports.</p><p>Our review model only came with a single power supply, but Synology also offers the RS3411RPxs which has dual redundant power supplies. However, we really can't see how Synology can justify charging over 600 more for this. Instead, you could get a top quality business UPS such as APC's SmartUPS 1500VA rack mount model and save some cash as well.</p><p>The RS3411xs is well built and its custom motherboard has twelve SATA 2 interfaces cabled directly to the hot-swap hard disk backplane. The Infiniband ports are also surface mounted and the single PCI Express expansion slot sits to the side.</p><p>Installation is a swift affair as an Assistant utility locates the appliance on the network, prepares the hard disks and loads the DSM (Disk Station Manager) software from the CD-ROM or from wherever you've downloaded the latest firmware. Then it's over to the new web interface which we found very well designed and easily customised using drag and drop.</p><p>We also had an RX1211 disk shelf to hand, so we connected this to one of the Infiniband ports and loaded it up with three 1TB SATA disks. A soon as we powered the RX1211 up, it appeared up in the Storage Manager interface ready for use. We decided to create a separate RAID-5 array, but you could expand existing arrays using the extra disks if you wished.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="Ekfxbp63WFeWNcV5zaHeFm" name="" alt="RAID array options are good and we had no problems attaching an RX1211 expansion array using its Infiniband port." src="https://cdn.mos.cms.futurecdn.net/Ekfxbp63WFeWNcV5zaHeFm-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/Ekfxbp63WFeWNcV5zaHeFm.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">RAID array options are good and we had no problems attaching an RX1211 expansion array using its Infiniband port. </span></figcaption></figure><p>RAID array options are good and we had no problems attaching an RX1211 expansion array using its Infiniband port.</p><p>We fitted an Emulex dual-port 10Gbase-SR card in the RS3411xs and connected it to our 10GbE network. We used Dell PowerEdge R515 and Broadberry dual Opteron 4100 rack servers running Windows Server 2008 R2 and equipped with Emulex 10GbE dual-port adapters configured for jumbo frames.</p><p>With a direct fibre connection to the appliance we saw Iometer return an impressive raw read speed of 660MB/s for a mapped share on one server. With the second server attached to the other 10GbE port on the appliance and running Iometer on the same mapped share, we saw a cumulative read throughput of 1129MB/s.</p><p>These raw speeds translate to fast real world performance as well. Copying a 2.52GB video clip over Gigabit Ethernet returned speeds of 103MB/s and running it over 10GbE saw this increase to 280MB/s. FTP performance was even faster with the FileZilla utility reporting upload speeds of 109MB/s over Gigabit Ethernet and 322MB/s over 10GbE. We also ran the same tests on a share mapped from the array on the RX1211 expansion unit. With both servers running Iometer we saw very similar results showing the Infiniband connection wasn't causing a bottleneck.</p><p>TS-559 Pro II.</p><p>There are plenty of other extra features though, such as the Data Replicator 3 software for scheduled workstation backups. The RS3411xs can also run scheduled backups of local data to external USB storage, other Synology appliances or other Rsync compatible servers.</p><p>The Time Backup features automates snapshots of selected folders to another volume on the appliance or external device. A file version history is viewed from the Timeline screen where you can select one and restore it to its original location or a new destination.</p><p>IP SAN features are excellent as the appliance supports iSCSI thin provisioning. This allows targets to be created that only use a small amount of space on the appliance, but appear much larger to the host. As more data is stored on the target, the appliance dynamically allocates more space to it.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="us6YxzdGMSM5NpPgjmz8RC" name="" alt="Optional packages make the RS3411xs even more versatile and are easily downloaded from the main web interface." src="https://cdn.mos.cms.futurecdn.net/us6YxzdGMSM5NpPgjmz8RC-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/us6YxzdGMSM5NpPgjmz8RC.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Optional packages make the RS3411xs even more versatile and are easily downloaded from the main web interface. </span></figcaption></figure><p>Optional packages make the RS3411xs even more versatile and are easily downloaded from the main web interface.</p><p>Extra free packages can be installed the appliance including a mail server, LDAP support, WordPress and even a Syslog server. You have servers for photos, multimedia, audio as well a download manager. Synology's Surveillance Station has some of the best IP camera recording features we've seen in a NAS appliance.</p><p>The RackStation RS3411xs may not have USB3 ports or support for 6Gbit/s SATA3 hard disks but it more than makes up for these omissions with its impressive expansion potential. It also delivers fast performance over Gigabit Ethernet and 10GbE and combines this with an extensive range of quality storage features.</p><p><a href="https://www.itpro.com/637972/synology-rackstation-rs3411xs-review" target="_blank" data-original-url="https://www.itpro.com/637972/synology-rackstation-rs3411xs-review">So what's our verdict?</a></p><h2 id="verdict-7">Verdict</h2><p>The RS3411xs scores highly for its huge storage expansion potential using high-speed Infiniband ports and performance over Gigabit Ethernet and 10GbE networks is very good. USB3 and SATA3 support are lacking and we don’t think the dual supply models are worth the extra cash, but the list of features is still impressive making this appliance well suited to SMBs with big expansion plans.</p><p>Chassis: 2U rack CPU: 3.1GHz Intel Core i3-2100 Memory: 2GB DDR3 ECC expandable to 8GB Storage: 10 x 3.5in.or 2.5in SATA2 hard disk hot-swap bays RAID: Software managed Array support: RAID 0, 1, 5, 6, Hybrid, hot-spare and JBODs Network: 4 x Gigabit Ethernet Other ports: 4 x USB2, 2 x Infiniband expansion Expansion: 1 x PCI Express x8 Gen 2 Management: Web browser Software: Synology Assistant, Download Redirector and Data Replicator 3 Options: RX1211, £773; RS3411RPxs, £2,272; RX1211RP, £1,249 (all ex VAT)</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/637972/synology-rackstation-rs3411xs-review</link>
                                                                            <description>
                            <![CDATA[ Synology's new rack mount NAS appliance makes the move to a Core i3 processor, is 10-Gigabit Ethernet ready and has dual Infiniband ports giving it massive expansion potential. Dave Mitchell takes the RS3411xs for a high-speed test drive on the lab's 10-Gigabit network. Read this review to see how it fared. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">4JgFG2mQcxiNBHowQGo6Nf</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/mzuBGiYzxeeFuaQG3dwpBm-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Mon, 19 Dec 2011 18:22:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/mzuBGiYzxeeFuaQG3dwpBm-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                        <media:description><![CDATA[The Synology RS3411xs has ten hot swap SATA2 disk bays.]]></media:description>                                                            <media:text><![CDATA[The Synology RS3411xs.]]></media:text>
                                <media:title type="plain"><![CDATA[The Synology RS3411xs.]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/mzuBGiYzxeeFuaQG3dwpBm-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/mzuBGiYzxeeFuaQG3dwpBm-1920-80.jpg" alt="The Synology RS3411xs." /><figcaption>The Synology RS3411xs.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/ajTBb6o6NNwCs7GsXU7jV5-1920-80.jpg" alt="The Synology RS3411xs has ten hot swap SATA2 disk bays." /><figcaption>The Synology RS3411xs has ten hot swap SATA2 disk bays.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/wQLC5TpV2MQNYS7Ed7UEQ5-1920-80.jpg" alt="The RS3411xs has plenty of ports including four Gigabit Ethernet connections and two high-speed Infiniband expansion interfac" /><figcaption>The RS3411xs has plenty of ports including four Gigabit Ethernet connections and two high-speed Infiniband expansion interfac</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/7dYfh4TTFpXtJ4NZnT3dne-1920-80.jpg" alt="The management interface is very well designed and provides easy access to an extensive range of features." /><figcaption>The management interface is very well designed and provides easy access to an extensive range of features.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Ekfxbp63WFeWNcV5zaHeFm-1920-80.jpg" alt="RAID array options are good and we had no problems attaching an RX1211 expansion array using its Infiniband port." /><figcaption>RAID array options are good and we had no problems attaching an RX1211 expansion array using its Infiniband port.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/p4KwSrbVnCzkCUe46j5WV6-1920-80.jpg" alt="Plenty of backup choices are available, including support for Amazon’s S3 cloud service." /><figcaption>Plenty of backup choices are available, including support for Amazon’s S3 cloud service.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/KegFRdqtagoHt4gH7nQyET-1920-80.png" alt="Synology provides plenty of extra features as standard, including the excellent Surveillance Station 5 and the new Photo Stat" /><figcaption>Synology provides plenty of extra features as standard, including the excellent Surveillance Station 5 and the new Photo Stat</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/us6YxzdGMSM5NpPgjmz8RC-1920-80.jpg" alt="Optional packages make the RS3411xs even more versatile and are easily downloaded from the main web interface." /><figcaption>Optional packages make the RS3411xs even more versatile and are easily downloaded from the main web interface.</figcaption></figure></figure><p>Synology was one of the first NAS appliance vendors to take expansion seriously and its latest ten-bay RS3411xs comes equipped with not one, but two high performance Infiniband ports. Linking it up with two twelve-bay RX1211 disk shelves allows raw capacity to be increased to a massive 102TB when using 3TB hard disks.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="wbG3rADo2Kumw874ByTnyV" name="" alt="ITPRO Recommended award" src="https://cdn.mos.cms.futurecdn.net/wbG3rADo2Kumw874ByTnyV-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/wbG3rADo2Kumw874ByTnyV.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The RS3411xs is also one of the first Synology business appliances to make the move from an Atom CPU to Core i3 and its PCI Express expansion slot accepts single and dual-port 10-Gigabit Ethernet (10GbE) cards. It also uses server grade ECC memory and the standard 2GB of RAM can be expanded to 8GB, although you will have to dispense with the pair of 1GB sticks to achieve this.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="wQLC5TpV2MQNYS7Ed7UEQ5" name="" alt="The RS3411xs has plenty of ports including four Gigabit Ethernet connections and two high-speed Infiniband expansion interfac" src="https://cdn.mos.cms.futurecdn.net/wQLC5TpV2MQNYS7Ed7UEQ5-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/wQLC5TpV2MQNYS7Ed7UEQ5.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The RS3411xs has plenty of ports including four Gigabit Ethernet connections and two high-speed Infiniband expansion interfac </span></figcaption></figure><p>The RS3411xs comes equipped with not one, but two high performance Infiniband ports.</p><p>Our review model only came with a single power supply, but Synology also offers the RS3411RPxs which has dual redundant power supplies. However, we really can't see how Synology can justify charging over 600 more for this. Instead, you could get a top quality business UPS such as APC's SmartUPS 1500VA rack mount model and save some cash as well.</p><p>The RS3411xs is well built and its custom motherboard has twelve SATA 2 interfaces cabled directly to the hot-swap hard disk backplane. The Infiniband ports are also surface mounted and the single PCI Express expansion slot sits to the side.</p><p>Installation is a swift affair as an Assistant utility locates the appliance on the network, prepares the hard disks and loads the DSM (Disk Station Manager) software from the CD-ROM or from wherever you've downloaded the latest firmware. Then it's over to the new web interface which we found very well designed and easily customised using drag and drop.</p><p>We also had an RX1211 disk shelf to hand, so we connected this to one of the Infiniband ports and loaded it up with three 1TB SATA disks. A soon as we powered the RX1211 up, it appeared up in the Storage Manager interface ready for use. We decided to create a separate RAID-5 array, but you could expand existing arrays using the extra disks if you wished.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="Ekfxbp63WFeWNcV5zaHeFm" name="" alt="RAID array options are good and we had no problems attaching an RX1211 expansion array using its Infiniband port." src="https://cdn.mos.cms.futurecdn.net/Ekfxbp63WFeWNcV5zaHeFm-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/Ekfxbp63WFeWNcV5zaHeFm.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">RAID array options are good and we had no problems attaching an RX1211 expansion array using its Infiniband port. </span></figcaption></figure><p>RAID array options are good and we had no problems attaching an RX1211 expansion array using its Infiniband port.</p><p>We fitted an Emulex dual-port 10Gbase-SR card in the RS3411xs and connected it to our 10GbE network. We used Dell PowerEdge R515 and Broadberry dual Opteron 4100 rack servers running Windows Server 2008 R2 and equipped with Emulex 10GbE dual-port adapters configured for jumbo frames.</p><p>With a direct fibre connection to the appliance we saw Iometer return an impressive raw read speed of 660MB/s for a mapped share on one server. With the second server attached to the other 10GbE port on the appliance and running Iometer on the same mapped share, we saw a cumulative read throughput of 1129MB/s.</p><p>These raw speeds translate to fast real world performance as well. Copying a 2.52GB video clip over Gigabit Ethernet returned speeds of 103MB/s and running it over 10GbE saw this increase to 280MB/s. FTP performance was even faster with the FileZilla utility reporting upload speeds of 109MB/s over Gigabit Ethernet and 322MB/s over 10GbE. We also ran the same tests on a share mapped from the array on the RX1211 expansion unit. With both servers running Iometer we saw very similar results showing the Infiniband connection wasn't causing a bottleneck.</p><p>TS-559 Pro II.</p><p>There are plenty of other extra features though, such as the Data Replicator 3 software for scheduled workstation backups. The RS3411xs can also run scheduled backups of local data to external USB storage, other Synology appliances or other Rsync compatible servers.</p><p>The Time Backup features automates snapshots of selected folders to another volume on the appliance or external device. A file version history is viewed from the Timeline screen where you can select one and restore it to its original location or a new destination.</p><p>IP SAN features are excellent as the appliance supports iSCSI thin provisioning. This allows targets to be created that only use a small amount of space on the appliance, but appear much larger to the host. As more data is stored on the target, the appliance dynamically allocates more space to it.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="us6YxzdGMSM5NpPgjmz8RC" name="" alt="Optional packages make the RS3411xs even more versatile and are easily downloaded from the main web interface." src="https://cdn.mos.cms.futurecdn.net/us6YxzdGMSM5NpPgjmz8RC-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/us6YxzdGMSM5NpPgjmz8RC.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Optional packages make the RS3411xs even more versatile and are easily downloaded from the main web interface. </span></figcaption></figure><p>Optional packages make the RS3411xs even more versatile and are easily downloaded from the main web interface.</p><p>Extra free packages can be installed the appliance including a mail server, LDAP support, WordPress and even a Syslog server. You have servers for photos, multimedia, audio as well a download manager. Synology's Surveillance Station has some of the best IP camera recording features we've seen in a NAS appliance.</p><p>The RackStation RS3411xs may not have USB3 ports or support for 6Gbit/s SATA3 hard disks but it more than makes up for these omissions with its impressive expansion potential. It also delivers fast performance over Gigabit Ethernet and 10GbE and combines this with an extensive range of quality storage features.</p><p><a href="https://www.itpro.com/637972/synology-rackstation-rs3411xs-review" target="_blank" data-original-url="https://www.itpro.com/637972/synology-rackstation-rs3411xs-review">So what's our verdict?</a></p><h2 id="verdict-7">Verdict</h2><p>The RS3411xs scores highly for its huge storage expansion potential using high-speed Infiniband ports and performance over Gigabit Ethernet and 10GbE networks is very good. USB3 and SATA3 support are lacking and we don’t think the dual supply models are worth the extra cash, but the list of features is still impressive making this appliance well suited to SMBs with big expansion plans.</p><p>Chassis: 2U rack CPU: 3.1GHz Intel Core i3-2100 Memory: 2GB DDR3 ECC expandable to 8GB Storage: 10 x 3.5in.or 2.5in SATA2 hard disk hot-swap bays RAID: Software managed Array support: RAID 0, 1, 5, 6, Hybrid, hot-spare and JBODs Network: 4 x Gigabit Ethernet Other ports: 4 x USB2, 2 x Infiniband expansion Expansion: 1 x PCI Express x8 Gen 2 Management: Web browser Software: Synology Assistant, Download Redirector and Data Replicator 3 Options: RX1211, £773; RS3411RPxs, £2,272; RX1211RP, £1,249 (all ex VAT)</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ QNap TS-879 Pro TurboNAS review ]]></title>
                                                                                                <dc:content><![CDATA[ <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/Bm2Y4YivniaT2xyx4SRtUV-1920-80.jpg" alt="The QNap TS-879 Pro" /><figcaption>The QNap TS-879 Pro</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/KngMYySVNiq4u8j5mnj5rY-1920-80.jpg" alt="The rear of the QNap TS-879 Pro" /><figcaption>The rear of the QNap TS-879 Pro</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/UowN4YaFyZhXbbKXKBdfD6-1920-80.jpg" alt="The web management interface is well designed and provides easy access to the impressive range of features." /><figcaption>The web management interface is well designed and provides easy access to the impressive range of features.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Y9PjD4bt2N6g9LbyFbaeM-1920-80.jpg" alt="The appliance can be upgraded easily to 10-Gigabit and we had no problems using an Emulex dual-port 10GBase-SR card." /><figcaption>The appliance can be upgraded easily to 10-Gigabit and we had no problems using an Emulex dual-port 10GBase-SR card.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Ub9njc8raMgG6LvKabkfSa-1920-80.jpg" alt="QNap’s MyCloudNAS provide a useful range of services to remote users over the Internet." /><figcaption>QNap’s MyCloudNAS provide a useful range of services to remote users over the Internet.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/yJ2tGxMqGNeSNjN9Vn9N2R-1920-80.jpg" alt="Along with iSCSI thin provisioning, QNap has added a useful facility for backing up selected LUNs to a remote location." /><figcaption>Along with iSCSI thin provisioning, QNap has added a useful facility for backing up selected LUNs to a remote location.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/gsLyjhCtHMvG8ZLpPt9SoP-1920-80.jpg" alt="The latest firmware from QNap also adds a handy Syslog server function and anti-virus scanning and quarantining." /><figcaption>The latest firmware from QNap also adds a handy Syslog server function and anti-virus scanning and quarantining.</figcaption></figure></figure><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="wbG3rADo2Kumw874ByTnyV" name="" alt="ITPRO Recommended award" src="https://cdn.mos.cms.futurecdn.net/wbG3rADo2Kumw874ByTnyV-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/wbG3rADo2Kumw874ByTnyV.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Intel's Atom appears to have had its day in the business NAS appliance market as many manufacturers are now moving over to Core i3 processors for their SMB products. QNap's new TS-879 Pro TurboNAS is its first desktop appliance to use this processor and combines it with a remarkable range of new features.</p><p>It supports the latest 6Gbit/s SATA3 hard disks, has a pair of fast USB3 ports and is 10-Gigabit Ethernet ready. QNap supplied our review system with an optional Emulex dual-port 10GBase-SR adapter so we could plug it into the Lab's 10-Gigabit Ethernet (10GbE) network and see just how fast it can go.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="KngMYySVNiq4u8j5mnj5rY" name="" alt="The rear of the QNap TS-879 Pro" src="https://cdn.mos.cms.futurecdn.net/KngMYySVNiq4u8j5mnj5rY-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/KngMYySVNiq4u8j5mnj5rY.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The rear of the QNap TS-879 Pro </span></figcaption></figure><p>Along with a pair of quiet running fans, the TS-879 Pro has a wealth of ports and a PCI-E expansion slot for a 10-Gigabit adapter.</p><p>The appliance is well built. The eight hot-swap disk bays have small locking buttons to stop the disks being accidentally popped out. The chassis uses two large fans at the rear for cooling and we found the appliance ran very quietly during testing, making it well suited to small offices.</p><p>One USB3 port is located at the front and is linked to a Copy button above it. Pressing the button copies the entire contents of an inserted drive to a predefined folder on the appliance.</p><p>At the rear you have a plethora of ports with another USB3, four USB2, two Gigabit Ethernet and two eSATA ports. A PCI Express expansion slot is located at the top which can be filled with either dual-port Gigabit or 10-GbE cards from QNap. Fitting the supplied Emulex 10GbE card was easy enough, as we just needed to remove the casing to access the slot.</p><p>Installation is swift as QNap's Finder utility locates the appliance on the network and offers quick access to the newly designed QNap Storage Manager (QSM) 3.5 web interface. This provides a side menu listing all features and selecting one shows all its details in the main window making it very easy to use.</p><p>The 10GbE card was identified without any problems and both ports appeared in the Network section ready for configuration. As with the Gigabit Ethernet ports, they support Jumbo frames and can be teamed together for fault tolerant or load balanced links.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="Y9PjD4bt2N6g9LbyFbaeM" name="" alt="The appliance can be upgraded easily to 10-Gigabit and we had no problems using an Emulex dual-port 10GBase-SR card." src="https://cdn.mos.cms.futurecdn.net/Y9PjD4bt2N6g9LbyFbaeM-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/Y9PjD4bt2N6g9LbyFbaeM.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The appliance can be upgraded easily to 10-Gigabit and we had no problems using an Emulex dual-port 10GBase-SR card. </span></figcaption></figure><p>The appliance can be upgraded easily to 10-Gigabit and we had no problems using an Emulex dual-port 10GBase-SR card.</p><p>We dived straight into performance testing over Gigabit Ethernet using a Broadberry dual X5560 rack server running Windows Server 2008 R2. Iometer reported a fast read speed of 110MB/s for a mapped Windows share whilst drag and drop copies of a 2.52GB video clip returned read and write speeds of 104MB/s. Using the FileZilla client to FTP the video clip also returned the same speeds.</p><p>For 10GbE testing we used a dual Opteron 4170 HE Dell PowerEdge R515 server fitted with an Emulex dual-port 10GBase-SR card and all configured for Jumbo frames. With a direct fibre connection to the appliance we saw Iometer return a storming raw read speed of 586MB/s for a mapped share.</p><p>This translated to a big boost for drag and drop copies with the same tests now returning average read and write speeds of over 300MB/s. Most businesses will connect the appliance to a switch over 10GbE and use it to link multiple servers over Gigabit Ethernet and the TS-879 Pro looks quite capable of handling these demands.</p><p>IP SAN performance is also excellent with a 100GB target delivering a raw read speed of 111MB/s over Gigabit Ethernet with the file copies returning similar rates. Moving over to a 10GbE connection saw Iometer report a read speed of 627MB/s for the same target with copy speeds of up to 575MB/s.</p><p>the TS-559 Pro II.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="Ub9njc8raMgG6LvKabkfSa" name="" alt="QNap’s MyCloudNAS provide a useful range of services to remote users over the Internet." src="https://cdn.mos.cms.futurecdn.net/Ub9njc8raMgG6LvKabkfSa-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/Ub9njc8raMgG6LvKabkfSa.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">QNap’s MyCloudNAS provide a useful range of services to remote users over the Internet. </span></figcaption></figure><p>QNap's MyCloudNAS provide a useful range of services to remote users over the Internet.</p><p>There's also QNap's NetBak Replicator software for running scheduled backups of Windows workstations and servers. The appliance also supports Rsync services for remote replication. As expected, extra features are in abundance and, along with MySQL, the appliance can host your own web sites and use the Surveillance Station to monitor and record footage from up to four IP cameras.</p><p>New features are RADIUS and TFTP servers, onboard anti-virus scanning and iSCSI LUN backup to a remote storage location over CIFS or NFS. It even has a built in Syslog server where it can receive and store log messages from Syslog senders.</p><p>Prices for this appliance vary considerably so we advise shopping around for the best deal. After some searching we found a diskless model at LambdaTek for 1,396 ex VAT which includes a three-year warranty.</p><p>We were impressed with the TS-879 Pro on a number of counts and it throws down a very big gauntlet to the competition. Performance over Gigabit and 10-Gigabit networks is impeccable and it provides a remarkable range of storage features which includes some very useful IP SAN options and cloud services for remote workers.</p><p><a href="https://www.itpro.com/637702/qnap-ts-879-pro-turbonas-review" target="_blank" data-original-url="https://www.itpro.com/637702/qnap-ts-879-pro-turbonas-review">So what's our verdict?</a></p><h2 id="verdict-8">Verdict</h2><p>The TS-879 Pro delivers a range of storage features that the competition will be hard pressed to match let alone beat. These include free cloud services and some quality IP SAN capabilities, plus it’s impressively fast over both Gigabit and 10-Gigabit Ethernet networks. The only thing missing is the ability to add expansion units, but its maximum capacity of 24TB using the latest SATA3 hard disks should be quite sufficient for most SMBs.</p><p>Chassis: Desktop CPU: 3.3GHz Intel Core i3-2120 Memory: 2GB DDR3, 512MB DOM Storage: 8 x hot-swap 3.5in/2.5in SATA 2/3 disks bays Array support: RAID 0, 1, 5, 6, 5 + hotspare Network: 2 x Gigabit Ethernet Other ports: 2 x USB3, 4 x USB2, 2 x eSATA Expansion: PCI Express slot Management: Web browser Software: QNap Finder, NetBak Replicator and Qget software</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/637702/qnap-ts-879-pro-turbonas-review</link>
                                                                            <description>
                            <![CDATA[ QNap's latest desktop NAS box is its first to use a Core i3 processor and along with SATA3 disk support, it's 10-Gigabit Ethernet ready and packed with storage features. Read this review to see why Dave Mitchell thinks this is the desktop appliance to beat. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">vKBiVGDLsvmMqQKDbYP4A</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/Bm2Y4YivniaT2xyx4SRtUV-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Mon, 05 Dec 2011 17:08:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/Bm2Y4YivniaT2xyx4SRtUV-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                        <media:description><![CDATA[The rear of the QNap TS-879 Pro]]></media:description>                                                            <media:text><![CDATA[The QNap TS-879 Pro]]></media:text>
                                <media:title type="plain"><![CDATA[The QNap TS-879 Pro]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/Bm2Y4YivniaT2xyx4SRtUV-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/Bm2Y4YivniaT2xyx4SRtUV-1920-80.jpg" alt="The QNap TS-879 Pro" /><figcaption>The QNap TS-879 Pro</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/KngMYySVNiq4u8j5mnj5rY-1920-80.jpg" alt="The rear of the QNap TS-879 Pro" /><figcaption>The rear of the QNap TS-879 Pro</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/UowN4YaFyZhXbbKXKBdfD6-1920-80.jpg" alt="The web management interface is well designed and provides easy access to the impressive range of features." /><figcaption>The web management interface is well designed and provides easy access to the impressive range of features.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Y9PjD4bt2N6g9LbyFbaeM-1920-80.jpg" alt="The appliance can be upgraded easily to 10-Gigabit and we had no problems using an Emulex dual-port 10GBase-SR card." /><figcaption>The appliance can be upgraded easily to 10-Gigabit and we had no problems using an Emulex dual-port 10GBase-SR card.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Ub9njc8raMgG6LvKabkfSa-1920-80.jpg" alt="QNap’s MyCloudNAS provide a useful range of services to remote users over the Internet." /><figcaption>QNap’s MyCloudNAS provide a useful range of services to remote users over the Internet.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/yJ2tGxMqGNeSNjN9Vn9N2R-1920-80.jpg" alt="Along with iSCSI thin provisioning, QNap has added a useful facility for backing up selected LUNs to a remote location." /><figcaption>Along with iSCSI thin provisioning, QNap has added a useful facility for backing up selected LUNs to a remote location.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/gsLyjhCtHMvG8ZLpPt9SoP-1920-80.jpg" alt="The latest firmware from QNap also adds a handy Syslog server function and anti-virus scanning and quarantining." /><figcaption>The latest firmware from QNap also adds a handy Syslog server function and anti-virus scanning and quarantining.</figcaption></figure></figure><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="wbG3rADo2Kumw874ByTnyV" name="" alt="ITPRO Recommended award" src="https://cdn.mos.cms.futurecdn.net/wbG3rADo2Kumw874ByTnyV-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/wbG3rADo2Kumw874ByTnyV.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Intel's Atom appears to have had its day in the business NAS appliance market as many manufacturers are now moving over to Core i3 processors for their SMB products. QNap's new TS-879 Pro TurboNAS is its first desktop appliance to use this processor and combines it with a remarkable range of new features.</p><p>It supports the latest 6Gbit/s SATA3 hard disks, has a pair of fast USB3 ports and is 10-Gigabit Ethernet ready. QNap supplied our review system with an optional Emulex dual-port 10GBase-SR adapter so we could plug it into the Lab's 10-Gigabit Ethernet (10GbE) network and see just how fast it can go.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="KngMYySVNiq4u8j5mnj5rY" name="" alt="The rear of the QNap TS-879 Pro" src="https://cdn.mos.cms.futurecdn.net/KngMYySVNiq4u8j5mnj5rY-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/KngMYySVNiq4u8j5mnj5rY.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The rear of the QNap TS-879 Pro </span></figcaption></figure><p>Along with a pair of quiet running fans, the TS-879 Pro has a wealth of ports and a PCI-E expansion slot for a 10-Gigabit adapter.</p><p>The appliance is well built. The eight hot-swap disk bays have small locking buttons to stop the disks being accidentally popped out. The chassis uses two large fans at the rear for cooling and we found the appliance ran very quietly during testing, making it well suited to small offices.</p><p>One USB3 port is located at the front and is linked to a Copy button above it. Pressing the button copies the entire contents of an inserted drive to a predefined folder on the appliance.</p><p>At the rear you have a plethora of ports with another USB3, four USB2, two Gigabit Ethernet and two eSATA ports. A PCI Express expansion slot is located at the top which can be filled with either dual-port Gigabit or 10-GbE cards from QNap. Fitting the supplied Emulex 10GbE card was easy enough, as we just needed to remove the casing to access the slot.</p><p>Installation is swift as QNap's Finder utility locates the appliance on the network and offers quick access to the newly designed QNap Storage Manager (QSM) 3.5 web interface. This provides a side menu listing all features and selecting one shows all its details in the main window making it very easy to use.</p><p>The 10GbE card was identified without any problems and both ports appeared in the Network section ready for configuration. As with the Gigabit Ethernet ports, they support Jumbo frames and can be teamed together for fault tolerant or load balanced links.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="Y9PjD4bt2N6g9LbyFbaeM" name="" alt="The appliance can be upgraded easily to 10-Gigabit and we had no problems using an Emulex dual-port 10GBase-SR card." src="https://cdn.mos.cms.futurecdn.net/Y9PjD4bt2N6g9LbyFbaeM-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/Y9PjD4bt2N6g9LbyFbaeM.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The appliance can be upgraded easily to 10-Gigabit and we had no problems using an Emulex dual-port 10GBase-SR card. </span></figcaption></figure><p>The appliance can be upgraded easily to 10-Gigabit and we had no problems using an Emulex dual-port 10GBase-SR card.</p><p>We dived straight into performance testing over Gigabit Ethernet using a Broadberry dual X5560 rack server running Windows Server 2008 R2. Iometer reported a fast read speed of 110MB/s for a mapped Windows share whilst drag and drop copies of a 2.52GB video clip returned read and write speeds of 104MB/s. Using the FileZilla client to FTP the video clip also returned the same speeds.</p><p>For 10GbE testing we used a dual Opteron 4170 HE Dell PowerEdge R515 server fitted with an Emulex dual-port 10GBase-SR card and all configured for Jumbo frames. With a direct fibre connection to the appliance we saw Iometer return a storming raw read speed of 586MB/s for a mapped share.</p><p>This translated to a big boost for drag and drop copies with the same tests now returning average read and write speeds of over 300MB/s. Most businesses will connect the appliance to a switch over 10GbE and use it to link multiple servers over Gigabit Ethernet and the TS-879 Pro looks quite capable of handling these demands.</p><p>IP SAN performance is also excellent with a 100GB target delivering a raw read speed of 111MB/s over Gigabit Ethernet with the file copies returning similar rates. Moving over to a 10GbE connection saw Iometer report a read speed of 627MB/s for the same target with copy speeds of up to 575MB/s.</p><p>the TS-559 Pro II.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="Ub9njc8raMgG6LvKabkfSa" name="" alt="QNap’s MyCloudNAS provide a useful range of services to remote users over the Internet." src="https://cdn.mos.cms.futurecdn.net/Ub9njc8raMgG6LvKabkfSa-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/Ub9njc8raMgG6LvKabkfSa.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">QNap’s MyCloudNAS provide a useful range of services to remote users over the Internet. </span></figcaption></figure><p>QNap's MyCloudNAS provide a useful range of services to remote users over the Internet.</p><p>There's also QNap's NetBak Replicator software for running scheduled backups of Windows workstations and servers. The appliance also supports Rsync services for remote replication. As expected, extra features are in abundance and, along with MySQL, the appliance can host your own web sites and use the Surveillance Station to monitor and record footage from up to four IP cameras.</p><p>New features are RADIUS and TFTP servers, onboard anti-virus scanning and iSCSI LUN backup to a remote storage location over CIFS or NFS. It even has a built in Syslog server where it can receive and store log messages from Syslog senders.</p><p>Prices for this appliance vary considerably so we advise shopping around for the best deal. After some searching we found a diskless model at LambdaTek for 1,396 ex VAT which includes a three-year warranty.</p><p>We were impressed with the TS-879 Pro on a number of counts and it throws down a very big gauntlet to the competition. Performance over Gigabit and 10-Gigabit networks is impeccable and it provides a remarkable range of storage features which includes some very useful IP SAN options and cloud services for remote workers.</p><p><a href="https://www.itpro.com/637702/qnap-ts-879-pro-turbonas-review" target="_blank" data-original-url="https://www.itpro.com/637702/qnap-ts-879-pro-turbonas-review">So what's our verdict?</a></p><h2 id="verdict-8">Verdict</h2><p>The TS-879 Pro delivers a range of storage features that the competition will be hard pressed to match let alone beat. These include free cloud services and some quality IP SAN capabilities, plus it’s impressively fast over both Gigabit and 10-Gigabit Ethernet networks. The only thing missing is the ability to add expansion units, but its maximum capacity of 24TB using the latest SATA3 hard disks should be quite sufficient for most SMBs.</p><p>Chassis: Desktop CPU: 3.3GHz Intel Core i3-2120 Memory: 2GB DDR3, 512MB DOM Storage: 8 x hot-swap 3.5in/2.5in SATA 2/3 disks bays Array support: RAID 0, 1, 5, 6, 5 + hotspare Network: 2 x Gigabit Ethernet Other ports: 2 x USB3, 4 x USB2, 2 x eSATA Expansion: PCI Express slot Management: Web browser Software: QNap Finder, NetBak Replicator and Qget software</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Enhance Technology UltraStor RS16 IP-4 review ]]></title>
                                                                                                <dc:content><![CDATA[ <p>Enhance Technology has been in the network storage market for many years and its UltraStor appliances are aimed at SMBs looking for a low cost IP SAN solution. In this exclusive review we look at its RS16 IP-4 which combines a tempting price tag with a high capacity and impressive performance claims.</p><p>For this review we were supplied with a diskless appliance, but Enhance offers a system with a full house of 16 1TB Enterprise SATA 2 disks for 5,280. An 8TB version costs around 4,478 or you can choose one with 16 2TB SATA disks for 7,274. Enhance also supports 3TB Near-Line SAS disks.</p><p>The 3U chassis is well built with sixteen solid metal hot-swap carriers mounted vertically across the front and each incorporating disk status and activity LEDs. Power redundancy is handled by two 460W hot plug supplies at the rear and above these are hot-plug cooling fan modules as well.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="EhFeiaNMpGHVijyQLRMhVn" name="" alt="The rear of the Enhance UltraStor RS16 IP-4" src="https://cdn.mos.cms.futurecdn.net/EhFeiaNMpGHVijyQLRMhVn-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/EhFeiaNMpGHVijyQLRMhVn.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The appliance's single RAID controller has four Gigabit Ethernet ports, dual power supplies and fans plus a mini-SAS expansion port.</p><p>The RAID controller is mounted in a metal sled which can be released and removed from the back once the appliance is shut down. It's equipped with a 1.2GHz Intel IOP 81342 dual core processor and 2GB of DDR2 cache memory, but it only supports 3Gbit/s SAS/SATA disks.</p><p>It's here that fault tolerant features end as the appliance doesn't support dual RAID controllers. There's no battery backup pack to protect the cache contents either, so we recommend a UPS which can be monitored using one of the serial ports at the back.</p><p>Expansion is good as the controller has an SFF8470 mini-SAS port which is used to daisy-chain up to four of Enhance's RS16 JS 3U disk shelves. This allows the array to be expanded to a total of 80 hard disks, although with only one port available you can't create redundant physical paths across the disk shelves.</p><p>Installation is simple enough as the appliance's tidy web interface provides a quick start option. This offers to set up all the disks and will suggest the optimal RAID array based on the disks installed. For testing, we loaded up four 1TB WD SATA hard disks, took manual control and created a RAID 5 array.</p><p>RAID arrays are called volume groups (VGs) and the appliance supports up to eight of them. Within the VGs you create user data volumes (UDVs) which are your iSCSI virtual drives and each VG can contain multiple UDVs of different capacities.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="oeeQndyVwMFJcdbW6dGRt9" name="" alt="User data volumes (UDVs) are created within VGs and presented as iSCSI targets." src="https://cdn.mos.cms.futurecdn.net/oeeQndyVwMFJcdbW6dGRt9-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/oeeQndyVwMFJcdbW6dGRt9.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>User data volumes (UDVs) are created within VGs and presented as iSCSI targets.</p><p>For access control you select a UDV and either make it available to all hosts using a wildcard or enter the full IQN of the host initiators allowed to access it. During this phase you choose a LUN number and can also decide on read-only or read/write privileges.</p><p>The controller advertises a single iSCSI node name with all accessible virtual volumes appearing under this as LUNs. This isn't a major issue, but as CHAP authentication is applied at the node level this will apply to all hosts and LUNs.</p><p>Snapshots can be taken of a UDV for point-in-time backups and these can be run manually or on scheduled hourly, daily, weekly and monthly intervals. Snapshots can then be used to rollback their associated UDV in the event of a problem.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="cY8eG7xKWk9b2At3voJ8BF" name="" alt="Snapshots can be presented to selected hosts for data restoration and will appear as read-only optical drives." src="https://cdn.mos.cms.futurecdn.net/cY8eG7xKWk9b2At3voJ8BF-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/cY8eG7xKWk9b2At3voJ8BF.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Snapshots can be presented to selected hosts for data restoration and will appear as read-only optical drives.</p><p>You can migrate VGs to different RAID array types and expand their capacity into extra physical drives. UDVs can also be expanded into spare space within their parent VG simply by clicking on a button in their size column and entering a new capacity.</p><p>For performance testing, we created four UDVs and used a wildcard entry to allow access for all hosts. We used four test servers running Windows Server 2008 R2 and equipped with either dual Xeon 5500 or Opteron 4100 processors.</p><p>Each server was logged into a different portal IP address on the appliance giving each one a dedicated Gigabit connection. The Iometer utility was used to test raw read and write performance and each server was run on a different UDV to avoid any contention.</p><p>With one server we saw Iometer report read and write speeds of 112MB/s and 110MB/s. Adding a second server to the mix saw overall throughput increase to 223MB/s and 220MB/s.</p><p>With a third server running Iometer we saw throughout rise to 336MB/s and 331MB/s. Finally, with all four servers in the mix we recorded cumulative raw read and write throughputs of 446MB/s and 421MB/s showing no contention for resources on the controller was occurring.</p><p>The RS16 IP-4 delivers impressive performance under load and costs a lot less than products such as <a href="https://www.itpro.com/633796/hp-storageworks-p2000-g3-review" target="_blank" data-original-url="https://www.itpro.com/633796/hp-storageworks-p2000-g3-review">HP's StorageWorks P2000 G3</a>. If you don't need or want dual redundant RAID controllers then this IP SAN appliance is worth considering.</p><p><a href="https://www.itpro.com/637678/enhance-technology-ultrastor-rs16-ip-4-review" target="_blank" data-original-url="https://www.itpro.com/637678/enhance-technology-ultrastor-rs16-ip-4-review">So what's our verdict?</a></p><h2 id="verdict-9">Verdict</h2><p>The UltraStor RS16 IP-4 provides a reasonable set of IP SAN storage features and we found it very easy to deploy. At this low price you won’t get dual controllers and redundant paths to expansion shelves, but it's still worth considering if you're looking for an IP SAN solution at a low price and willing to sacrifice features and redundancy to get it.</p><p>Chassis: 3U rack Storage: 16 x 3Gbit/s SAS/SATA hot-swap bays Hard disks: 16 x 1TB SATA2 disks Power: 2 x 460W hot-swap power supplies Cooling: 2 x hot-swap fan modules RAID controller with the following: CPU: 1.2GHz Intel IOP 81342 Memory: 2GB DDR2 cache Array support: RAID0, 1, 3, 5, 6, 10, 30, 50, 60, JBOD Network: 4 x Gigabit Ethernet data ports, 10/100 management port Expansion: SFF8470 Mini-SAS port Management: Web browser, CLI</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/637678/enhance-technology-ultrastor-rs16-ip-4-review</link>
                                                                            <description>
                            <![CDATA[ Enhance Technology's latest IP SAN appliance has value, expansion potential and performance high on its agenda. In this exclusive review Dave Mitchell finds out whether these make up for its basic hardware redundancy. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">greHmZkcWEY4wr79vux3bW</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/SLiZ6P7J4dgrHBPLdXCc6i-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Fri, 02 Dec 2011 15:08:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/SLiZ6P7J4dgrHBPLdXCc6i-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[The Enhance UltraStor RS16 IP-4]]></media:description>                                                            <media:text><![CDATA[The Enhance UltraStor RS16 IP-4]]></media:text>
                                <media:title type="plain"><![CDATA[The Enhance UltraStor RS16 IP-4]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/SLiZ6P7J4dgrHBPLdXCc6i-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Enhance Technology has been in the network storage market for many years and its UltraStor appliances are aimed at SMBs looking for a low cost IP SAN solution. In this exclusive review we look at its RS16 IP-4 which combines a tempting price tag with a high capacity and impressive performance claims.</p><p>For this review we were supplied with a diskless appliance, but Enhance offers a system with a full house of 16 1TB Enterprise SATA 2 disks for 5,280. An 8TB version costs around 4,478 or you can choose one with 16 2TB SATA disks for 7,274. Enhance also supports 3TB Near-Line SAS disks.</p><p>The 3U chassis is well built with sixteen solid metal hot-swap carriers mounted vertically across the front and each incorporating disk status and activity LEDs. Power redundancy is handled by two 460W hot plug supplies at the rear and above these are hot-plug cooling fan modules as well.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="EhFeiaNMpGHVijyQLRMhVn" name="" alt="The rear of the Enhance UltraStor RS16 IP-4" src="https://cdn.mos.cms.futurecdn.net/EhFeiaNMpGHVijyQLRMhVn-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/EhFeiaNMpGHVijyQLRMhVn.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The appliance's single RAID controller has four Gigabit Ethernet ports, dual power supplies and fans plus a mini-SAS expansion port.</p><p>The RAID controller is mounted in a metal sled which can be released and removed from the back once the appliance is shut down. It's equipped with a 1.2GHz Intel IOP 81342 dual core processor and 2GB of DDR2 cache memory, but it only supports 3Gbit/s SAS/SATA disks.</p><p>It's here that fault tolerant features end as the appliance doesn't support dual RAID controllers. There's no battery backup pack to protect the cache contents either, so we recommend a UPS which can be monitored using one of the serial ports at the back.</p><p>Expansion is good as the controller has an SFF8470 mini-SAS port which is used to daisy-chain up to four of Enhance's RS16 JS 3U disk shelves. This allows the array to be expanded to a total of 80 hard disks, although with only one port available you can't create redundant physical paths across the disk shelves.</p><p>Installation is simple enough as the appliance's tidy web interface provides a quick start option. This offers to set up all the disks and will suggest the optimal RAID array based on the disks installed. For testing, we loaded up four 1TB WD SATA hard disks, took manual control and created a RAID 5 array.</p><p>RAID arrays are called volume groups (VGs) and the appliance supports up to eight of them. Within the VGs you create user data volumes (UDVs) which are your iSCSI virtual drives and each VG can contain multiple UDVs of different capacities.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="oeeQndyVwMFJcdbW6dGRt9" name="" alt="User data volumes (UDVs) are created within VGs and presented as iSCSI targets." src="https://cdn.mos.cms.futurecdn.net/oeeQndyVwMFJcdbW6dGRt9-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/oeeQndyVwMFJcdbW6dGRt9.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>User data volumes (UDVs) are created within VGs and presented as iSCSI targets.</p><p>For access control you select a UDV and either make it available to all hosts using a wildcard or enter the full IQN of the host initiators allowed to access it. During this phase you choose a LUN number and can also decide on read-only or read/write privileges.</p><p>The controller advertises a single iSCSI node name with all accessible virtual volumes appearing under this as LUNs. This isn't a major issue, but as CHAP authentication is applied at the node level this will apply to all hosts and LUNs.</p><p>Snapshots can be taken of a UDV for point-in-time backups and these can be run manually or on scheduled hourly, daily, weekly and monthly intervals. Snapshots can then be used to rollback their associated UDV in the event of a problem.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="cY8eG7xKWk9b2At3voJ8BF" name="" alt="Snapshots can be presented to selected hosts for data restoration and will appear as read-only optical drives." src="https://cdn.mos.cms.futurecdn.net/cY8eG7xKWk9b2At3voJ8BF-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/cY8eG7xKWk9b2At3voJ8BF.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Snapshots can be presented to selected hosts for data restoration and will appear as read-only optical drives.</p><p>You can migrate VGs to different RAID array types and expand their capacity into extra physical drives. UDVs can also be expanded into spare space within their parent VG simply by clicking on a button in their size column and entering a new capacity.</p><p>For performance testing, we created four UDVs and used a wildcard entry to allow access for all hosts. We used four test servers running Windows Server 2008 R2 and equipped with either dual Xeon 5500 or Opteron 4100 processors.</p><p>Each server was logged into a different portal IP address on the appliance giving each one a dedicated Gigabit connection. The Iometer utility was used to test raw read and write performance and each server was run on a different UDV to avoid any contention.</p><p>With one server we saw Iometer report read and write speeds of 112MB/s and 110MB/s. Adding a second server to the mix saw overall throughput increase to 223MB/s and 220MB/s.</p><p>With a third server running Iometer we saw throughout rise to 336MB/s and 331MB/s. Finally, with all four servers in the mix we recorded cumulative raw read and write throughputs of 446MB/s and 421MB/s showing no contention for resources on the controller was occurring.</p><p>The RS16 IP-4 delivers impressive performance under load and costs a lot less than products such as <a href="https://www.itpro.com/633796/hp-storageworks-p2000-g3-review" target="_blank" data-original-url="https://www.itpro.com/633796/hp-storageworks-p2000-g3-review">HP's StorageWorks P2000 G3</a>. If you don't need or want dual redundant RAID controllers then this IP SAN appliance is worth considering.</p><p><a href="https://www.itpro.com/637678/enhance-technology-ultrastor-rs16-ip-4-review" target="_blank" data-original-url="https://www.itpro.com/637678/enhance-technology-ultrastor-rs16-ip-4-review">So what's our verdict?</a></p><h2 id="verdict-9">Verdict</h2><p>The UltraStor RS16 IP-4 provides a reasonable set of IP SAN storage features and we found it very easy to deploy. At this low price you won’t get dual controllers and redundant paths to expansion shelves, but it's still worth considering if you're looking for an IP SAN solution at a low price and willing to sacrifice features and redundancy to get it.</p><p>Chassis: 3U rack Storage: 16 x 3Gbit/s SAS/SATA hot-swap bays Hard disks: 16 x 1TB SATA2 disks Power: 2 x 460W hot-swap power supplies Cooling: 2 x hot-swap fan modules RAID controller with the following: CPU: 1.2GHz Intel IOP 81342 Memory: 2GB DDR2 cache Array support: RAID0, 1, 3, 5, 6, 10, 30, 50, 60, JBOD Network: 4 x Gigabit Ethernet data ports, 10/100 management port Expansion: SFF8470 Mini-SAS port Management: Web browser, CLI</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Infortrend EonStor ESDS S16S-R2240-4 review ]]></title>
                                                                                                <dc:content><![CDATA[ <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/c7sPqdaeMPiaQ45Nj3yoU5-1920-80.jpg" alt="Infortrend EonStor ESDS S16S-R2240-4" /><figcaption>Infortrend EonStor ESDS S16S-R2240-4</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/PCAT8EY632xbNgGkW6Aa8h-1920-80.jpg" alt="Infortrend EonStor ESDS S16S-R2240-4" /><figcaption>Infortrend EonStor ESDS S16S-R2240-4</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/vJgzrgZynuAm7nx8HCn5Qc-1920-80.jpg" alt="The SANWatch Commander provides a complete overview of all Infortrend storage appliances present on the network." /><figcaption>The SANWatch Commander provides a complete overview of all Infortrend storage appliances present on the network.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/LjnQf3vjvkKXTZgLwVF3hj-1920-80.jpg" alt="The Storage Manager interface is well designed and provides a quick start wizard to help sort out your logical drives, volume" /><figcaption>The Storage Manager interface is well designed and provides a quick start wizard to help sort out your logical drives, volume</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/3wqMvWw7aLvUcRng2EBmpX-1920-80.jpg" alt="Two power saving settings can be applied to logical drives to spin down the hard disks during periods of inactivity." /><figcaption>Two power saving settings can be applied to logical drives to spin down the hard disks during periods of inactivity.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/2Wh6gqieQXAASECqTtQ8Vj-1920-80.png" alt="Once a mirror has been completed across source and target partitions it can be split and the target used for backup purposes." /><figcaption>Once a mirror has been completed across source and target partitions it can be split and the target used for backup purposes.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/4WdWnugPE955ozsACmEiT8-1920-80.png" alt="A handy performance monitor provides a real time view of read and write activity for each physical hard disk." /><figcaption>A handy performance monitor provides a real time view of read and write activity for each physical hard disk.</figcaption></figure></figure><p>Costs for Fibre Channel (FC) and IP SANs have dropped significantly over the past year, but many SMBs still find them too expensive and prefer to use direct attached storage (DAS) to expand server capacity. Infortrend has traditionally focused on delivering affordable business storage products and its latest EonStor DAS appliances are designed to share the storage wealth with multiple application servers.</p><p>On review is the ESDS S16S-R2240-4 which is a 3U system that can accommodate up to sixteen hot-swap LFF hard disks. The price we've shown is for a diskless appliance, but for testing we were provided with a full complement of high performance 600GB 15,000rpm 6Gbit/s SAS disks. Infortrend also offers 10,000rpm SFF hard disks and lower cost 1TB, 2TB and 3TB 7,200rpm nearline SAS drives.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="PCAT8EY632xbNgGkW6Aa8h" name="" alt="Infortrend EonStor ESDS S16S-R2240-4" src="https://cdn.mos.cms.futurecdn.net/PCAT8EY632xbNgGkW6Aa8h-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/PCAT8EY632xbNgGkW6Aa8h.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Infortrend EonStor ESDS S16S-R2240-4 </span></figcaption></figure><p>Hardware resilience is good with the review system including a pair of redundant, hot-swap controllers. Each one has four 6Gbit/s SAS host ports so you can link four servers using dual-redundant links for high availability (HA) or eight servers in a non-HA environment.</p><p>Each controller is equipped with 2GB cache memory which can be upgraded to 4GB. They each have a battery backup as well as Infortrend's CacheSafe feature which writes all cached data to flash memory for extra protection in the event of a prolonged blackout.</p><p>Expansion is very good as each controller has a dedicated 6Gbit/s SAS port for adding either J2000-S or J2000-R expansion shelves, allowing for a maximum of 112 disks. Both are very similar 3U units with dual power supplies and fan modules, but the R' model has four SAS ports allowing the use of multiple fault tolerant paths to the main controller unit.</p><p>Each controller has a dedicated network port for web management, although the RAIDWatch browser interface isn't that easy to use and yet is too basic for our liking. Once you've assigned IP addresses to the controllers, it's far better to install the bundled SANWatch application suite which is more sophisticated.</p><p>However, it's worth taking a moment to get to grips with how storage is handled by the appliance. Logical drives are collections of physical hard disks grouped together in a RAID array. Once you've created a logical drive you can then create logical volumes. A logical volume can be confined to a single logical drive or it can be spread over multiple logical drives for even greater fault tolerance.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="vJgzrgZynuAm7nx8HCn5Qc" name="" alt="The SANWatch Commander provides a complete overview of all Infortrend storage appliances present on the network." src="https://cdn.mos.cms.futurecdn.net/vJgzrgZynuAm7nx8HCn5Qc-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/vJgzrgZynuAm7nx8HCn5Qc.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The SANWatch Commander provides a complete overview of all Infortrend storage appliances present on the network. </span></figcaption></figure><p>The SANWatch Commander provides a complete overview of all Infortrend storage appliances present on the network.</p><p>A logical volume comprises the total capacity of all included logical drives. Volumes can be divided into partitions. These are the actual storage devices that will be presented to your servers and are mapped to either controller and assigned a unique LUN.</p><p>Plenty of backup options are available. Snapshots provides point-in-time copies of partitions which can be used for rollback and recovery purposes. Source partitions can also be copied or mirrored to target partitions on other volumes. Once a mirror has completed, the pair can be split and the target mapped to a new LUN.</p><p>This is useful for offloading backup tasks as the target can be removable media attached to another server, reducing any potential performance lag on the source. Once the backup has completed, the source and targets are resynchronised and then split again ready for the next backup.</p><p>Optional thin provisioning allows you to create partitions that only use a small amount of space, but appear much larger to the host servers. As capacity is used, the appliance dynamically allocates blocks to the partition and when all the space is used up you can expand a partition into any free space on the logical volume.</p><p>Using the Iometer utility configured with four disk workers, a 64KB transfer request size and 100 outstanding I/Os we saw the Dell server return impressive raw read and write throughputs of 800MB/s and 685MB/s respectively.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="4WdWnugPE955ozsACmEiT8" name="" alt="A handy performance monitor provides a real time view of read and write activity for each physical hard disk." src="https://cdn.mos.cms.futurecdn.net/4WdWnugPE955ozsACmEiT8-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/4WdWnugPE955ozsACmEiT8.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">A handy performance monitor provides a real time view of read and write activity for each physical hard disk. </span></figcaption></figure><p>A handy performance monitor provides a real time view of read and write activity for each physical hard disk.</p><p>With the Broadberry server connected to the same controller and using the second partition we saw cumulative read and write speeds of 1308MB/s and 712MB/s. This showed some contention for controller resources was occurring, although these speeds are impressive nonetheless.</p><p>For real world performance we saw drag and drop copies of a 2.52GB video clip to and from the Dell server return speeds of over 400MB/s. Our collection of small files was also handled well as a 22.4GB folder of 10,500 files was copied from the partition to the server at a rate of 160MB/s.</p><p>The EonStor S16S-R2240-4 scores very well for performance as only expensive 8Gbit/s FC SAN appliances will be able to match these speeds. It's also good value, although a close competitor is <a href="https://www.itpro.com/633796/hp-storageworks-p2000-g3-review" target="_blank" data-original-url="https://www.itpro.com/633796/hp-storageworks-p2000-g3-review">HP's StorageWorks P2000 G3 appliance</a>.This is very similarly priced and, amongst its many connection options, supports 6Gbit/s direct attach SAS. Expansion and resilience are just as good, although the EonStor's larger 3U chassis does provide a higher base capacity than the StorageWorks's 2U head unit making it better value.</p><p><a href="https://www.itpro.com/637264/infortrend-eonstor-esds-s16s-r2240-4-review" target="_blank" data-original-url="https://www.itpro.com/637264/infortrend-eonstor-esds-s16s-r2240-4-review">So what's our verdict?</a></p><h2 id="verdict-10">Verdict</h2><p>The EonStor acquitted itself well in our lab tests showing performance equal to more costly 8Gbit/s FC SAN appliances. It’s easy to deploy, provides excellent fault tolerance and expansion potential and it's good value too.</p><p>Chassis: 3U rack Storage: 16 x SAS drive bays Power: 2 x 530W hot-plug supplies Two hot-swap RAID controllers each with the following specification: Memory: 2GB cache (expandable to 4GB) with battery backup and CacheSafe Array support: RAID 0, 1, 3, 5, 6, 10, 30, 50, 60, JBOD, global hot-spare Host interfaces: 4 x 6Gbit/s SAS ports Network: Gigabit Ethernet management port Expansion: 6Gbit/s SAS port Management: Web browser, Infortrend SANWatch Suite</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/637264/infortrend-eonstor-esds-s16s-r2240-4-review</link>
                                                                            <description>
                            <![CDATA[ InforTrend's latest high-speed DAS appliance provides a simple method of expanding storage for multiple application servers. In this exclusive review, Dave Mitchell hooks it up to the labs' servers to test performance and see how easy it is to deploy. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">kJhoCPLM2rv4kNR8VAoitQ</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/c7sPqdaeMPiaQ45Nj3yoU5-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Wed, 09 Nov 2011 16:28:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/c7sPqdaeMPiaQ45Nj3yoU5-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                        <media:description><![CDATA[Infortrend EonStor ESDS S16S-R2240-4]]></media:description>                                                            <media:text><![CDATA[Infortrend EonStor ESDS S16S-R2240-4]]></media:text>
                                <media:title type="plain"><![CDATA[Infortrend EonStor ESDS S16S-R2240-4]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/c7sPqdaeMPiaQ45Nj3yoU5-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/c7sPqdaeMPiaQ45Nj3yoU5-1920-80.jpg" alt="Infortrend EonStor ESDS S16S-R2240-4" /><figcaption>Infortrend EonStor ESDS S16S-R2240-4</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/PCAT8EY632xbNgGkW6Aa8h-1920-80.jpg" alt="Infortrend EonStor ESDS S16S-R2240-4" /><figcaption>Infortrend EonStor ESDS S16S-R2240-4</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/vJgzrgZynuAm7nx8HCn5Qc-1920-80.jpg" alt="The SANWatch Commander provides a complete overview of all Infortrend storage appliances present on the network." /><figcaption>The SANWatch Commander provides a complete overview of all Infortrend storage appliances present on the network.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/LjnQf3vjvkKXTZgLwVF3hj-1920-80.jpg" alt="The Storage Manager interface is well designed and provides a quick start wizard to help sort out your logical drives, volume" /><figcaption>The Storage Manager interface is well designed and provides a quick start wizard to help sort out your logical drives, volume</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/3wqMvWw7aLvUcRng2EBmpX-1920-80.jpg" alt="Two power saving settings can be applied to logical drives to spin down the hard disks during periods of inactivity." /><figcaption>Two power saving settings can be applied to logical drives to spin down the hard disks during periods of inactivity.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/2Wh6gqieQXAASECqTtQ8Vj-1920-80.png" alt="Once a mirror has been completed across source and target partitions it can be split and the target used for backup purposes." /><figcaption>Once a mirror has been completed across source and target partitions it can be split and the target used for backup purposes.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/4WdWnugPE955ozsACmEiT8-1920-80.png" alt="A handy performance monitor provides a real time view of read and write activity for each physical hard disk." /><figcaption>A handy performance monitor provides a real time view of read and write activity for each physical hard disk.</figcaption></figure></figure><p>Costs for Fibre Channel (FC) and IP SANs have dropped significantly over the past year, but many SMBs still find them too expensive and prefer to use direct attached storage (DAS) to expand server capacity. Infortrend has traditionally focused on delivering affordable business storage products and its latest EonStor DAS appliances are designed to share the storage wealth with multiple application servers.</p><p>On review is the ESDS S16S-R2240-4 which is a 3U system that can accommodate up to sixteen hot-swap LFF hard disks. The price we've shown is for a diskless appliance, but for testing we were provided with a full complement of high performance 600GB 15,000rpm 6Gbit/s SAS disks. Infortrend also offers 10,000rpm SFF hard disks and lower cost 1TB, 2TB and 3TB 7,200rpm nearline SAS drives.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="PCAT8EY632xbNgGkW6Aa8h" name="" alt="Infortrend EonStor ESDS S16S-R2240-4" src="https://cdn.mos.cms.futurecdn.net/PCAT8EY632xbNgGkW6Aa8h-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/PCAT8EY632xbNgGkW6Aa8h.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Infortrend EonStor ESDS S16S-R2240-4 </span></figcaption></figure><p>Hardware resilience is good with the review system including a pair of redundant, hot-swap controllers. Each one has four 6Gbit/s SAS host ports so you can link four servers using dual-redundant links for high availability (HA) or eight servers in a non-HA environment.</p><p>Each controller is equipped with 2GB cache memory which can be upgraded to 4GB. They each have a battery backup as well as Infortrend's CacheSafe feature which writes all cached data to flash memory for extra protection in the event of a prolonged blackout.</p><p>Expansion is very good as each controller has a dedicated 6Gbit/s SAS port for adding either J2000-S or J2000-R expansion shelves, allowing for a maximum of 112 disks. Both are very similar 3U units with dual power supplies and fan modules, but the R' model has four SAS ports allowing the use of multiple fault tolerant paths to the main controller unit.</p><p>Each controller has a dedicated network port for web management, although the RAIDWatch browser interface isn't that easy to use and yet is too basic for our liking. Once you've assigned IP addresses to the controllers, it's far better to install the bundled SANWatch application suite which is more sophisticated.</p><p>However, it's worth taking a moment to get to grips with how storage is handled by the appliance. Logical drives are collections of physical hard disks grouped together in a RAID array. Once you've created a logical drive you can then create logical volumes. A logical volume can be confined to a single logical drive or it can be spread over multiple logical drives for even greater fault tolerance.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="vJgzrgZynuAm7nx8HCn5Qc" name="" alt="The SANWatch Commander provides a complete overview of all Infortrend storage appliances present on the network." src="https://cdn.mos.cms.futurecdn.net/vJgzrgZynuAm7nx8HCn5Qc-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/vJgzrgZynuAm7nx8HCn5Qc.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The SANWatch Commander provides a complete overview of all Infortrend storage appliances present on the network. </span></figcaption></figure><p>The SANWatch Commander provides a complete overview of all Infortrend storage appliances present on the network.</p><p>A logical volume comprises the total capacity of all included logical drives. Volumes can be divided into partitions. These are the actual storage devices that will be presented to your servers and are mapped to either controller and assigned a unique LUN.</p><p>Plenty of backup options are available. Snapshots provides point-in-time copies of partitions which can be used for rollback and recovery purposes. Source partitions can also be copied or mirrored to target partitions on other volumes. Once a mirror has completed, the pair can be split and the target mapped to a new LUN.</p><p>This is useful for offloading backup tasks as the target can be removable media attached to another server, reducing any potential performance lag on the source. Once the backup has completed, the source and targets are resynchronised and then split again ready for the next backup.</p><p>Optional thin provisioning allows you to create partitions that only use a small amount of space, but appear much larger to the host servers. As capacity is used, the appliance dynamically allocates blocks to the partition and when all the space is used up you can expand a partition into any free space on the logical volume.</p><p>Using the Iometer utility configured with four disk workers, a 64KB transfer request size and 100 outstanding I/Os we saw the Dell server return impressive raw read and write throughputs of 800MB/s and 685MB/s respectively.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="4WdWnugPE955ozsACmEiT8" name="" alt="A handy performance monitor provides a real time view of read and write activity for each physical hard disk." src="https://cdn.mos.cms.futurecdn.net/4WdWnugPE955ozsACmEiT8-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/4WdWnugPE955ozsACmEiT8.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">A handy performance monitor provides a real time view of read and write activity for each physical hard disk. </span></figcaption></figure><p>A handy performance monitor provides a real time view of read and write activity for each physical hard disk.</p><p>With the Broadberry server connected to the same controller and using the second partition we saw cumulative read and write speeds of 1308MB/s and 712MB/s. This showed some contention for controller resources was occurring, although these speeds are impressive nonetheless.</p><p>For real world performance we saw drag and drop copies of a 2.52GB video clip to and from the Dell server return speeds of over 400MB/s. Our collection of small files was also handled well as a 22.4GB folder of 10,500 files was copied from the partition to the server at a rate of 160MB/s.</p><p>The EonStor S16S-R2240-4 scores very well for performance as only expensive 8Gbit/s FC SAN appliances will be able to match these speeds. It's also good value, although a close competitor is <a href="https://www.itpro.com/633796/hp-storageworks-p2000-g3-review" target="_blank" data-original-url="https://www.itpro.com/633796/hp-storageworks-p2000-g3-review">HP's StorageWorks P2000 G3 appliance</a>.This is very similarly priced and, amongst its many connection options, supports 6Gbit/s direct attach SAS. Expansion and resilience are just as good, although the EonStor's larger 3U chassis does provide a higher base capacity than the StorageWorks's 2U head unit making it better value.</p><p><a href="https://www.itpro.com/637264/infortrend-eonstor-esds-s16s-r2240-4-review" target="_blank" data-original-url="https://www.itpro.com/637264/infortrend-eonstor-esds-s16s-r2240-4-review">So what's our verdict?</a></p><h2 id="verdict-10">Verdict</h2><p>The EonStor acquitted itself well in our lab tests showing performance equal to more costly 8Gbit/s FC SAN appliances. It’s easy to deploy, provides excellent fault tolerance and expansion potential and it's good value too.</p><p>Chassis: 3U rack Storage: 16 x SAS drive bays Power: 2 x 530W hot-plug supplies Two hot-swap RAID controllers each with the following specification: Memory: 2GB cache (expandable to 4GB) with battery backup and CacheSafe Array support: RAID 0, 1, 3, 5, 6, 10, 30, 50, 60, JBOD, global hot-spare Host interfaces: 4 x 6Gbit/s SAS ports Network: Gigabit Ethernet management port Expansion: 6Gbit/s SAS port Management: Web browser, Infortrend SANWatch Suite</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Dell PowerEdge T110 II review ]]></title>
                                                                                                <dc:content><![CDATA[ <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/gtXebnRXVM7Pnv2zLBv6K4-1920-80.jpg" alt="The Dell PowerEdge T110 II" /><figcaption>The Dell PowerEdge T110 II</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/ZaRuVyBj9JTVjdThn4kxyc-1920-80.jpg" alt="The rear of the Dell PowerEdge T110 II." /><figcaption>The rear of the Dell PowerEdge T110 II.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/HggcyxDazki37uHtfvVBfJ-1920-80.jpg" alt="The interior of the Dell PowerEdge T110 II." /><figcaption>The interior of the Dell PowerEdge T110 II.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/QXWCZ47kLKwUmDz3yrfDc9-1920-80.jpg" alt="Dell’s OpenManage Server Administrator provides web-based remote server monitoring which includes graphical temperature chart" /><figcaption>Dell’s OpenManage Server Administrator provides web-based remote server monitoring which includes graphical temperature chart</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/WNG3PEP6KrtjRJSuYQjJKF-1920-80.jpg" alt="The web interface can also be used to keep an eye on critical areas such as system voltages." /><figcaption>The web interface can also be used to keep an eye on critical areas such as system voltages.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/vxLa2W33bGjmVxyxHqkrEM-1920-80.png" alt="From the OpenManage interface you can remotely turn the server off, but you’ll need to use the IPMISH command line utility to" /><figcaption>From the OpenManage interface you can remotely turn the server off, but you’ll need to use the IPMISH command line utility to</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/unSpRMBzQABeFFdHT9LF6i-1920-80.jpg" alt="What’s in your slots? OpenManage will be able to tell you." /><figcaption>What’s in your slots? OpenManage will be able to tell you.</figcaption></figure></figure><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="GGTgtQXTWh5XnWT2mRJGDZ" name="" alt="ITPRO Value award" src="https://cdn.mos.cms.futurecdn.net/GGTgtQXTWh5XnWT2mRJGDZ-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/GGTgtQXTWh5XnWT2mRJGDZ.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Of all the main server manufacturers Dell has the sharpest focus on small businesses and has traditionally offered an extensive choice of single socket, entry-level systems. The new PowerEdge T110 II is its first Xeon E3 pedestal server and it targets small businesses looking for their first purpose built server or an affordable replacement for their old server which they've probably had for far too long.</p><p>Prices start at a remarkably low 239 ex VAT, but this only gets you a basic system with a dual-core 2.6GHz Pentium G620 processor, 1GB of RAM, one 250GB SATA hard disk, no operating system and a one year next business day warranty. The system on review costs a lot more but it does include plenty of extra goodies.</p><p>The new PowerEdge T110 II targets small businesses looking for their first purpose built server or an affordable replacement for their old server.</p><p>For starters, it was supplied to us with a high-end quad-core 3.4GHz Xeon E3-1270 processor. Intel's Xeon E3 family now consists of twelve members of which Dell offers four models for the T110 II. You can slash up to 110 off our price by opting for the slightly slower 3.1GHz Xeon E3-1220.</p><p>You can also cut costs further with the operating system as Dell can provide the T110 II with Windows Server 2008 R2 Foundation pre-installed instead of Standard. It only costs 146 and as it came pre-installed on the review system we've included this in the price.</p><p>Foundation is a good choice for small businesses, but it has some limitations that you need to be aware of. It's 64-bit only, supports a single processor socket and a maximum of 8GB of memory. It can handle up to thirty simultaneous inbound connections and supports a maximum of fifteen Windows user accounts.</p><p>Dell is also offering the T110 II with Microsoft's latest SBS 2011. This could be a popular choice for this server especially as Dell is currently throwing in a free 8GB memory upgrade with the five CAL Standard version.</p><p>Thanks to its low power Xeon E3 processor, the T110 II is light on power consumption too. Using an in-line power meter, we clocked the review system drawing only 38W with Server 2008 R2 Foundation in idle. This rose to 110W when under pressure from the benchmark application SiSoft Sandra.</p><p>The server's side panel is removed easily by pushing back a locking lever on the top panel and this can be padlocked shut. The hole on the locking tab is also large enough to accept a security cable to stop the server itself being nicked.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="HggcyxDazki37uHtfvVBfJ" name="" alt="The interior of the Dell PowerEdge T110 II." src="https://cdn.mos.cms.futurecdn.net/HggcyxDazki37uHtfvVBfJ-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/HggcyxDazki37uHtfvVBfJ.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The interior of the Dell PowerEdge T110 II. </span></figcaption></figure><p>Internal design is very tidy and there's plenty of room for adding more components.</p><p>Internal design is very tidy and the server has room for up to four 3.5in hard disks which are mounted in a cold-swap cage at the front. Each drive is fitted in a plastic carrier which we found easy to remove and combined power/interface cables are fitted next to each bay. Dell advised us that it is making a version available that will support up to six 2.5in hard disks as well.</p><p>Hard disk controller options start with the embedded PERC S100 controller which requires the hard disks to be cabled directly to the motherboard's SATA ports. This supports striped, mirrored and RAID 5 arrays and is sufficient for small businesses that don't want expensive SAS hard disks.</p><p>Our system included the PERC S300 PCI Express card which costs 73 and supports up to eight 3Gbit/s SAS, near-line SAS and SATA hard disks. And then for 90, there's the H200 PCI-E card which we don't recommend for this server. Although it supports expensive, high-performance 6Gbit/s SAS disks, it supports RAID 10 but not, oddly, RAID 5.</p><p>Alongside the single Gigabit Ethernet network port is an eSATA port for adding external storage. Six external USB2 ports are also available and there's plenty of room for internal expansion too as the motherboard has three spare PCI Express slots. Along with the SATA DVDROM drive there's also a spare 5.25in bay at the front as well.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="QXWCZ47kLKwUmDz3yrfDc9" name="" alt="Dell’s OpenManage Server Administrator provides web-based remote server monitoring which includes graphical temperature chart" src="https://cdn.mos.cms.futurecdn.net/QXWCZ47kLKwUmDz3yrfDc9-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/QXWCZ47kLKwUmDz3yrfDc9.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Dell’s OpenManage Server Administrator provides web-based remote server monitoring which includes graphical temperature chart </span></figcaption></figure><p>Management options are more basic than Dell's higher-end PowerEdge servers as the motherboard doesn't support the iDRAC6 Express or Enterprise optional upgrades. It only has an embedded BMC (baseboard management controller) which shares access with the network port. It can be accessed remotely using Dell's IPMISH command line utility, but this only lets you control server power.</p><p>You also get the Windows-based OpenManage Server Administrator which provides local and remote web browser access. It doesn't have features such as KVM-over-IP remote control or power usage monitoring, but you can view temperatures, voltages and cooling fan speeds and it can issue alerts when problems are detected.</p><p>The PowerEdge T110 II is a very worthy candidate for a first server. It's well built, has plenty of room to expand and has a good choice of processor and storage options allowing small businesses to pick and choose to get the best value.</p><p><a href="https://www.itpro.com/635968/dell-poweredge-t110-ii-review" target="_blank" data-original-url="https://www.itpro.com/635968/dell-poweredge-t110-ii-review">So what's our verdict?</a></p><h2 id="verdict-11">Verdict</h2><p>The PowerEdge T110 II is a fine choice for small businesses looking for their first server as it combines a balanced blend of build quality, features, expansion potential and value. The price of our review system may seem quite high but it does include a good specification along with a three year on-site warranty. If the price is too high however, Dell offers enough options to allow you to find the best balance between price and performance.</p><p>Chassis: Pedestal</p><p>CPU: 3.4GHz Intel Xeon E3-1270</p><p>Memory: 8GB DDR3 LV UDIMM expandable to 32GB</p><p>Storage: 3 x 250GB Dell SATA hard disks in cold-swap carriers</p><p>RAID: PERC S300 PCI Express card</p><p>Array support: RAID 0, 1, 10, 5, JBODs</p><p>Expansion: 4 x PCI Express Gen 2 slots, 1 x eSATA</p><p>Network: 1 x Gigabit Ethernet</p><p>Management: Embedded iDRAC6 BMC</p><p>Software: Windows Server 2008 R2 Foundation Edition, Dell OpenManage Server Administrator</p><p>Warranty: Three years ProSupport on-site next business day</p><p>POWER CONSUMPTION</p><p>Idle 38W</p><p>Active 110W</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/635968/dell-poweredge-t110-ii-review</link>
                                                                            <description>
                            <![CDATA[ Dell wants to convince small businesses to throw out their old desktop and get a real server instead. Dave Mitchell thinks its latest Xeon E3 equipped PowerEdge T110 II is a good choice as a first server - read his review to find out why. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">gKNh5oFiutkmwtwTDhtsNX</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/gtXebnRXVM7Pnv2zLBv6K4-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Wed, 07 Sep 2011 11:15:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Servers & Storage]]></category>
                                                    <category><![CDATA[Infrastructure]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/gtXebnRXVM7Pnv2zLBv6K4-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                        <media:description><![CDATA[The rear of the Dell PowerEdge T110 II.]]></media:description>                                                            <media:text><![CDATA[The Dell PowerEdge T110 II]]></media:text>
                                <media:title type="plain"><![CDATA[The Dell PowerEdge T110 II]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/gtXebnRXVM7Pnv2zLBv6K4-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/gtXebnRXVM7Pnv2zLBv6K4-1920-80.jpg" alt="The Dell PowerEdge T110 II" /><figcaption>The Dell PowerEdge T110 II</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/ZaRuVyBj9JTVjdThn4kxyc-1920-80.jpg" alt="The rear of the Dell PowerEdge T110 II." /><figcaption>The rear of the Dell PowerEdge T110 II.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/HggcyxDazki37uHtfvVBfJ-1920-80.jpg" alt="The interior of the Dell PowerEdge T110 II." /><figcaption>The interior of the Dell PowerEdge T110 II.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/QXWCZ47kLKwUmDz3yrfDc9-1920-80.jpg" alt="Dell’s OpenManage Server Administrator provides web-based remote server monitoring which includes graphical temperature chart" /><figcaption>Dell’s OpenManage Server Administrator provides web-based remote server monitoring which includes graphical temperature chart</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/WNG3PEP6KrtjRJSuYQjJKF-1920-80.jpg" alt="The web interface can also be used to keep an eye on critical areas such as system voltages." /><figcaption>The web interface can also be used to keep an eye on critical areas such as system voltages.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/vxLa2W33bGjmVxyxHqkrEM-1920-80.png" alt="From the OpenManage interface you can remotely turn the server off, but you’ll need to use the IPMISH command line utility to" /><figcaption>From the OpenManage interface you can remotely turn the server off, but you’ll need to use the IPMISH command line utility to</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/unSpRMBzQABeFFdHT9LF6i-1920-80.jpg" alt="What’s in your slots? OpenManage will be able to tell you." /><figcaption>What’s in your slots? OpenManage will be able to tell you.</figcaption></figure></figure><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="GGTgtQXTWh5XnWT2mRJGDZ" name="" alt="ITPRO Value award" src="https://cdn.mos.cms.futurecdn.net/GGTgtQXTWh5XnWT2mRJGDZ-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/GGTgtQXTWh5XnWT2mRJGDZ.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Of all the main server manufacturers Dell has the sharpest focus on small businesses and has traditionally offered an extensive choice of single socket, entry-level systems. The new PowerEdge T110 II is its first Xeon E3 pedestal server and it targets small businesses looking for their first purpose built server or an affordable replacement for their old server which they've probably had for far too long.</p><p>Prices start at a remarkably low 239 ex VAT, but this only gets you a basic system with a dual-core 2.6GHz Pentium G620 processor, 1GB of RAM, one 250GB SATA hard disk, no operating system and a one year next business day warranty. The system on review costs a lot more but it does include plenty of extra goodies.</p><p>The new PowerEdge T110 II targets small businesses looking for their first purpose built server or an affordable replacement for their old server.</p><p>For starters, it was supplied to us with a high-end quad-core 3.4GHz Xeon E3-1270 processor. Intel's Xeon E3 family now consists of twelve members of which Dell offers four models for the T110 II. You can slash up to 110 off our price by opting for the slightly slower 3.1GHz Xeon E3-1220.</p><p>You can also cut costs further with the operating system as Dell can provide the T110 II with Windows Server 2008 R2 Foundation pre-installed instead of Standard. It only costs 146 and as it came pre-installed on the review system we've included this in the price.</p><p>Foundation is a good choice for small businesses, but it has some limitations that you need to be aware of. It's 64-bit only, supports a single processor socket and a maximum of 8GB of memory. It can handle up to thirty simultaneous inbound connections and supports a maximum of fifteen Windows user accounts.</p><p>Dell is also offering the T110 II with Microsoft's latest SBS 2011. This could be a popular choice for this server especially as Dell is currently throwing in a free 8GB memory upgrade with the five CAL Standard version.</p><p>Thanks to its low power Xeon E3 processor, the T110 II is light on power consumption too. Using an in-line power meter, we clocked the review system drawing only 38W with Server 2008 R2 Foundation in idle. This rose to 110W when under pressure from the benchmark application SiSoft Sandra.</p><p>The server's side panel is removed easily by pushing back a locking lever on the top panel and this can be padlocked shut. The hole on the locking tab is also large enough to accept a security cable to stop the server itself being nicked.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="HggcyxDazki37uHtfvVBfJ" name="" alt="The interior of the Dell PowerEdge T110 II." src="https://cdn.mos.cms.futurecdn.net/HggcyxDazki37uHtfvVBfJ-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/HggcyxDazki37uHtfvVBfJ.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The interior of the Dell PowerEdge T110 II. </span></figcaption></figure><p>Internal design is very tidy and there's plenty of room for adding more components.</p><p>Internal design is very tidy and the server has room for up to four 3.5in hard disks which are mounted in a cold-swap cage at the front. Each drive is fitted in a plastic carrier which we found easy to remove and combined power/interface cables are fitted next to each bay. Dell advised us that it is making a version available that will support up to six 2.5in hard disks as well.</p><p>Hard disk controller options start with the embedded PERC S100 controller which requires the hard disks to be cabled directly to the motherboard's SATA ports. This supports striped, mirrored and RAID 5 arrays and is sufficient for small businesses that don't want expensive SAS hard disks.</p><p>Our system included the PERC S300 PCI Express card which costs 73 and supports up to eight 3Gbit/s SAS, near-line SAS and SATA hard disks. And then for 90, there's the H200 PCI-E card which we don't recommend for this server. Although it supports expensive, high-performance 6Gbit/s SAS disks, it supports RAID 10 but not, oddly, RAID 5.</p><p>Alongside the single Gigabit Ethernet network port is an eSATA port for adding external storage. Six external USB2 ports are also available and there's plenty of room for internal expansion too as the motherboard has three spare PCI Express slots. Along with the SATA DVDROM drive there's also a spare 5.25in bay at the front as well.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="QXWCZ47kLKwUmDz3yrfDc9" name="" alt="Dell’s OpenManage Server Administrator provides web-based remote server monitoring which includes graphical temperature chart" src="https://cdn.mos.cms.futurecdn.net/QXWCZ47kLKwUmDz3yrfDc9-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/QXWCZ47kLKwUmDz3yrfDc9.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Dell’s OpenManage Server Administrator provides web-based remote server monitoring which includes graphical temperature chart </span></figcaption></figure><p>Management options are more basic than Dell's higher-end PowerEdge servers as the motherboard doesn't support the iDRAC6 Express or Enterprise optional upgrades. It only has an embedded BMC (baseboard management controller) which shares access with the network port. It can be accessed remotely using Dell's IPMISH command line utility, but this only lets you control server power.</p><p>You also get the Windows-based OpenManage Server Administrator which provides local and remote web browser access. It doesn't have features such as KVM-over-IP remote control or power usage monitoring, but you can view temperatures, voltages and cooling fan speeds and it can issue alerts when problems are detected.</p><p>The PowerEdge T110 II is a very worthy candidate for a first server. It's well built, has plenty of room to expand and has a good choice of processor and storage options allowing small businesses to pick and choose to get the best value.</p><p><a href="https://www.itpro.com/635968/dell-poweredge-t110-ii-review" target="_blank" data-original-url="https://www.itpro.com/635968/dell-poweredge-t110-ii-review">So what's our verdict?</a></p><h2 id="verdict-11">Verdict</h2><p>The PowerEdge T110 II is a fine choice for small businesses looking for their first server as it combines a balanced blend of build quality, features, expansion potential and value. The price of our review system may seem quite high but it does include a good specification along with a three year on-site warranty. If the price is too high however, Dell offers enough options to allow you to find the best balance between price and performance.</p><p>Chassis: Pedestal</p><p>CPU: 3.4GHz Intel Xeon E3-1270</p><p>Memory: 8GB DDR3 LV UDIMM expandable to 32GB</p><p>Storage: 3 x 250GB Dell SATA hard disks in cold-swap carriers</p><p>RAID: PERC S300 PCI Express card</p><p>Array support: RAID 0, 1, 10, 5, JBODs</p><p>Expansion: 4 x PCI Express Gen 2 slots, 1 x eSATA</p><p>Network: 1 x Gigabit Ethernet</p><p>Management: Embedded iDRAC6 BMC</p><p>Software: Windows Server 2008 R2 Foundation Edition, Dell OpenManage Server Administrator</p><p>Warranty: Three years ProSupport on-site next business day</p><p>POWER CONSUMPTION</p><p>Idle 38W</p><p>Active 110W</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Buffalo TeraStation Pro 8 Bay review ]]></title>
                                                                                                <dc:content><![CDATA[ <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/zPienpJh7Xy98NsAWVspvk-1920-80.jpg" alt="Buffalo TeraStation Pro 8 Bay" /><figcaption>Buffalo TeraStation Pro 8 Bay</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/6Yo5eWB8JFStAhKszCYf5F-1920-80.jpg" alt="As its name suggests, the TeraStation Pro 8 Bay has eight easily accessible disk trays." /><figcaption>As its name suggests, the TeraStation Pro 8 Bay has eight easily accessible disk trays.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/XVr6d8wUBjrHqH9PcCLRHR-1920-80.jpg" alt="The rear of the Buffalo TeraStation Pro 8 Bay." /><figcaption>The rear of the Buffalo TeraStation Pro 8 Bay.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/xw7rPjTLh2TqDK5DtgKBh5-1920-80.png" alt="Buffalo provides plenty of graphical assistance for TeraStation installation." /><figcaption>Buffalo provides plenty of graphical assistance for TeraStation installation.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/CtdjFwaymZF7jPgDTGotHh-1920-80.png" alt="The NASNavigator 2 utility finds the appliance on the network and helps with share mapping." /><figcaption>The NASNavigator 2 utility finds the appliance on the network and helps with share mapping.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/DQh2MsHM9NyEpVC5LzG5Z4-1920-80.jpg" alt="The eight hard disks come preconfigured as a dual-disk redundant RAID 6 array but you can change this if you want to free up " /><figcaption>The eight hard disks come preconfigured as a dual-disk redundant RAID 6 array but you can change this if you want to free up </figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Ridx7bQsAdKkPnBzruSdqh-1920-80.jpg" alt="During share creation you can decide which network services will be supported and apply user and group access restrictions." /><figcaption>During share creation you can decide which network services will be supported and apply user and group access restrictions.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/5Eu3rDEyrE84X4hJy7R5yA-1920-80.png" alt="The bundled NovaBackup software supports Windows servers and workstations and the price includes a 10 user license." /><figcaption>The bundled NovaBackup software supports Windows servers and workstations and the price includes a 10 user license.</figcaption></figure></figure><p>Buffalo Technology was once a main player in the business NAS appliance market but has been in danger for some time of becoming an also-ran. Its last significant product release was the TeraStation III over two years ago which was good value.</p><p>The new TeraStation Pro family of desktop appliances are the first from Buffalo to go beyond four hot-swap hard disks. Processing power also gets a boost as the TeraStation Pro is equipped with an Atom 1.66GHz D510 chip whilst memory has been increased to 2GB.</p><p>You can't buy diskless appliances, but Buffalo offers models with 8TB, 16TB and 24TB capacities. We have the 8TB model on review which uses eight Samsung HD103SI SATA disks and at just over a grand looks very good value.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="6Yo5eWB8JFStAhKszCYf5F" name="" alt="As its name suggests, the TeraStation Pro 8 Bay has eight easily accessible disk trays." src="https://cdn.mos.cms.futurecdn.net/6Yo5eWB8JFStAhKszCYf5F-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/6Yo5eWB8JFStAhKszCYf5F.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">As its name suggests, the TeraStation Pro 8 Bay has eight easily accessible disk trays. </span></figcaption></figure><p>As its name suggests, the TeraStation Pro 8 Bay has eight easily accessible disk trays.</p><p>Build quality is good with the chassis made from solid steel and the hot-swap drive bays protected by a lockable front panel. Two large cooling fans are located at the rear, but they weren't loud as we found the appliance to be very quiet during testing.</p><p>The pair of Gigabit Ethernet ports support load balanced and failover teams and there are two USB2 ports for attaching external storage devices, printers or a UPS. Oddly, you only get a pair of USB3 ports on the new TeraStation Pro 6 Bay models which uses a variation of the same chassis.</p><p>Buffalo's NASNavigator 2 utility locates the appliance on the network and provides access to shares and a quick drive mapping service. The appliance's web interface can also be accessed from here. It's nowhere near as slick as those provided by QNap or Synology. Although it provides easy access to all features we found it could be sluggish at times.</p><p>The system comes preconfigured with all disks in a RAID 6 array which provides dual-disk redundancy. If you want more storage then it's easy enough to delete this and choose from stripes, mirrors or RAID-5 and the appliance supports four separate arrays as well.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="Ridx7bQsAdKkPnBzruSdqh" name="" alt="During share creation you can decide which network services will be supported and apply user and group access restrictions." src="https://cdn.mos.cms.futurecdn.net/Ridx7bQsAdKkPnBzruSdqh-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/Ridx7bQsAdKkPnBzruSdqh.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">During share creation you can decide which network services will be supported and apply user and group access restrictions. </span></figcaption></figure><p>During share creation you can decide which network services will be supported and apply user and group access restrictions.</p><p>Quotas for controlling disk space usage are applied to users as they are created. A soft quota warns them when they are getting close to their limits and a hard quota stops them from copying anything else to the appliance.</p><p>CIFS, NFS and FTP access can be activated individually on selected shares and secure FTP transfers are also supported. An unusual feature is the ability to enable the various network services on specific network ports only.</p><p>If you want IP SANs then Buffalo would like you to use its separate TeraStation iSCSI appliance. They are not available on the TeraStation Pro, so if you want a NAS appliance with IP SAN support then consider products from QNap and Synology. These vendors' appliances all support NAS shares and iSCSI targets in the same array, iSCSI thin provisioning and CHAP access authentication.</p><p>Buffalo scores better for business backup features. The appliance comes as standard with a 10-user license for the bundled NovaBackup Business Essentials software which supports Windows workstations and servers.</p><p>It runs scheduled backups of local folders to selected shares on the appliance and can manage a combination of full, incremental and differential backups. Disaster recovery is also available as it can create boot media and run bare metal restores from the appliance.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="5Eu3rDEyrE84X4hJy7R5yA" name="" alt="The bundled NovaBackup software supports Windows servers and workstations and the price includes a 10 user license." src="https://cdn.mos.cms.futurecdn.net/5Eu3rDEyrE84X4hJy7R5yA-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/5Eu3rDEyrE84X4hJy7R5yA.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The bundled NovaBackup software supports Windows servers and workstations and the price includes a 10 user license. </span></figcaption></figure><p>The bundled NovaBackup software supports Windows servers and workstations and the price includes a 10 user license.</p><p>The Atom processor and extra memory make this appliance much faster than the Marvell equipped TeraStation III, but speeds are still well short of those delivered by QNap and Synology. We used a Dell PowerEdge R515 server running Windows Server 2008 R2 64-bit and saw drag and drop copies to a mapped share return read and write speeds of 83MB/s and 36MB/s.</p><p>FTP operations were better with the FileZilla utility reporting speeds of 99MB/s and 40MB/s respectively. Our 17.4GB collection of 10,500 small files proved to be handful as this was copied to the appliance at an average of only 20MB/s.</p><p>In contrast, the same folder was written to <a href="https://www.itpro.com/635353/qnap-ts-559-pro-ii-turbonas-review" target="_blank" data-original-url="https://www.itpro.com/635353/qnap-ts-559-pro-ii-turbonas-review">QNap's five-bay TS-559 Pro II</a> at a rate of 65MB/s. We also clocked it at 107MB/s and 96MB/s for read and write operations in our single file transfer tests.</p><p>The TeraStation Pro 8 Bay is significantly faster than its predecessor and the 8TB version is cheaper than rival appliances fitted with the same capacity hard disks.. However, the TeraStation's average performance compared to rival appliances and general lack of features makes it a poor choice if you want more than basic NAS services from your appliance.</p><p><a href="https://www.itpro.com/635656/buffalo-terastation-pro-8-bay-review" target="_blank" data-original-url="https://www.itpro.com/635656/buffalo-terastation-pro-8-bay-review">So what's our verdict?</a></p><h2 id="verdict-12">Verdict</h2><p>As a basic, high capacity NAS appliance, Buffalo's new TeraStation Pro 8 Bay is a lot cheaper than much of the competition. However, it comes up short for features when stacked up against the likes of QNap, Synology and Netgear, performance isn’t great and it doesn’t support IP SANs either.</p><p>Chassis: Desktop CPU: 1.66GHz Intel Atom D510 Memory: 2GB DDR2 Storage: 8 x 1TB Samsung HD103SI 3Gbps SATA hard disk in hot-swap carriers RAID: Software managed Array support: RAID 0, 1, 10, 5, 6, 50, 51, 60, 61, JBOD Network: 2 x Gigabit Ethernet Other ports: 2 x USB2 Management: Web browser Software: Buffalo NAS Navigator 2 and NovaBackup Business Essentials Backup (10 licenses) Part code: TS-8VH8.0TL/R6EU</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/635656/buffalo-terastation-pro-8-bay-review</link>
                                                                            <description>
                            <![CDATA[ Buffalo has been lagging behind the competition in the business NAS market, but its latest TeraStation Pro has been revamped. There's an Atom processor and more memory all at a surprisingly reasonable price, but Dave Mitchell doesn't think these are enough. Read this review to find out why. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">nWwSqjgDKbmh35RWUFFCPK</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/zPienpJh7Xy98NsAWVspvk-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Thu, 18 Aug 2011 11:24:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/zPienpJh7Xy98NsAWVspvk-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                        <media:description><![CDATA[As its name suggests, the TeraStation Pro 8 Bay has eight easily accessible disk trays.]]></media:description>                                                            <media:text><![CDATA[Buffalo TeraStation Pro 8 Bay]]></media:text>
                                <media:title type="plain"><![CDATA[Buffalo TeraStation Pro 8 Bay]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/zPienpJh7Xy98NsAWVspvk-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/zPienpJh7Xy98NsAWVspvk-1920-80.jpg" alt="Buffalo TeraStation Pro 8 Bay" /><figcaption>Buffalo TeraStation Pro 8 Bay</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/6Yo5eWB8JFStAhKszCYf5F-1920-80.jpg" alt="As its name suggests, the TeraStation Pro 8 Bay has eight easily accessible disk trays." /><figcaption>As its name suggests, the TeraStation Pro 8 Bay has eight easily accessible disk trays.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/XVr6d8wUBjrHqH9PcCLRHR-1920-80.jpg" alt="The rear of the Buffalo TeraStation Pro 8 Bay." /><figcaption>The rear of the Buffalo TeraStation Pro 8 Bay.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/xw7rPjTLh2TqDK5DtgKBh5-1920-80.png" alt="Buffalo provides plenty of graphical assistance for TeraStation installation." /><figcaption>Buffalo provides plenty of graphical assistance for TeraStation installation.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/CtdjFwaymZF7jPgDTGotHh-1920-80.png" alt="The NASNavigator 2 utility finds the appliance on the network and helps with share mapping." /><figcaption>The NASNavigator 2 utility finds the appliance on the network and helps with share mapping.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/DQh2MsHM9NyEpVC5LzG5Z4-1920-80.jpg" alt="The eight hard disks come preconfigured as a dual-disk redundant RAID 6 array but you can change this if you want to free up " /><figcaption>The eight hard disks come preconfigured as a dual-disk redundant RAID 6 array but you can change this if you want to free up </figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Ridx7bQsAdKkPnBzruSdqh-1920-80.jpg" alt="During share creation you can decide which network services will be supported and apply user and group access restrictions." /><figcaption>During share creation you can decide which network services will be supported and apply user and group access restrictions.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/5Eu3rDEyrE84X4hJy7R5yA-1920-80.png" alt="The bundled NovaBackup software supports Windows servers and workstations and the price includes a 10 user license." /><figcaption>The bundled NovaBackup software supports Windows servers and workstations and the price includes a 10 user license.</figcaption></figure></figure><p>Buffalo Technology was once a main player in the business NAS appliance market but has been in danger for some time of becoming an also-ran. Its last significant product release was the TeraStation III over two years ago which was good value.</p><p>The new TeraStation Pro family of desktop appliances are the first from Buffalo to go beyond four hot-swap hard disks. Processing power also gets a boost as the TeraStation Pro is equipped with an Atom 1.66GHz D510 chip whilst memory has been increased to 2GB.</p><p>You can't buy diskless appliances, but Buffalo offers models with 8TB, 16TB and 24TB capacities. We have the 8TB model on review which uses eight Samsung HD103SI SATA disks and at just over a grand looks very good value.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="6Yo5eWB8JFStAhKszCYf5F" name="" alt="As its name suggests, the TeraStation Pro 8 Bay has eight easily accessible disk trays." src="https://cdn.mos.cms.futurecdn.net/6Yo5eWB8JFStAhKszCYf5F-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/6Yo5eWB8JFStAhKszCYf5F.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">As its name suggests, the TeraStation Pro 8 Bay has eight easily accessible disk trays. </span></figcaption></figure><p>As its name suggests, the TeraStation Pro 8 Bay has eight easily accessible disk trays.</p><p>Build quality is good with the chassis made from solid steel and the hot-swap drive bays protected by a lockable front panel. Two large cooling fans are located at the rear, but they weren't loud as we found the appliance to be very quiet during testing.</p><p>The pair of Gigabit Ethernet ports support load balanced and failover teams and there are two USB2 ports for attaching external storage devices, printers or a UPS. Oddly, you only get a pair of USB3 ports on the new TeraStation Pro 6 Bay models which uses a variation of the same chassis.</p><p>Buffalo's NASNavigator 2 utility locates the appliance on the network and provides access to shares and a quick drive mapping service. The appliance's web interface can also be accessed from here. It's nowhere near as slick as those provided by QNap or Synology. Although it provides easy access to all features we found it could be sluggish at times.</p><p>The system comes preconfigured with all disks in a RAID 6 array which provides dual-disk redundancy. If you want more storage then it's easy enough to delete this and choose from stripes, mirrors or RAID-5 and the appliance supports four separate arrays as well.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="Ridx7bQsAdKkPnBzruSdqh" name="" alt="During share creation you can decide which network services will be supported and apply user and group access restrictions." src="https://cdn.mos.cms.futurecdn.net/Ridx7bQsAdKkPnBzruSdqh-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/Ridx7bQsAdKkPnBzruSdqh.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">During share creation you can decide which network services will be supported and apply user and group access restrictions. </span></figcaption></figure><p>During share creation you can decide which network services will be supported and apply user and group access restrictions.</p><p>Quotas for controlling disk space usage are applied to users as they are created. A soft quota warns them when they are getting close to their limits and a hard quota stops them from copying anything else to the appliance.</p><p>CIFS, NFS and FTP access can be activated individually on selected shares and secure FTP transfers are also supported. An unusual feature is the ability to enable the various network services on specific network ports only.</p><p>If you want IP SANs then Buffalo would like you to use its separate TeraStation iSCSI appliance. They are not available on the TeraStation Pro, so if you want a NAS appliance with IP SAN support then consider products from QNap and Synology. These vendors' appliances all support NAS shares and iSCSI targets in the same array, iSCSI thin provisioning and CHAP access authentication.</p><p>Buffalo scores better for business backup features. The appliance comes as standard with a 10-user license for the bundled NovaBackup Business Essentials software which supports Windows workstations and servers.</p><p>It runs scheduled backups of local folders to selected shares on the appliance and can manage a combination of full, incremental and differential backups. Disaster recovery is also available as it can create boot media and run bare metal restores from the appliance.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="5Eu3rDEyrE84X4hJy7R5yA" name="" alt="The bundled NovaBackup software supports Windows servers and workstations and the price includes a 10 user license." src="https://cdn.mos.cms.futurecdn.net/5Eu3rDEyrE84X4hJy7R5yA-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/5Eu3rDEyrE84X4hJy7R5yA.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The bundled NovaBackup software supports Windows servers and workstations and the price includes a 10 user license. </span></figcaption></figure><p>The bundled NovaBackup software supports Windows servers and workstations and the price includes a 10 user license.</p><p>The Atom processor and extra memory make this appliance much faster than the Marvell equipped TeraStation III, but speeds are still well short of those delivered by QNap and Synology. We used a Dell PowerEdge R515 server running Windows Server 2008 R2 64-bit and saw drag and drop copies to a mapped share return read and write speeds of 83MB/s and 36MB/s.</p><p>FTP operations were better with the FileZilla utility reporting speeds of 99MB/s and 40MB/s respectively. Our 17.4GB collection of 10,500 small files proved to be handful as this was copied to the appliance at an average of only 20MB/s.</p><p>In contrast, the same folder was written to <a href="https://www.itpro.com/635353/qnap-ts-559-pro-ii-turbonas-review" target="_blank" data-original-url="https://www.itpro.com/635353/qnap-ts-559-pro-ii-turbonas-review">QNap's five-bay TS-559 Pro II</a> at a rate of 65MB/s. We also clocked it at 107MB/s and 96MB/s for read and write operations in our single file transfer tests.</p><p>The TeraStation Pro 8 Bay is significantly faster than its predecessor and the 8TB version is cheaper than rival appliances fitted with the same capacity hard disks.. However, the TeraStation's average performance compared to rival appliances and general lack of features makes it a poor choice if you want more than basic NAS services from your appliance.</p><p><a href="https://www.itpro.com/635656/buffalo-terastation-pro-8-bay-review" target="_blank" data-original-url="https://www.itpro.com/635656/buffalo-terastation-pro-8-bay-review">So what's our verdict?</a></p><h2 id="verdict-12">Verdict</h2><p>As a basic, high capacity NAS appliance, Buffalo's new TeraStation Pro 8 Bay is a lot cheaper than much of the competition. However, it comes up short for features when stacked up against the likes of QNap, Synology and Netgear, performance isn’t great and it doesn’t support IP SANs either.</p><p>Chassis: Desktop CPU: 1.66GHz Intel Atom D510 Memory: 2GB DDR2 Storage: 8 x 1TB Samsung HD103SI 3Gbps SATA hard disk in hot-swap carriers RAID: Software managed Array support: RAID 0, 1, 10, 5, 6, 50, 51, 60, 61, JBOD Network: 2 x Gigabit Ethernet Other ports: 2 x USB2 Management: Web browser Software: Buffalo NAS Navigator 2 and NovaBackup Business Essentials Backup (10 licenses) Part code: TS-8VH8.0TL/R6EU</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Promise Pegasus R6 review ]]></title>
                                                                                                <dc:content><![CDATA[ <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/ihKdBDfeuLg4XV95KrJ34o-1920-80.jpg" alt="The Promise Pegasus R6" /><figcaption>The Promise Pegasus R6</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/dcX5swfUreNnnK6tznwGH8-1920-80.jpg" alt="An Apple Thunderbolt cable" /><figcaption>An Apple Thunderbolt cable</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/27m7xCXWwWGXCkvV2JgV8U-1920-80.jpg" alt="The RAID 0 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks." /><figcaption>The RAID 0 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/hakM4g7Je7zNraK7D5km6L-1920-80.jpg" alt="The RAID 5 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks." /><figcaption>The RAID 5 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/GWPrvW43XuDFA7WSUdaBR8-1920-80.jpg" alt="The RAID 6 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks." /><figcaption>The RAID 6 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/kadEMhqejeccrcYRNVJ5CZ-1920-80.jpg" alt="The RAID 10 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks." /><figcaption>The RAID 10 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/E6Jbf3Kar8BnH9yZqJ2i3E-1920-80.jpg" alt="The performance of the Pegasus Promise R6 when fitted with a single 1TB 7,200rpm hard disk." /><figcaption>The performance of the Pegasus Promise R6 when fitted with a single 1TB 7,200rpm hard disk.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/PYvZJcVMtVzSQwDyuLWcuE-1920-80.jpg" alt="The RAID 0 performance of the Pegasus Promise R6 when fitted with two Kingston 240GB HyperX SSDs." /><figcaption>The RAID 0 performance of the Pegasus Promise R6 when fitted with two Kingston 240GB HyperX SSDs.</figcaption></figure></figure><p><a href="https://www.itpro.com/631453/what-is-thunderbolt-and-why-is-it-so-exciting" target="_blank" data-original-url="https://www.itpro.com/631453/what-is-thunderbolt-and-why-is-it-so-exciting">Thunderbolt has been a long time coming</a>. Although the PCI-Express-based interface for external peripherals has been available on Apple Mac laptops since February of this year, the first Thunderbolt-equipped storage peripherals are only now trickling onto the market. The Promise Pegasus R6 is the first Thunderbolt storage device to arrive and it's a beast. The R6 is a six-disk RAID storage array, so it doesn't come cheap.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="dcX5swfUreNnnK6tznwGH8" name="" alt="An Apple Thunderbolt cable" src="https://cdn.mos.cms.futurecdn.net/dcX5swfUreNnnK6tznwGH8-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/dcX5swfUreNnnK6tznwGH8.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">An Apple Thunderbolt cable </span></figcaption></figure><p>The current Apple Thunderbolt cables are so expensive since they have a Gennum transceiver and signal booster chip at each end.</p><p>Although the R6's price of 871 ex VAT will make some eyes water, it's easy to see where some of the money went. The metal case is robust and looks nice too. It's not too noisy either we only noticed its whirring hum in a quiet room. When placed next to a server underneath an air conditioner, it was barely audible. There's a second Thunderbolt port for daisy-chaining other Thunderbolt peripherals, including Apple's Thunderbolt-equipped Cinema Display. Bear in mind that a Thunderbolt cable isn't included, so you'll need to buy one from Apple for around 40 ex VAT.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="TK9DcpBEocLHZbaSPpLgfa" name="" alt="ITPRO Innovation award" src="https://cdn.mos.cms.futurecdn.net/TK9DcpBEocLHZbaSPpLgfa-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/TK9DcpBEocLHZbaSPpLgfa.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Our review sample came fitted with six 1TB 7,200rpm Hitachi Deskstar hard disks. Although various capacities and a cheaper four-disk variant are available, a diskless version sadly isn't an option. The disks themselves are screwed into four easily removable trays, so replacing a failed disk or fitting a bigger disk is very easy. The trays aren't lockable though.</p><p>The R6 supports RAID 0, 1, 5, 6 and 10. Configuring the Pegasus with your chosen RAID level is straightforward using the setup program. The interface is a bit cluttered and could do with some tidying up, but it won't faze anyone who's ever had to configure a router, server or any other storage array. It's Mac-only, just like the drivers, which isn't surprising since Thunderbolt ports have yet to appear on Windows PCs. Once configured though, the Pegasus can be used with a Windows installation virtualised under OS X using a program such as <a href="https://www.itpro.com/628492/head-to-head-parallels-desktop-6-vs-vmware-fusion-3" target="_blank" data-original-url="https://www.itpro.com/628492/head-to-head-parallels-desktop-6-vs-vmware-fusion-3">Parallels Desktop</a>.</p><p>When the Pegasus was configured using a RAID level with more data redundancy, large files performance was generally a bit slower while small files performance was a bit quicker.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="27m7xCXWwWGXCkvV2JgV8U" name="" alt="The RAID 0 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks." src="https://cdn.mos.cms.futurecdn.net/27m7xCXWwWGXCkvV2JgV8U-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/27m7xCXWwWGXCkvV2JgV8U.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The RAID 0 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks. </span></figcaption></figure><p>The Promise Pegasus R6 is incredibly fast when configured as a RAID 0 array.</p><p>To see how much of this incredible performance was due to RAID rather than the Thunderbolt interface, we also tested the Promise R6 with just a single disk fitted. In this configuration large files were written at 176MB/s and read at 122MB/s. Small files were written at 169MB/s and read at 109MB/s. Even without the benefit of RAID, a Thunderbolt-connected disk is still clearly, if not so dramatically faster, than the alternatives. USB3 disks, for example, can reach 100-120MB/s when writing large files.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="E6Jbf3Kar8BnH9yZqJ2i3E" name="" alt="The performance of the Pegasus Promise R6 when fitted with a single 1TB 7,200rpm hard disk." src="https://cdn.mos.cms.futurecdn.net/E6Jbf3Kar8BnH9yZqJ2i3E-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/E6Jbf3Kar8BnH9yZqJ2i3E.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The performance of the Pegasus Promise R6 when fitted with a single 1TB 7,200rpm hard disk. </span></figcaption></figure><p>The Promise Pegasus R6 isn't as awe-inspiringly fast when fitted with just a single disk, but it's still fast.</p><p>Although the Pegasus R6 isn't available diskless or pre-fitted with solid state disks (SSDs), we wanted to see how just fast it could copy files when fitted with SSDs. We installed a pair of 240GB Kingston HyperX SSDs configured as a RAID 0 array. Although it was faster than a hard disk configuration in almost all of our tests, it wasn't dramatically quicker. Large files were written at 576MB/s and read at 596MB/s. Small files were written and read at around 208MB/s. The hard disk configurations did have the benefit of six disks though, where as our SSD configuration used just two SSDs. In any case we can't imagine too many SSD Thunderbolt arrays in actual use, if only because of the added expense on what is already a very pricy array.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="PYvZJcVMtVzSQwDyuLWcuE" name="" alt="The RAID 0 performance of the Pegasus Promise R6 when fitted with two Kingston 240GB HyperX SSDs." src="https://cdn.mos.cms.futurecdn.net/PYvZJcVMtVzSQwDyuLWcuE-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/PYvZJcVMtVzSQwDyuLWcuE.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The RAID 0 performance of the Pegasus Promise R6 when fitted with two Kingston 240GB HyperX SSDs. </span></figcaption></figure><p>The Promise Pegasus R6 is fast when fitted with a pair of Kingston HyperX 240GB SSDs, although not as breathtakingly quick as we were expecting.</p><p><a href="https://www.itpro.com/635581/promise-pegasus-r6-review" target="_blank" data-original-url="https://www.itpro.com/635581/promise-pegasus-r6-review">So what's our verdict?</a></p><h2 id="verdict-13">Verdict</h2><p>There's no doubt that thanks to Thunderbolt, the Promise Pegasus R6 is one of the fastest storage products we have ever seen. It's also very expensive, although its price per gigabyte of 18p, while high, isn't outrageously extortionate. However, even if you have the modern Macs required to use it, you'll need to transfer and manipulate seriously massive amounts of data regularly, such as HD or 4k video files or sprawling databases, to justify its high price.</p><p>SPECIFICATIONS Chassis: Desktop Storage: 6 x 3.5in 1TB 7,200rpm SATA2 hard disks in removable disk trays (not hot swappable) Array support: RAID 0, 1, 5, 6, 10 Network: 2 x Thundebolt Other ports: 1 x serial port Management: Promise Utility 3.16 Price per gigabyte: 18p Power consumption Idle 42W Active 50W BENCHMARKS RAID 0 Large write 590MB/s Large read 499MB/s Large average 545MB/s Small write 196.9MB/s Small read 104MB/s Small average 150.5MB/s RAID 5 Large write 482MB/s Large read 374MB/s Large average 428MB/s Small write 220MB/s Small read 111MB/s Small average 165.5MB/s RAID 6 Large write 494MB/s Large read 250MB/s Large average 372MB/s Small write 185MB/s Small read 113MB/s Small average 149MB/s RAID 10 Large write 344MB/s Large read 228MB/s Large average 286MB/s Small write 141MB/s Small read 148MB/s Small average 144.5MB/s SINGLE DISK Large write 176MB/s Large read 122MB/s Large average 149MB/s Small write 169MB/s Small read 109MB/s Small average 139MB/s RAID 0 SSD Large write 576MB/s Large read 596MB/s Large average 586MB/s Small write 209MB/s Small read 208MB/s Small average 208.5MB/s</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/635581/promise-pegasus-r6-review</link>
                                                                            <description>
                            <![CDATA[ The first Thunderbolt storage array is finally here and it blitzes through our benchmarks at astonishing speeds. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">shMyrdzyv7wu4t86x4HxUp</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/ihKdBDfeuLg4XV95KrJ34o-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Mon, 15 Aug 2011 16:22:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Alan Lu ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/ihKdBDfeuLg4XV95KrJ34o-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                        <media:description><![CDATA[An Apple Thunderbolt cable]]></media:description>                                                            <media:text><![CDATA[The Promise Pegasus R6]]></media:text>
                                <media:title type="plain"><![CDATA[The Promise Pegasus R6]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/ihKdBDfeuLg4XV95KrJ34o-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/ihKdBDfeuLg4XV95KrJ34o-1920-80.jpg" alt="The Promise Pegasus R6" /><figcaption>The Promise Pegasus R6</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/dcX5swfUreNnnK6tznwGH8-1920-80.jpg" alt="An Apple Thunderbolt cable" /><figcaption>An Apple Thunderbolt cable</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/27m7xCXWwWGXCkvV2JgV8U-1920-80.jpg" alt="The RAID 0 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks." /><figcaption>The RAID 0 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/hakM4g7Je7zNraK7D5km6L-1920-80.jpg" alt="The RAID 5 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks." /><figcaption>The RAID 5 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/GWPrvW43XuDFA7WSUdaBR8-1920-80.jpg" alt="The RAID 6 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks." /><figcaption>The RAID 6 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/kadEMhqejeccrcYRNVJ5CZ-1920-80.jpg" alt="The RAID 10 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks." /><figcaption>The RAID 10 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/E6Jbf3Kar8BnH9yZqJ2i3E-1920-80.jpg" alt="The performance of the Pegasus Promise R6 when fitted with a single 1TB 7,200rpm hard disk." /><figcaption>The performance of the Pegasus Promise R6 when fitted with a single 1TB 7,200rpm hard disk.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/PYvZJcVMtVzSQwDyuLWcuE-1920-80.jpg" alt="The RAID 0 performance of the Pegasus Promise R6 when fitted with two Kingston 240GB HyperX SSDs." /><figcaption>The RAID 0 performance of the Pegasus Promise R6 when fitted with two Kingston 240GB HyperX SSDs.</figcaption></figure></figure><p><a href="https://www.itpro.com/631453/what-is-thunderbolt-and-why-is-it-so-exciting" target="_blank" data-original-url="https://www.itpro.com/631453/what-is-thunderbolt-and-why-is-it-so-exciting">Thunderbolt has been a long time coming</a>. Although the PCI-Express-based interface for external peripherals has been available on Apple Mac laptops since February of this year, the first Thunderbolt-equipped storage peripherals are only now trickling onto the market. The Promise Pegasus R6 is the first Thunderbolt storage device to arrive and it's a beast. The R6 is a six-disk RAID storage array, so it doesn't come cheap.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="dcX5swfUreNnnK6tznwGH8" name="" alt="An Apple Thunderbolt cable" src="https://cdn.mos.cms.futurecdn.net/dcX5swfUreNnnK6tznwGH8-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/dcX5swfUreNnnK6tznwGH8.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">An Apple Thunderbolt cable </span></figcaption></figure><p>The current Apple Thunderbolt cables are so expensive since they have a Gennum transceiver and signal booster chip at each end.</p><p>Although the R6's price of 871 ex VAT will make some eyes water, it's easy to see where some of the money went. The metal case is robust and looks nice too. It's not too noisy either we only noticed its whirring hum in a quiet room. When placed next to a server underneath an air conditioner, it was barely audible. There's a second Thunderbolt port for daisy-chaining other Thunderbolt peripherals, including Apple's Thunderbolt-equipped Cinema Display. Bear in mind that a Thunderbolt cable isn't included, so you'll need to buy one from Apple for around 40 ex VAT.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="TK9DcpBEocLHZbaSPpLgfa" name="" alt="ITPRO Innovation award" src="https://cdn.mos.cms.futurecdn.net/TK9DcpBEocLHZbaSPpLgfa-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/TK9DcpBEocLHZbaSPpLgfa.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Our review sample came fitted with six 1TB 7,200rpm Hitachi Deskstar hard disks. Although various capacities and a cheaper four-disk variant are available, a diskless version sadly isn't an option. The disks themselves are screwed into four easily removable trays, so replacing a failed disk or fitting a bigger disk is very easy. The trays aren't lockable though.</p><p>The R6 supports RAID 0, 1, 5, 6 and 10. Configuring the Pegasus with your chosen RAID level is straightforward using the setup program. The interface is a bit cluttered and could do with some tidying up, but it won't faze anyone who's ever had to configure a router, server or any other storage array. It's Mac-only, just like the drivers, which isn't surprising since Thunderbolt ports have yet to appear on Windows PCs. Once configured though, the Pegasus can be used with a Windows installation virtualised under OS X using a program such as <a href="https://www.itpro.com/628492/head-to-head-parallels-desktop-6-vs-vmware-fusion-3" target="_blank" data-original-url="https://www.itpro.com/628492/head-to-head-parallels-desktop-6-vs-vmware-fusion-3">Parallels Desktop</a>.</p><p>When the Pegasus was configured using a RAID level with more data redundancy, large files performance was generally a bit slower while small files performance was a bit quicker.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="27m7xCXWwWGXCkvV2JgV8U" name="" alt="The RAID 0 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks." src="https://cdn.mos.cms.futurecdn.net/27m7xCXWwWGXCkvV2JgV8U-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/27m7xCXWwWGXCkvV2JgV8U.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The RAID 0 performance of the Pegasus Promise R6 when fitted with six 1TB 7,200rpm hard disks. </span></figcaption></figure><p>The Promise Pegasus R6 is incredibly fast when configured as a RAID 0 array.</p><p>To see how much of this incredible performance was due to RAID rather than the Thunderbolt interface, we also tested the Promise R6 with just a single disk fitted. In this configuration large files were written at 176MB/s and read at 122MB/s. Small files were written at 169MB/s and read at 109MB/s. Even without the benefit of RAID, a Thunderbolt-connected disk is still clearly, if not so dramatically faster, than the alternatives. USB3 disks, for example, can reach 100-120MB/s when writing large files.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="E6Jbf3Kar8BnH9yZqJ2i3E" name="" alt="The performance of the Pegasus Promise R6 when fitted with a single 1TB 7,200rpm hard disk." src="https://cdn.mos.cms.futurecdn.net/E6Jbf3Kar8BnH9yZqJ2i3E-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/E6Jbf3Kar8BnH9yZqJ2i3E.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The performance of the Pegasus Promise R6 when fitted with a single 1TB 7,200rpm hard disk. </span></figcaption></figure><p>The Promise Pegasus R6 isn't as awe-inspiringly fast when fitted with just a single disk, but it's still fast.</p><p>Although the Pegasus R6 isn't available diskless or pre-fitted with solid state disks (SSDs), we wanted to see how just fast it could copy files when fitted with SSDs. We installed a pair of 240GB Kingston HyperX SSDs configured as a RAID 0 array. Although it was faster than a hard disk configuration in almost all of our tests, it wasn't dramatically quicker. Large files were written at 576MB/s and read at 596MB/s. Small files were written and read at around 208MB/s. The hard disk configurations did have the benefit of six disks though, where as our SSD configuration used just two SSDs. In any case we can't imagine too many SSD Thunderbolt arrays in actual use, if only because of the added expense on what is already a very pricy array.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="PYvZJcVMtVzSQwDyuLWcuE" name="" alt="The RAID 0 performance of the Pegasus Promise R6 when fitted with two Kingston 240GB HyperX SSDs." src="https://cdn.mos.cms.futurecdn.net/PYvZJcVMtVzSQwDyuLWcuE-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/PYvZJcVMtVzSQwDyuLWcuE.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The RAID 0 performance of the Pegasus Promise R6 when fitted with two Kingston 240GB HyperX SSDs. </span></figcaption></figure><p>The Promise Pegasus R6 is fast when fitted with a pair of Kingston HyperX 240GB SSDs, although not as breathtakingly quick as we were expecting.</p><p><a href="https://www.itpro.com/635581/promise-pegasus-r6-review" target="_blank" data-original-url="https://www.itpro.com/635581/promise-pegasus-r6-review">So what's our verdict?</a></p><h2 id="verdict-13">Verdict</h2><p>There's no doubt that thanks to Thunderbolt, the Promise Pegasus R6 is one of the fastest storage products we have ever seen. It's also very expensive, although its price per gigabyte of 18p, while high, isn't outrageously extortionate. However, even if you have the modern Macs required to use it, you'll need to transfer and manipulate seriously massive amounts of data regularly, such as HD or 4k video files or sprawling databases, to justify its high price.</p><p>SPECIFICATIONS Chassis: Desktop Storage: 6 x 3.5in 1TB 7,200rpm SATA2 hard disks in removable disk trays (not hot swappable) Array support: RAID 0, 1, 5, 6, 10 Network: 2 x Thundebolt Other ports: 1 x serial port Management: Promise Utility 3.16 Price per gigabyte: 18p Power consumption Idle 42W Active 50W BENCHMARKS RAID 0 Large write 590MB/s Large read 499MB/s Large average 545MB/s Small write 196.9MB/s Small read 104MB/s Small average 150.5MB/s RAID 5 Large write 482MB/s Large read 374MB/s Large average 428MB/s Small write 220MB/s Small read 111MB/s Small average 165.5MB/s RAID 6 Large write 494MB/s Large read 250MB/s Large average 372MB/s Small write 185MB/s Small read 113MB/s Small average 149MB/s RAID 10 Large write 344MB/s Large read 228MB/s Large average 286MB/s Small write 141MB/s Small read 148MB/s Small average 144.5MB/s SINGLE DISK Large write 176MB/s Large read 122MB/s Large average 149MB/s Small write 169MB/s Small read 109MB/s Small average 139MB/s RAID 0 SSD Large write 576MB/s Large read 596MB/s Large average 586MB/s Small write 209MB/s Small read 208MB/s Small average 208.5MB/s</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ QNap TS-559 Pro II TurboNAS review ]]></title>
                                                                                                <dc:content><![CDATA[ <p>There's never a dull moment in the desktop NAS appliance market with each vendor constantly trying to outdo the others for features. QNap's latest TS-x59 Pro II range consists of three new desktop models and are the first to support 6Gbit/s SATA hard disks and have USB3 ports.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="wbG3rADo2Kumw874ByTnyV" name="" alt="ITPRO Recommended award" src="https://cdn.mos.cms.futurecdn.net/wbG3rADo2Kumw874ByTnyV-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/wbG3rADo2Kumw874ByTnyV.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>QNap has also pushed ahead with its support for cloud services as, along with Amazon's S3 hosted backup, you now have support for the ElephantDrive service which Netgear teamed up with some time ago with its ReadyNAS appliances. However, QNap goes a step further with its MyCloudNAS service which allows you to use the appliance to provide your own secure cloud backup, multimedia and file sharing services to remote workers.</p><p>The TS-559 Pro II uses the same 1.8GHz dual-core Atom D525 processor as the older Pro+ model but you can now expand memory. The appliance has 1GB which can be upgraded to 3GB using an extra SO-DIMM module. It's easy enough to achieve as you just remove the main cover where you'll find the extra slot easily accessible.</p><p>Physically, the TS-559 Pro II is virtually identical to its predecessor as the only external differences are the blue USB3 ports on the front and rear. Along with these you have dual Gigabit Ethernet, four USB2 and a couple of eSATA ports.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="wm2mYfARD353sG2BKxRhGU" name="" alt="The rear of the QNap TS-559 Pro II TurboNAS" src="https://cdn.mos.cms.futurecdn.net/wm2mYfARD353sG2BKxRhGU-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/wm2mYfARD353sG2BKxRhGU.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>QNap's TS-559 Pro II is one of the first NAS devices to have USB3 ports.</p><p>Installation is simple as QNap's Finder utility locates the appliance on the network and offers quick access to its well designed web interface. This provides a side menu listing all features and selecting one shows all its details in the main window alongside.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="bhNn8H79ffxN7hk66AhEhC" name="" alt="QNap’s web interface is well-designed and provides easy access to the myriad features." src="https://cdn.mos.cms.futurecdn.net/bhNn8H79ffxN7hk66AhEhC-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/bhNn8H79ffxN7hk66AhEhC.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>QNap's web interface is well-designed and provides easy access to the myriad features.</p><p>The MyCloudNAS service is hosted by QNap which manages host name registration and dynamic DNS mapping for the appliance's services. A wizard takes you through the process where you provide a unique hostname and enable the services you want to publish.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="MsbXuQ7y5tQXUFzeZyZwAi" name="" alt="The MyCloudNAS service is supposed to work automatically with UPnP routers, but may require port forwarding rules to be creat" src="https://cdn.mos.cms.futurecdn.net/MsbXuQ7y5tQXUFzeZyZwAi-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/MsbXuQ7y5tQXUFzeZyZwAi.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The MyCloudNAS service is supposed to work automatically with UPnP routers, but may require port forwarding rules to be created manually.</p><p>It claimed to have succeeded with our Linksys WAG160N wireless router but when we tried to access the services they failed to load. Our solution was to manually add the relevant port forwarding rules to our router after which the services became accessible. Along with username and password access for each service you can also enable HTTPS only for better security.</p><p>There are plenty more features to play with as the appliance runs iTunes and UPnP media servers while the Multimedia Station can be used for publishing photos, videos and music in web galleries. The Web File Manager can be used to upload and download files from a browser interface, plus the appliance can host your own web sites.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="GGaoc2RZEKywquqke27Jbf" name="" alt="Using MyCloudNAS allowed us to present the Web File Manager and Multimedia Station to remote users." src="https://cdn.mos.cms.futurecdn.net/GGaoc2RZEKywquqke27Jbf-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/GGaoc2RZEKywquqke27Jbf.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Using MyCloudNAS allowed us to present the Web File Manager and Multimedia Station to remote users.</p><p>A good range of backup features are also provided with NetBak Replicator software running scheduled backups of Windows workstations and servers. Along with the cloud backup services, there's also support for Rsync servers for remote replication.</p><p>For real world testing we loaded five 1TB SATA drives and created a RAID-5 array which took around six hours to build. Our performance tests show that standard 3Gbit/ss SATA2 disks are quite capable of delivering the goods.</p><p>We used a Dell PowerEdge R515 server running Windows Server 2008 R2 64-bit and saw drag and drop copies to a mapped share return read and write speeds of 107.5MB/s and 96MB/s. FTP operations were slightly faster with the FileZilla utility reporting speeds of 108MB/s and 103MB/s respectively.</p><p>Using the Dell server and a Broadberry dual X5560 Xeon server running the same OS, we mapped separate shares to them and ran Iometer on each one. After settling down, we saw an impressive cumulative raw read rate of 224MB/s.</p><p>IP SAN features are good as all QNap appliances support iSCSI thin provisioning which allows targets to be created that only use a small amount of space on the appliance, but appear much larger to the host. As more data is stored on the target, the appliance dynamically allocates extra space to it. Performance is good as well with a 50GB target returning a high raw read speed of 112MB/s.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="ZS5o3XuSiYGqHCtEaEkoWj" name="" alt="IP SAN services come as standard and the appliance supports iSCSI thin provisioning as well." src="https://cdn.mos.cms.futurecdn.net/ZS5o3XuSiYGqHCtEaEkoWj-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/ZS5o3XuSiYGqHCtEaEkoWj.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>IP SAN services come as standard and the appliance supports iSCSI thin provisioning as well.</p><p>For USB3 speed testing we inserted a Super Talent Express Drive Duo flash drive into the front port of the appliance and ran copy tests between this and a mapped share. Copying the test video clip to the share returned a read rate of 36MB/s and copying it back to the USB3 stick averaged a 16MB/s write speed. To put these results in perspective we ran the same copies using a USB2 flash drive which delivered read and write speeds of 20MB/s and 5MB/s.</p><p>For a five-bay desktop NAS appliance the TS-559 Pro II is competitively priced and has an excellent range of storage features. The USB3 ports improve backup speeds significantly and QNap's new cloud backup and file sharing services currently puts it one up over the competition.</p><p><a href="https://www.itpro.com/635353/qnap-ts-559-pro-ii-turbonas-review" target="_blank" data-original-url="https://www.itpro.com/635353/qnap-ts-559-pro-ii-turbonas-review">So what's our verdict?</a></p><h2 id="verdict-14">Verdict</h2><p>QNap's new TS-559 Pro II combines an excellent range of storage features with lightning fast performance. The USB3 ports also perform very well and will make significant improvements if you're backing up to external storage devices. Small businesses especially will appreciate QNap’s free MyCloudNAS service for providing secure remote access to resources.</p><p>Chassis: Desktop CPU: 1.8GHz Intel Atom D525 Memory: 1GB DDR2 expandable to 3GB, 512MB DOM Storage: 5 x 3.5in.or 2.5in SATA2/SATA3 hard disk hot-swap bays RAID: Software managed Array support: RAID 0, 1, 5, 6, 5 + hotspare, JBOD Network: 2 x Gigabit Ethernet Other ports: 2 x USB3, 4 x USB2, 2 x eSATA Management: Web browser Software: QNap Finder, NetBak Replicator and Qget software bundled</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/635353/qnap-ts-559-pro-ii-turbonas-review</link>
                                                                            <description>
                            <![CDATA[ QNap's next generation of NAS appliances support SATA3 hard disks, have USB3 ports and support some interesting cloud backup services. Dave Mitchell puts the five bay TS-559 Pro II on test and sees whether it's the small business storage host with the most. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">4TVsk9MucaPzJwsGZya6Nr</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/sMFLuJoDmsuYaAsLe36Wo8-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Tue, 02 Aug 2011 11:10:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/sMFLuJoDmsuYaAsLe36Wo8-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[The QNap TS-559 Pro II TurboNAS]]></media:description>                                                            <media:text><![CDATA[The QNap TS-559 Pro II TurboNAS]]></media:text>
                                <media:title type="plain"><![CDATA[The QNap TS-559 Pro II TurboNAS]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/sMFLuJoDmsuYaAsLe36Wo8-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>There's never a dull moment in the desktop NAS appliance market with each vendor constantly trying to outdo the others for features. QNap's latest TS-x59 Pro II range consists of three new desktop models and are the first to support 6Gbit/s SATA hard disks and have USB3 ports.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="wbG3rADo2Kumw874ByTnyV" name="" alt="ITPRO Recommended award" src="https://cdn.mos.cms.futurecdn.net/wbG3rADo2Kumw874ByTnyV-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/wbG3rADo2Kumw874ByTnyV.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>QNap has also pushed ahead with its support for cloud services as, along with Amazon's S3 hosted backup, you now have support for the ElephantDrive service which Netgear teamed up with some time ago with its ReadyNAS appliances. However, QNap goes a step further with its MyCloudNAS service which allows you to use the appliance to provide your own secure cloud backup, multimedia and file sharing services to remote workers.</p><p>The TS-559 Pro II uses the same 1.8GHz dual-core Atom D525 processor as the older Pro+ model but you can now expand memory. The appliance has 1GB which can be upgraded to 3GB using an extra SO-DIMM module. It's easy enough to achieve as you just remove the main cover where you'll find the extra slot easily accessible.</p><p>Physically, the TS-559 Pro II is virtually identical to its predecessor as the only external differences are the blue USB3 ports on the front and rear. Along with these you have dual Gigabit Ethernet, four USB2 and a couple of eSATA ports.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="wm2mYfARD353sG2BKxRhGU" name="" alt="The rear of the QNap TS-559 Pro II TurboNAS" src="https://cdn.mos.cms.futurecdn.net/wm2mYfARD353sG2BKxRhGU-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/wm2mYfARD353sG2BKxRhGU.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>QNap's TS-559 Pro II is one of the first NAS devices to have USB3 ports.</p><p>Installation is simple as QNap's Finder utility locates the appliance on the network and offers quick access to its well designed web interface. This provides a side menu listing all features and selecting one shows all its details in the main window alongside.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="bhNn8H79ffxN7hk66AhEhC" name="" alt="QNap’s web interface is well-designed and provides easy access to the myriad features." src="https://cdn.mos.cms.futurecdn.net/bhNn8H79ffxN7hk66AhEhC-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/bhNn8H79ffxN7hk66AhEhC.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>QNap's web interface is well-designed and provides easy access to the myriad features.</p><p>The MyCloudNAS service is hosted by QNap which manages host name registration and dynamic DNS mapping for the appliance's services. A wizard takes you through the process where you provide a unique hostname and enable the services you want to publish.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="MsbXuQ7y5tQXUFzeZyZwAi" name="" alt="The MyCloudNAS service is supposed to work automatically with UPnP routers, but may require port forwarding rules to be creat" src="https://cdn.mos.cms.futurecdn.net/MsbXuQ7y5tQXUFzeZyZwAi-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/MsbXuQ7y5tQXUFzeZyZwAi.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The MyCloudNAS service is supposed to work automatically with UPnP routers, but may require port forwarding rules to be created manually.</p><p>It claimed to have succeeded with our Linksys WAG160N wireless router but when we tried to access the services they failed to load. Our solution was to manually add the relevant port forwarding rules to our router after which the services became accessible. Along with username and password access for each service you can also enable HTTPS only for better security.</p><p>There are plenty more features to play with as the appliance runs iTunes and UPnP media servers while the Multimedia Station can be used for publishing photos, videos and music in web galleries. The Web File Manager can be used to upload and download files from a browser interface, plus the appliance can host your own web sites.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="GGaoc2RZEKywquqke27Jbf" name="" alt="Using MyCloudNAS allowed us to present the Web File Manager and Multimedia Station to remote users." src="https://cdn.mos.cms.futurecdn.net/GGaoc2RZEKywquqke27Jbf-1920-80.png" mos="https://cdn.mos.cms.futurecdn.net/GGaoc2RZEKywquqke27Jbf.png" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Using MyCloudNAS allowed us to present the Web File Manager and Multimedia Station to remote users.</p><p>A good range of backup features are also provided with NetBak Replicator software running scheduled backups of Windows workstations and servers. Along with the cloud backup services, there's also support for Rsync servers for remote replication.</p><p>For real world testing we loaded five 1TB SATA drives and created a RAID-5 array which took around six hours to build. Our performance tests show that standard 3Gbit/ss SATA2 disks are quite capable of delivering the goods.</p><p>We used a Dell PowerEdge R515 server running Windows Server 2008 R2 64-bit and saw drag and drop copies to a mapped share return read and write speeds of 107.5MB/s and 96MB/s. FTP operations were slightly faster with the FileZilla utility reporting speeds of 108MB/s and 103MB/s respectively.</p><p>Using the Dell server and a Broadberry dual X5560 Xeon server running the same OS, we mapped separate shares to them and ran Iometer on each one. After settling down, we saw an impressive cumulative raw read rate of 224MB/s.</p><p>IP SAN features are good as all QNap appliances support iSCSI thin provisioning which allows targets to be created that only use a small amount of space on the appliance, but appear much larger to the host. As more data is stored on the target, the appliance dynamically allocates extra space to it. Performance is good as well with a 50GB target returning a high raw read speed of 112MB/s.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="ZS5o3XuSiYGqHCtEaEkoWj" name="" alt="IP SAN services come as standard and the appliance supports iSCSI thin provisioning as well." src="https://cdn.mos.cms.futurecdn.net/ZS5o3XuSiYGqHCtEaEkoWj-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/ZS5o3XuSiYGqHCtEaEkoWj.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>IP SAN services come as standard and the appliance supports iSCSI thin provisioning as well.</p><p>For USB3 speed testing we inserted a Super Talent Express Drive Duo flash drive into the front port of the appliance and ran copy tests between this and a mapped share. Copying the test video clip to the share returned a read rate of 36MB/s and copying it back to the USB3 stick averaged a 16MB/s write speed. To put these results in perspective we ran the same copies using a USB2 flash drive which delivered read and write speeds of 20MB/s and 5MB/s.</p><p>For a five-bay desktop NAS appliance the TS-559 Pro II is competitively priced and has an excellent range of storage features. The USB3 ports improve backup speeds significantly and QNap's new cloud backup and file sharing services currently puts it one up over the competition.</p><p><a href="https://www.itpro.com/635353/qnap-ts-559-pro-ii-turbonas-review" target="_blank" data-original-url="https://www.itpro.com/635353/qnap-ts-559-pro-ii-turbonas-review">So what's our verdict?</a></p><h2 id="verdict-14">Verdict</h2><p>QNap's new TS-559 Pro II combines an excellent range of storage features with lightning fast performance. The USB3 ports also perform very well and will make significant improvements if you're backing up to external storage devices. Small businesses especially will appreciate QNap’s free MyCloudNAS service for providing secure remote access to resources.</p><p>Chassis: Desktop CPU: 1.8GHz Intel Atom D525 Memory: 1GB DDR2 expandable to 3GB, 512MB DOM Storage: 5 x 3.5in.or 2.5in SATA2/SATA3 hard disk hot-swap bays RAID: Software managed Array support: RAID 0, 1, 5, 6, 5 + hotspare, JBOD Network: 2 x Gigabit Ethernet Other ports: 2 x USB3, 4 x USB2, 2 x eSATA Management: Web browser Software: QNap Finder, NetBak Replicator and Qget software bundled</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Synology RackStation RS2211+ review ]]></title>
                                                                                                <dc:content><![CDATA[ <p>Many NAS appliance vendors are now making rack mounted appliances, but some seem to have forgotten that expansion is a key business requirement. Not so with Synology as its latest RackStation RS2211+ can be linked to an RX1211 expansion shelf with 12 drive bays via a high performance Infiniband port.</p><p>The RackStation RS2211+ can be linked to an RX1211 expansion shelf with 12 drive bays via a high performance Infiniband port</p><p>The main unit has ten hot-swap drive bays so this dynamic duo allows capacity to be pushed to an impressive 66TB, although the latest 6Gbit/s SATA disks aren't yet to supported. We tested the RS2211+ and RX1211 together in this review, but for full power redundancy, Synology offers RS2211RP+ and RX1211RP combos which both have dual hot-plug power supplies.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="GGTgtQXTWh5XnWT2mRJGDZ" name="" alt="ITPRO Value award" src="https://cdn.mos.cms.futurecdn.net/GGTgtQXTWh5XnWT2mRJGDZ-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/GGTgtQXTWh5XnWT2mRJGDZ.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The SATA interfaces are cabled directly to the hard disk backplane and the Infiniband expansion port is hard wired at the back. The appliance has a 1.8GHz dual-core Atom processor and a spare SODIMM socket allows the standard 1GB of DDR2 memory to be increased to 3GB.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="2XDpexUdwYAGNQ2KupGPff" name="" alt="The rear of the Synology RackStation RS2211+" src="https://cdn.mos.cms.futurecdn.net/2XDpexUdwYAGNQ2KupGPff-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/2XDpexUdwYAGNQ2KupGPff.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>A point worth highlighting is that the Infiniband connection represents a single point of failure. Higher-end appliances such as <a href="https://www.itpro.com/633796/hp-storageworks-p2000-g3-review" target="_blank" data-original-url="https://www.itpro.com/633796/hp-storageworks-p2000-g3-review">HP's P2000 G3</a> use dual RAID controllers with redundant SAS ports for expansion shelves, although these do cost many times more than the RS2211+.</p><p>Installation follows the same path as all other Synology appliances where an Assistant utility finds the appliance on the network and loads the DSM (Disk Station Manager) software for you. Array setup comes next and for testing we loaded four 1TB WD SATA disks and created a RAID 5 array.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="UmcJRvgKV3zAPcGVvdGF8G" name="" alt="Synology’s slick web management interface provides easy access to all features and can be customised using drag and drop." src="https://cdn.mos.cms.futurecdn.net/UmcJRvgKV3zAPcGVvdGF8G-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/UmcJRvgKV3zAPcGVvdGF8G.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Synology's slick web management interface provides easy access to all features and can be customised using drag and drop.</p><p>The RS2211+ delivered superb results in our real world performance tests. Using a Dell PowerEdge R515 rack server running Windows Server 2008 R2 64-bit, we saw drag and drop copies of a 2.52GB video clip over Gigabit Ethernet return read and write speeds of 103MB/s and 92MB/s respectively.</p><p>The RS2211+ delivered superb results in our real world performance tests.</p><p>FTP speeds were even better with the FileZilla client reporting read and write speeds of 107MB/s and 105MB/s for the same test file. It also handled our 17.4GB collection of 10,500 files well with this folder copied to the appliance at an average of 58MB/s.</p><p>To test Infiniband speeds we connected the RX1211 expansion shelf with three 2TB SATA disks loaded. As soon as it was powered up they popped up in the DSM's Storage Manager interface where we created a separate RAID-5 array.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="4i8TMhvc527DLZJAYvFN3U" name="" alt="After connecting the RX1211 expansion shelf all its drives appeared in the management interface ready for configuration." src="https://cdn.mos.cms.futurecdn.net/4i8TMhvc527DLZJAYvFN3U-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/4i8TMhvc527DLZJAYvFN3U.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>After connecting the RX1211 expansion shelf all its drives appeared in the management interface ready for configuration.</p><p>Running the same copy and FTP tests returned identical speeds showing the Infiniband connection had no adverse impact on performance. In our review of <a href="https://www.itpro.com/628294/synology-rackstation-rs810rp-review" target="_blank" data-original-url="https://www.itpro.com/628294/synology-rackstation-rs810rp-review">Synology's RS810RP+</a>, we tested performance of the eSATA equipped RX410 expansion unit and saw a drop in read performance over this link of nearly 20 per cent.</p><p>IP SAN features are good with target support for the RS2211+ increased to 32. The appliance also supports iSCSI thin provisioning which allows targets to be created that only use a small amount of space on the appliance, but appear much larger to the host. As more data is stored on the target, the appliance dynamically allocates extra space to it. When you reach the limits of physical capacity you can add more drives and increase the size of the physical volume the target resides on.</p><p>Synology provides some of the best IP camera recording features with the Surveillance Station 5 improved to support IE, Firefox and Google Chrome. A search tool finds your IP cameras on the network and it supports scheduled recordings and motion detection too.</p><p>Backup features are reasonable, although the bundled Data Replicator 3 is now looking a bit dated. However, the appliance offers scheduled backups of local data to external USB devices, other Synology appliances or Rsync compatible servers and integrates with Amazon's S3 remote backup service.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="reo2WViKq2BprSPYGUhrLm" name="" alt="Synology’s Time Backup provides a simple snapshot service that allows multiple file copies to be retained." src="https://cdn.mos.cms.futurecdn.net/reo2WViKq2BprSPYGUhrLm-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/reo2WViKq2BprSPYGUhrLm.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Synology's Time Backup provides a simple snapshot service that allows multiple file copies to be retained.</p><p>Snapshots are handled by the Time Backup add-on package which has finally come out of beta testing. This automates snapshots of selected folders to another volume on the appliance or external device. A file version history is viewed from the Timeline screen where you can select one and restore it to its original location or a new destination.</p><p>The RS2211+ scores highly over rival rack mount NAS appliances from Thecus, QNap and Netgear which don't have any worthwhile expansion capabilities. Synology's Infiniband link is a single point of failure but it clearly has no impact on performance and the high maximum capacity makes the RS2211+ a far better choice for SMBs.</p><p><a href="https://www.itpro.com/635242/synology-rackstation-rs2211-review" target="_blank" data-original-url="https://www.itpro.com/635242/synology-rackstation-rs2211-review">So what's our verdict?</a></p><h2 id="verdict-15">Verdict</h2><p>Synology’s RS2211+ is very good value when stacked up against similar rack appliances from Thecus, Qnap and Netgear. Its superior expansion potential makes it a better choice for businesses with big plans for the future and our tests show the Infiniband connection has no detrimental impact on performance. Synology also packs in plenty of features and offers some of the best IP SAN features in this class.</p><p>Chassis: 2U rack CPU: 1.8GHz Intel Atom D525 Memory: 1GB DDR2 expandable to 3GB Storage: 10 x 3.5in.or 2.5in SATA hard disk hot-swap bays RAID: Software managed Array support: RAID 0, 1, 5, 6, Hybrid, hot-spare and JBODs Network: 2 x Gigabit Ethernet Other ports: 4 x USB2, Infiniband Management: Web browser Software: Synology Assistant, Download Redirector and Data Replicator 3 Options: RX1211, £864; RS2211RP+, £1,514; RX1211RP, £1,328 (all ex VAT)</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/635242/synology-rackstation-rs2211-review</link>
                                                                            <description>
                            <![CDATA[ Synology gets serious about expansion as its new RS2211+ is the first to use an Infiniband connection and can scale to an impressive 66TB. Dave Mitchell finds out if it's a good choice as a rack mount NAS appliance for businesses. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">uRowfjsBk2VcSb78nwdFDm</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/3kTHsWC8hMPYQrLVNxLtWc-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Wed, 27 Jul 2011 16:18:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Servers & Storage]]></category>
                                                    <category><![CDATA[Infrastructure]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/3kTHsWC8hMPYQrLVNxLtWc-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[The Synology RackStation RS2211+]]></media:description>                                                            <media:text><![CDATA[The Synology RackStation RS2211+]]></media:text>
                                <media:title type="plain"><![CDATA[The Synology RackStation RS2211+]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/3kTHsWC8hMPYQrLVNxLtWc-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Many NAS appliance vendors are now making rack mounted appliances, but some seem to have forgotten that expansion is a key business requirement. Not so with Synology as its latest RackStation RS2211+ can be linked to an RX1211 expansion shelf with 12 drive bays via a high performance Infiniband port.</p><p>The RackStation RS2211+ can be linked to an RX1211 expansion shelf with 12 drive bays via a high performance Infiniband port</p><p>The main unit has ten hot-swap drive bays so this dynamic duo allows capacity to be pushed to an impressive 66TB, although the latest 6Gbit/s SATA disks aren't yet to supported. We tested the RS2211+ and RX1211 together in this review, but for full power redundancy, Synology offers RS2211RP+ and RX1211RP combos which both have dual hot-plug power supplies.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="GGTgtQXTWh5XnWT2mRJGDZ" name="" alt="ITPRO Value award" src="https://cdn.mos.cms.futurecdn.net/GGTgtQXTWh5XnWT2mRJGDZ-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/GGTgtQXTWh5XnWT2mRJGDZ.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The SATA interfaces are cabled directly to the hard disk backplane and the Infiniband expansion port is hard wired at the back. The appliance has a 1.8GHz dual-core Atom processor and a spare SODIMM socket allows the standard 1GB of DDR2 memory to be increased to 3GB.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="2XDpexUdwYAGNQ2KupGPff" name="" alt="The rear of the Synology RackStation RS2211+" src="https://cdn.mos.cms.futurecdn.net/2XDpexUdwYAGNQ2KupGPff-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/2XDpexUdwYAGNQ2KupGPff.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>A point worth highlighting is that the Infiniband connection represents a single point of failure. Higher-end appliances such as <a href="https://www.itpro.com/633796/hp-storageworks-p2000-g3-review" target="_blank" data-original-url="https://www.itpro.com/633796/hp-storageworks-p2000-g3-review">HP's P2000 G3</a> use dual RAID controllers with redundant SAS ports for expansion shelves, although these do cost many times more than the RS2211+.</p><p>Installation follows the same path as all other Synology appliances where an Assistant utility finds the appliance on the network and loads the DSM (Disk Station Manager) software for you. Array setup comes next and for testing we loaded four 1TB WD SATA disks and created a RAID 5 array.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="UmcJRvgKV3zAPcGVvdGF8G" name="" alt="Synology’s slick web management interface provides easy access to all features and can be customised using drag and drop." src="https://cdn.mos.cms.futurecdn.net/UmcJRvgKV3zAPcGVvdGF8G-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/UmcJRvgKV3zAPcGVvdGF8G.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Synology's slick web management interface provides easy access to all features and can be customised using drag and drop.</p><p>The RS2211+ delivered superb results in our real world performance tests. Using a Dell PowerEdge R515 rack server running Windows Server 2008 R2 64-bit, we saw drag and drop copies of a 2.52GB video clip over Gigabit Ethernet return read and write speeds of 103MB/s and 92MB/s respectively.</p><p>The RS2211+ delivered superb results in our real world performance tests.</p><p>FTP speeds were even better with the FileZilla client reporting read and write speeds of 107MB/s and 105MB/s for the same test file. It also handled our 17.4GB collection of 10,500 files well with this folder copied to the appliance at an average of 58MB/s.</p><p>To test Infiniband speeds we connected the RX1211 expansion shelf with three 2TB SATA disks loaded. As soon as it was powered up they popped up in the DSM's Storage Manager interface where we created a separate RAID-5 array.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="4i8TMhvc527DLZJAYvFN3U" name="" alt="After connecting the RX1211 expansion shelf all its drives appeared in the management interface ready for configuration." src="https://cdn.mos.cms.futurecdn.net/4i8TMhvc527DLZJAYvFN3U-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/4i8TMhvc527DLZJAYvFN3U.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>After connecting the RX1211 expansion shelf all its drives appeared in the management interface ready for configuration.</p><p>Running the same copy and FTP tests returned identical speeds showing the Infiniband connection had no adverse impact on performance. In our review of <a href="https://www.itpro.com/628294/synology-rackstation-rs810rp-review" target="_blank" data-original-url="https://www.itpro.com/628294/synology-rackstation-rs810rp-review">Synology's RS810RP+</a>, we tested performance of the eSATA equipped RX410 expansion unit and saw a drop in read performance over this link of nearly 20 per cent.</p><p>IP SAN features are good with target support for the RS2211+ increased to 32. The appliance also supports iSCSI thin provisioning which allows targets to be created that only use a small amount of space on the appliance, but appear much larger to the host. As more data is stored on the target, the appliance dynamically allocates extra space to it. When you reach the limits of physical capacity you can add more drives and increase the size of the physical volume the target resides on.</p><p>Synology provides some of the best IP camera recording features with the Surveillance Station 5 improved to support IE, Firefox and Google Chrome. A search tool finds your IP cameras on the network and it supports scheduled recordings and motion detection too.</p><p>Backup features are reasonable, although the bundled Data Replicator 3 is now looking a bit dated. However, the appliance offers scheduled backups of local data to external USB devices, other Synology appliances or Rsync compatible servers and integrates with Amazon's S3 remote backup service.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="reo2WViKq2BprSPYGUhrLm" name="" alt="Synology’s Time Backup provides a simple snapshot service that allows multiple file copies to be retained." src="https://cdn.mos.cms.futurecdn.net/reo2WViKq2BprSPYGUhrLm-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/reo2WViKq2BprSPYGUhrLm.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>Synology's Time Backup provides a simple snapshot service that allows multiple file copies to be retained.</p><p>Snapshots are handled by the Time Backup add-on package which has finally come out of beta testing. This automates snapshots of selected folders to another volume on the appliance or external device. A file version history is viewed from the Timeline screen where you can select one and restore it to its original location or a new destination.</p><p>The RS2211+ scores highly over rival rack mount NAS appliances from Thecus, QNap and Netgear which don't have any worthwhile expansion capabilities. Synology's Infiniband link is a single point of failure but it clearly has no impact on performance and the high maximum capacity makes the RS2211+ a far better choice for SMBs.</p><p><a href="https://www.itpro.com/635242/synology-rackstation-rs2211-review" target="_blank" data-original-url="https://www.itpro.com/635242/synology-rackstation-rs2211-review">So what's our verdict?</a></p><h2 id="verdict-15">Verdict</h2><p>Synology’s RS2211+ is very good value when stacked up against similar rack appliances from Thecus, Qnap and Netgear. Its superior expansion potential makes it a better choice for businesses with big plans for the future and our tests show the Infiniband connection has no detrimental impact on performance. Synology also packs in plenty of features and offers some of the best IP SAN features in this class.</p><p>Chassis: 2U rack CPU: 1.8GHz Intel Atom D525 Memory: 1GB DDR2 expandable to 3GB Storage: 10 x 3.5in.or 2.5in SATA hard disk hot-swap bays RAID: Software managed Array support: RAID 0, 1, 5, 6, Hybrid, hot-spare and JBODs Network: 2 x Gigabit Ethernet Other ports: 4 x USB2, Infiniband Management: Web browser Software: Synology Assistant, Download Redirector and Data Replicator 3 Options: RX1211, £864; RS2211RP+, £1,514; RX1211RP, £1,328 (all ex VAT)</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Iomega StorCenter px4-300r review ]]></title>
                                                                                                <dc:content><![CDATA[ <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/95PpvQBtTtejDrTjUUkVY7-1920-80.jpg" alt="Iomega StorCenter px4-300r" /><figcaption>Iomega StorCenter px4-300r</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/baLzyb2uV6Te5zhbGVuMkD-1920-80.jpg" alt="The Iomega StorCenter px4-300r" /><figcaption>The Iomega StorCenter px4-300r</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/rrhbK5QtCMz5B4kF7Uf3mR-1920-80.jpg" alt="The rear of the Iomega StorCenter px4-300r" /><figcaption>The rear of the Iomega StorCenter px4-300r</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/gLfgbvDiZ7o5WBbMX2qGnB-1920-80.jpg" alt="Iomega’s freshly designed web interface makes light work of configuring and managing the appliance." /><figcaption>Iomega’s freshly designed web interface makes light work of configuring and managing the appliance.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/bzdEy73UsPgGtNTkcDnpZe-1920-80.png" alt="The Storage Manager utility automatically maps share to drive letters and makes IP SAN creation very simple." /><figcaption>The Storage Manager utility automatically maps share to drive letters and makes IP SAN creation very simple.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/yXHSczBeMJixy95tBrg5zQ-1920-80.jpg" alt="Once we had added a port forwarding rule, the Personal Cloud could be accessed remotely by users we had sent invitations to." /><figcaption>Once we had added a port forwarding rule, the Personal Cloud could be accessed remotely by users we had sent invitations to.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/2fn28cyhDaameBgrNEkrWo-1920-80.jpg" alt="When users receive their Personal Cloud email invitation they can download the Storage Manager which has their username and a" /><figcaption>When users receive their Personal Cloud email invitation they can download the Storage Manager which has their username and a</figcaption></figure></figure><p>Iomega has always had a relatively modest range of NAS appliances, but since its acquisition by EMC it has started to push more into SMB territory. This is a very crowded market with a huge range of choices, but Iomega's new StorCenter px4-300r aims to stand out with its cloud backup and file sharing features.</p><p>This 1U rack system is well-built with the four bays using solid metal disk carriers although they aren't lockable. Status LEDs for each drive are located in a strip just above the carriers and to one side is a tiny LCD providing basic system information and details on available disk and used storage.</p><p>The Storage Manager utility makes light work of installation.</p><p>Redundancy is good as there's room at the back for a pair of 170W hot-plug power supplies. Only one is included in the price we've shown and a second will set you back around 240 ex VAT.</p><p>The appliance supports mirrors, stripes and RAID 5 arrays and the two Gigabit Ethernet ports can be bonded together into fault tolerant, load balanced or 802.3ad aggregated teams. There are three USB2 ports for adding external storage devices, but expansion using extra disk shelves is not an option.</p><p>Iomega supplied our review unit with a quartet of 2TB SATA drives preconfigured in a RAID 5 array so we were ready to go. The Storage Manager utility makes light work of installation as it locates the appliance on the network and maps all the predefined shares to drive letters for you.</p><p>All available shares can be viewed from the interface along with iSCSI targets and the Storage Manager handles IP SAN creation very niftily. Just select an iSCSI target, choose connect from its drop down menu, pick a drive letter and leave it to handle initiator configuration and target logon.</p><p>Backup features are extensive and for most of these Iomega has its head firmly in the cloud. Iomega advised us earlier this year that it would be integrating EMC's MozyPro hosted backup service into its business NAS appliances and it's come good on this promise. You can create a new MozyPro account directly from the appliance's web interface which is a separate purchase.</p><p>Once activated, you can create scheduled backup jobs of selected folders to the MozyPro servers and browse existing backups to restore data back to the appliance. When our sister title PC Pro took a look at the MozyPro 2 service, they were impressed with the levels of features, but had serious concerns about the support provided by EMC.</p><p>The appliance supports Amazon's S3 hosted service and you can configure shares as Facebook or Flickr Active Folders. Then there's Iomega's Personal Cloud which is designed to provide secure data backup and file sharing to remote users as though they were on the same LAN.</p><p>We found setup easy enough although you will need to get down and dirty with your router as Personal Cloud requires the addition of a port forwarding rule to allow access from the Internet. The web console provides the port number and internal IP address you need to use for the rule.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="yXHSczBeMJixy95tBrg5zQ" name="" alt="Once we had added a port forwarding rule, the Personal Cloud could be accessed remotely by users we had sent invitations to." src="https://cdn.mos.cms.futurecdn.net/yXHSczBeMJixy95tBrg5zQ-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/yXHSczBeMJixy95tBrg5zQ.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Once we had added a port forwarding rule, the Personal Cloud could be accessed remotely by users we had sent invitations to. </span></figcaption></figure><p>Once we had added a port forwarding rule, the Personal Cloud could be accessed remotely by users we had sent invitations to.</p><p>We had no problems setting up a rule and could then send email invitations to users to join our private cloud. The email contains a username and unique access code plus a link to download a personalised version of the Storage Manager.</p><p>Iomega doesn't include any backup software, but you do have the Copy Job feature. This allows folders on selected workstations to be regularly copied to the appliance or you can use it to copy data from the appliance to another Rsync server. When the QuikTransfer button on the appliance is pressed it'll copy anything on an inserted USB device to a folder on the appliance. You can also tie it in with Copy Jobs that will be fired up when it's pressed.</p><p>The px4-300r fared reasonably well in our real world performance tests. Drag and drop copies of a 2.52GB video clip using a Dell PowerEdge R515 with Server 2008 R2 64-bit loaded returned read and write speeds of 103MB/s and 47MB/s.</p><p>Backing up large collections of small files proved to be more challenging... CIFS write performance seems to be a problem.</p><p>Backing up large collections of small files proved to be more challenging with a 17.4GB folder with 10,500 files averaging only 20MB/s. CIFS write performance seems to be a problem as using FileZilla to FTP the video clip returned 83MB/s write speeds.</p><p>The StorCenter px4-300r has a good range of storage sharing features with extensive cloud-based services at the top of the list. It's easy to install as well, but with a diskless model costing over 1,000 it is very expensive. If cloud backup services aren't your cup of tea then we recommend Synology's RS411 as that 1U appliance is faster, offers a very good range of storage features and costs a lot less.</p><p><a href="https://www.itpro.com/634801/iomega-storcenter-px4-300r-review" target="_blank" data-original-url="https://www.itpro.com/634801/iomega-storcenter-px4-300r-review">So what's our verdict?</a></p><h2 id="verdict-16">Verdict</h2><p>The StorCenter px4-300r has plenty of storage features with cloud-based backup and file sharing a highlight. Providing you don’t mind adding a port forwarding rule to your router, Iomega’s Personal Cloud will also prove very useful for sharing data securely with remote users. However, performance is disappointing and it is comparatively expensive making rival products such as Synology’s RS411 far better value.</p><p>Chassis: 1U rack chassis CPU: 2.2GHz Intel Celeron E1500 Memory: 2GB DDR2 Storage: 4 x hot-swap SATA drive bays Array support: RAID0, 1, 10, 5, JBOD, hot spare Network: 2 x Gigabit Ethernet Other ports: 3 x USB2 Management: Web browser Software: Iomega Storage Manager Warranty: 3 years RTB Options: Second power supply, £240 ex VAT</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/634801/iomega-storcenter-px4-300r-review</link>
                                                                            <description>
                            <![CDATA[ Iomega claims its latest rack mount NAS appliance claims an improved performance and introduces SMBs to its Personal Cloud feature. Dave Mitchell thinks it's expensive though and in this review finds out whether Iomega can justify its high price tag. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">rK9uggzsE1vsYgnC8VDAR3</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/95PpvQBtTtejDrTjUUkVY7-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Wed, 13 Jul 2011 10:00:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Social Media]]></category>
                                                    <category><![CDATA[Technology]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/95PpvQBtTtejDrTjUUkVY7-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                        <media:description><![CDATA[The Iomega StorCenter px4-300r]]></media:description>                                                            <media:text><![CDATA[Iomega StorCenter px4-300r]]></media:text>
                                <media:title type="plain"><![CDATA[Iomega StorCenter px4-300r]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/95PpvQBtTtejDrTjUUkVY7-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/95PpvQBtTtejDrTjUUkVY7-1920-80.jpg" alt="Iomega StorCenter px4-300r" /><figcaption>Iomega StorCenter px4-300r</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/baLzyb2uV6Te5zhbGVuMkD-1920-80.jpg" alt="The Iomega StorCenter px4-300r" /><figcaption>The Iomega StorCenter px4-300r</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/rrhbK5QtCMz5B4kF7Uf3mR-1920-80.jpg" alt="The rear of the Iomega StorCenter px4-300r" /><figcaption>The rear of the Iomega StorCenter px4-300r</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/gLfgbvDiZ7o5WBbMX2qGnB-1920-80.jpg" alt="Iomega’s freshly designed web interface makes light work of configuring and managing the appliance." /><figcaption>Iomega’s freshly designed web interface makes light work of configuring and managing the appliance.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/bzdEy73UsPgGtNTkcDnpZe-1920-80.png" alt="The Storage Manager utility automatically maps share to drive letters and makes IP SAN creation very simple." /><figcaption>The Storage Manager utility automatically maps share to drive letters and makes IP SAN creation very simple.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/yXHSczBeMJixy95tBrg5zQ-1920-80.jpg" alt="Once we had added a port forwarding rule, the Personal Cloud could be accessed remotely by users we had sent invitations to." /><figcaption>Once we had added a port forwarding rule, the Personal Cloud could be accessed remotely by users we had sent invitations to.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/2fn28cyhDaameBgrNEkrWo-1920-80.jpg" alt="When users receive their Personal Cloud email invitation they can download the Storage Manager which has their username and a" /><figcaption>When users receive their Personal Cloud email invitation they can download the Storage Manager which has their username and a</figcaption></figure></figure><p>Iomega has always had a relatively modest range of NAS appliances, but since its acquisition by EMC it has started to push more into SMB territory. This is a very crowded market with a huge range of choices, but Iomega's new StorCenter px4-300r aims to stand out with its cloud backup and file sharing features.</p><p>This 1U rack system is well-built with the four bays using solid metal disk carriers although they aren't lockable. Status LEDs for each drive are located in a strip just above the carriers and to one side is a tiny LCD providing basic system information and details on available disk and used storage.</p><p>The Storage Manager utility makes light work of installation.</p><p>Redundancy is good as there's room at the back for a pair of 170W hot-plug power supplies. Only one is included in the price we've shown and a second will set you back around 240 ex VAT.</p><p>The appliance supports mirrors, stripes and RAID 5 arrays and the two Gigabit Ethernet ports can be bonded together into fault tolerant, load balanced or 802.3ad aggregated teams. There are three USB2 ports for adding external storage devices, but expansion using extra disk shelves is not an option.</p><p>Iomega supplied our review unit with a quartet of 2TB SATA drives preconfigured in a RAID 5 array so we were ready to go. The Storage Manager utility makes light work of installation as it locates the appliance on the network and maps all the predefined shares to drive letters for you.</p><p>All available shares can be viewed from the interface along with iSCSI targets and the Storage Manager handles IP SAN creation very niftily. Just select an iSCSI target, choose connect from its drop down menu, pick a drive letter and leave it to handle initiator configuration and target logon.</p><p>Backup features are extensive and for most of these Iomega has its head firmly in the cloud. Iomega advised us earlier this year that it would be integrating EMC's MozyPro hosted backup service into its business NAS appliances and it's come good on this promise. You can create a new MozyPro account directly from the appliance's web interface which is a separate purchase.</p><p>Once activated, you can create scheduled backup jobs of selected folders to the MozyPro servers and browse existing backups to restore data back to the appliance. When our sister title PC Pro took a look at the MozyPro 2 service, they were impressed with the levels of features, but had serious concerns about the support provided by EMC.</p><p>The appliance supports Amazon's S3 hosted service and you can configure shares as Facebook or Flickr Active Folders. Then there's Iomega's Personal Cloud which is designed to provide secure data backup and file sharing to remote users as though they were on the same LAN.</p><p>We found setup easy enough although you will need to get down and dirty with your router as Personal Cloud requires the addition of a port forwarding rule to allow access from the Internet. The web console provides the port number and internal IP address you need to use for the rule.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="yXHSczBeMJixy95tBrg5zQ" name="" alt="Once we had added a port forwarding rule, the Personal Cloud could be accessed remotely by users we had sent invitations to." src="https://cdn.mos.cms.futurecdn.net/yXHSczBeMJixy95tBrg5zQ-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/yXHSczBeMJixy95tBrg5zQ.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Once we had added a port forwarding rule, the Personal Cloud could be accessed remotely by users we had sent invitations to. </span></figcaption></figure><p>Once we had added a port forwarding rule, the Personal Cloud could be accessed remotely by users we had sent invitations to.</p><p>We had no problems setting up a rule and could then send email invitations to users to join our private cloud. The email contains a username and unique access code plus a link to download a personalised version of the Storage Manager.</p><p>Iomega doesn't include any backup software, but you do have the Copy Job feature. This allows folders on selected workstations to be regularly copied to the appliance or you can use it to copy data from the appliance to another Rsync server. When the QuikTransfer button on the appliance is pressed it'll copy anything on an inserted USB device to a folder on the appliance. You can also tie it in with Copy Jobs that will be fired up when it's pressed.</p><p>The px4-300r fared reasonably well in our real world performance tests. Drag and drop copies of a 2.52GB video clip using a Dell PowerEdge R515 with Server 2008 R2 64-bit loaded returned read and write speeds of 103MB/s and 47MB/s.</p><p>Backing up large collections of small files proved to be more challenging... CIFS write performance seems to be a problem.</p><p>Backing up large collections of small files proved to be more challenging with a 17.4GB folder with 10,500 files averaging only 20MB/s. CIFS write performance seems to be a problem as using FileZilla to FTP the video clip returned 83MB/s write speeds.</p><p>The StorCenter px4-300r has a good range of storage sharing features with extensive cloud-based services at the top of the list. It's easy to install as well, but with a diskless model costing over 1,000 it is very expensive. If cloud backup services aren't your cup of tea then we recommend Synology's RS411 as that 1U appliance is faster, offers a very good range of storage features and costs a lot less.</p><p><a href="https://www.itpro.com/634801/iomega-storcenter-px4-300r-review" target="_blank" data-original-url="https://www.itpro.com/634801/iomega-storcenter-px4-300r-review">So what's our verdict?</a></p><h2 id="verdict-16">Verdict</h2><p>The StorCenter px4-300r has plenty of storage features with cloud-based backup and file sharing a highlight. Providing you don’t mind adding a port forwarding rule to your router, Iomega’s Personal Cloud will also prove very useful for sharing data securely with remote users. However, performance is disappointing and it is comparatively expensive making rival products such as Synology’s RS411 far better value.</p><p>Chassis: 1U rack chassis CPU: 2.2GHz Intel Celeron E1500 Memory: 2GB DDR2 Storage: 4 x hot-swap SATA drive bays Array support: RAID0, 1, 10, 5, JBOD, hot spare Network: 2 x Gigabit Ethernet Other ports: 3 x USB2 Management: Web browser Software: Iomega Storage Manager Warranty: 3 years RTB Options: Second power supply, £240 ex VAT</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Promise SmartStor NS4700 review ]]></title>
                                                                                                <dc:content><![CDATA[ <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/MHuCXmxbzcntAnkF2jCbXN-1920-80.jpg" alt="The Promise SmartStor NS4700" /><figcaption>The Promise SmartStor NS4700</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/nrD44AoBWC3qH98NGPbXJh-1920-80.jpg" alt="The appliance’s newly designed web interface provides a useful dashboard showing the status of all components and drives." /><figcaption>The appliance’s newly designed web interface provides a useful dashboard showing the status of all components and drives.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/FbCnryVqCUeYHZrKANrTPT-1920-80.jpg" alt="Physical hard disks are grouped into pools which can contain multiple logical drives." /><figcaption>Physical hard disks are grouped into pools which can contain multiple logical drives.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/h8B6t73tsdzg4rNnFgF7dF-1920-80.jpg" alt="Take your time during logical drive creation as, along with an appropriate RAID type, you must select either NAS or IP SAN op" /><figcaption>Take your time during logical drive creation as, along with an appropriate RAID type, you must select either NAS or IP SAN op</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Wy8wdQEamQTg2994fYe55P-1920-80.jpg" alt="The NS4700 provides good client support and share access can be controlled with different user permissions." /><figcaption>The NS4700 provides good client support and share access can be controlled with different user permissions.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/K59nshuqNAzGUgdu2JLcFm-1920-80.png" alt="The Acronis software is a quality data backup and restore tool, but this version will only use a SmartStor appliance for its " /><figcaption>The Acronis software is a quality data backup and restore tool, but this version will only use a SmartStor appliance for its </figcaption></figure></figure><p>Promise Technology has never had a high profile in the small business NAS market but its latest SmartStor NSx700 desktop appliances aim to change that perception. Two new models are available and comprise the six-bay NS6700 and the four-bay NS4700 on review here.</p><p>Previous SmartStor appliances failed to pass muster in our speed tests - we were unimpressed with the older NS4600 and its pedestrian performance. Promise now steps in line with much of the competition as both new models use a 1.8GHz dual-core Atom processor and memory gets a much needed quadrupling to 1GB of DDR2 RAM.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="nrD44AoBWC3qH98NGPbXJh" name="" alt="The appliance’s newly designed web interface provides a useful dashboard showing the status of all components and drives." src="https://cdn.mos.cms.futurecdn.net/nrD44AoBWC3qH98NGPbXJh-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/nrD44AoBWC3qH98NGPbXJh.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The appliance’s newly designed web interface provides a useful dashboard showing the status of all components and drives. </span></figcaption></figure><p>The appliance's newly designed web interface provides a useful dashboard showing the status of all components and drives.</p><p>Build quality also sees big improvements as the chassis is now all-metal and the cheap plastic drive carriers from the NS4600 and NS4300 have been replaced with sturdier metal frames. The appliance also has five USB2 and two Gigabit Ethernet data ports, but no eSATA.</p><p>For initial installation you can use Promise's SmartNAVI client which runs as a background task accessible from the System Tray and automatically finds appliances on the network. The setup wizard setup checks the network, applies a range of default settings based on what it finds and automates array creation.</p><p>Promise's new web interface looks very smart with its one-click setup routine but we recommend avoiding any wizards until you're sure you know what you want to do with your storage. Promise works differently compared to other vendors as it uses disk arrays to group selected physical drives together into pools.</p><p>Within these pools you create multiple logical drives and choose a RAID type for each one. If the pool comprises four drives you can choose from stripes, mirrors, RAID 5 or RAID 6 for the logical drive. However, be careful during this phase as although the NS4700 supports NAS and IP SAN operations, each logical drive can only be used for one of these and the mode must be set during creation.</p><p>We installed four 1TB WD SATA drives, grouped them into a single disk array and manually created two RAID-5 logical drives for NAS and IP SAN performance testing. For NAS operations we needed to create a file system on the logical drive from the web interface after which a set of default shares were presented.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="h8B6t73tsdzg4rNnFgF7dF" name="" alt="Take your time during logical drive creation as, along with an appropriate RAID type, you must select either NAS or IP SAN op" src="https://cdn.mos.cms.futurecdn.net/h8B6t73tsdzg4rNnFgF7dF-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/h8B6t73tsdzg4rNnFgF7dF.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Take your time during logical drive creation as, along with an appropriate RAID type, you must select either NAS or IP SAN op </span></figcaption></figure><p>Take your time during logical drive creation as, along with an appropriate RAID type, you must select either NAS or IP SAN operations.</p><p>For real world performance testing we used a dual Xeon X5560-based Broadberry rack server running Windows Server 2008 R2 64-bit. The improved hardware in the NS4700 made a big difference with drag and drop copies of a 2.52GB video clip returning read and write speeds of 85MB/s and 78MB/s</p><p>FTP operations were faster with the FileZilla client reporting speeds of 90MB/s and 81MB/s. A 17.4GB collection of 10,500 small files was copied to the appliance as a rate of 57MB/s. Our results show that the NS4700 is around three times faster than its predecessor.</p><p>For IP SANs, the appliance presents a single iSCSI portal so any initiator that logs into it will see all available targets although you can apply CHAP authentication to restrict access. Performance for a single 100GB target was very good with Iometer reporting a fast raw read speed of 111MB/s.</p><p>Server and workstation backup is very well catered for as Promise includes an unlimited user version of Acronis' Backup and Recovery Server 10 software which supports Windows XP and Server 2000 upwards. The only proviso is this is a special edition for Promise products and will only allow vaults to be created on its SmartStor NAS appliances.</p><p>The new hardware in the NS4700 has made a big improvement to performance.</p><p>The NS4700 also supports snapshots for point-in-time volume backups and allows data on the appliance to be backed up to external USB disks. Cloud backup is supported too as the web interface has an option for connecting to Amazon's S3 hosted service and you can replicate the appliance to another one using Rsync.</p><p>The new hardware in the NS4700 has made a big improvement to performance as it's a lot faster that its SmartStor predecessors. It also has a fine range of storage features and good value with Span Computers selling a diskless model for just over 600 ex VAT.</p><p>However, despite being aimed at small businesses, the NS4700 isn't easy to install and we found the documentation very unhelpful. Many topics such as IP SANs get scant coverage and the relationship between disk arrays, logical drives and usage modes need explanation to avoid making time consuming mistakes during installation.</p><p>Competition in the SMB NAS market is white hot and we think Synology's slightly cheaper five-bay DS1511+ is a better bet. In an exclusive review in our sister title PC Pro we found it delivered stunning performance and has additional features including hybrid RAID and iSCSI thin provisioning plus monstrous expansion potential.</p><p><a href="https://www.itpro.com/634501/promise-smartstor-ns4700-review" target="_blank" data-original-url="https://www.itpro.com/634501/promise-smartstor-ns4700-review">So what's our verdict?</a></p><h2 id="verdict-17">Verdict</h2><p>Our performance tests show the NS4700 has benefited hugely from the improved hardware as it’s around three times faster than the older NS4600. It has good range of features including some decent backup software, but it’s not the easiest to configure and Promise needs to make big improvements to its documentation. We recommend checking out Synology’s nifty five-bay DS1511+ before buying.</p><p>Chassis: Desktop CPU: 1.8GHz Intel Atom D525 Memory: 1GB DDR2 Storage: 4 x hot-swap SATA disk bays RAID array support: RAID 0, 1, 5, 6, 10, JBOD Network: 2 x Gigabit Ethernet Other ports: 5 x USB2 Management: Web browser Software: Promise SmartNAVI and Acronis Backup and Recovery 10 NAS Edition</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/634501/promise-smartstor-ns4700-review</link>
                                                                            <description>
                            <![CDATA[ Promise's new SmartStor NAS appliance receives a much needed hardware boost. The NS4700 on review is a lot faster than previous models, but Dave Mitchell thinks there’s still work to be done. Read this review to find out why. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">oxqEhiD9chbWvCzo1UgwdB</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/MHuCXmxbzcntAnkF2jCbXN-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Tue, 28 Jun 2011 10:57:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/MHuCXmxbzcntAnkF2jCbXN-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                        <media:description><![CDATA[The appliance’s newly designed web interface provides a useful dashboard showing the status of all components and drives.]]></media:description>                                                            <media:text><![CDATA[The Promise SmartStor NS4700]]></media:text>
                                <media:title type="plain"><![CDATA[The Promise SmartStor NS4700]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/MHuCXmxbzcntAnkF2jCbXN-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/MHuCXmxbzcntAnkF2jCbXN-1920-80.jpg" alt="The Promise SmartStor NS4700" /><figcaption>The Promise SmartStor NS4700</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/nrD44AoBWC3qH98NGPbXJh-1920-80.jpg" alt="The appliance’s newly designed web interface provides a useful dashboard showing the status of all components and drives." /><figcaption>The appliance’s newly designed web interface provides a useful dashboard showing the status of all components and drives.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/FbCnryVqCUeYHZrKANrTPT-1920-80.jpg" alt="Physical hard disks are grouped into pools which can contain multiple logical drives." /><figcaption>Physical hard disks are grouped into pools which can contain multiple logical drives.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/h8B6t73tsdzg4rNnFgF7dF-1920-80.jpg" alt="Take your time during logical drive creation as, along with an appropriate RAID type, you must select either NAS or IP SAN op" /><figcaption>Take your time during logical drive creation as, along with an appropriate RAID type, you must select either NAS or IP SAN op</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Wy8wdQEamQTg2994fYe55P-1920-80.jpg" alt="The NS4700 provides good client support and share access can be controlled with different user permissions." /><figcaption>The NS4700 provides good client support and share access can be controlled with different user permissions.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/K59nshuqNAzGUgdu2JLcFm-1920-80.png" alt="The Acronis software is a quality data backup and restore tool, but this version will only use a SmartStor appliance for its " /><figcaption>The Acronis software is a quality data backup and restore tool, but this version will only use a SmartStor appliance for its </figcaption></figure></figure><p>Promise Technology has never had a high profile in the small business NAS market but its latest SmartStor NSx700 desktop appliances aim to change that perception. Two new models are available and comprise the six-bay NS6700 and the four-bay NS4700 on review here.</p><p>Previous SmartStor appliances failed to pass muster in our speed tests - we were unimpressed with the older NS4600 and its pedestrian performance. Promise now steps in line with much of the competition as both new models use a 1.8GHz dual-core Atom processor and memory gets a much needed quadrupling to 1GB of DDR2 RAM.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="nrD44AoBWC3qH98NGPbXJh" name="" alt="The appliance’s newly designed web interface provides a useful dashboard showing the status of all components and drives." src="https://cdn.mos.cms.futurecdn.net/nrD44AoBWC3qH98NGPbXJh-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/nrD44AoBWC3qH98NGPbXJh.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The appliance’s newly designed web interface provides a useful dashboard showing the status of all components and drives. </span></figcaption></figure><p>The appliance's newly designed web interface provides a useful dashboard showing the status of all components and drives.</p><p>Build quality also sees big improvements as the chassis is now all-metal and the cheap plastic drive carriers from the NS4600 and NS4300 have been replaced with sturdier metal frames. The appliance also has five USB2 and two Gigabit Ethernet data ports, but no eSATA.</p><p>For initial installation you can use Promise's SmartNAVI client which runs as a background task accessible from the System Tray and automatically finds appliances on the network. The setup wizard setup checks the network, applies a range of default settings based on what it finds and automates array creation.</p><p>Promise's new web interface looks very smart with its one-click setup routine but we recommend avoiding any wizards until you're sure you know what you want to do with your storage. Promise works differently compared to other vendors as it uses disk arrays to group selected physical drives together into pools.</p><p>Within these pools you create multiple logical drives and choose a RAID type for each one. If the pool comprises four drives you can choose from stripes, mirrors, RAID 5 or RAID 6 for the logical drive. However, be careful during this phase as although the NS4700 supports NAS and IP SAN operations, each logical drive can only be used for one of these and the mode must be set during creation.</p><p>We installed four 1TB WD SATA drives, grouped them into a single disk array and manually created two RAID-5 logical drives for NAS and IP SAN performance testing. For NAS operations we needed to create a file system on the logical drive from the web interface after which a set of default shares were presented.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="h8B6t73tsdzg4rNnFgF7dF" name="" alt="Take your time during logical drive creation as, along with an appropriate RAID type, you must select either NAS or IP SAN op" src="https://cdn.mos.cms.futurecdn.net/h8B6t73tsdzg4rNnFgF7dF-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/h8B6t73tsdzg4rNnFgF7dF.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Take your time during logical drive creation as, along with an appropriate RAID type, you must select either NAS or IP SAN op </span></figcaption></figure><p>Take your time during logical drive creation as, along with an appropriate RAID type, you must select either NAS or IP SAN operations.</p><p>For real world performance testing we used a dual Xeon X5560-based Broadberry rack server running Windows Server 2008 R2 64-bit. The improved hardware in the NS4700 made a big difference with drag and drop copies of a 2.52GB video clip returning read and write speeds of 85MB/s and 78MB/s</p><p>FTP operations were faster with the FileZilla client reporting speeds of 90MB/s and 81MB/s. A 17.4GB collection of 10,500 small files was copied to the appliance as a rate of 57MB/s. Our results show that the NS4700 is around three times faster than its predecessor.</p><p>For IP SANs, the appliance presents a single iSCSI portal so any initiator that logs into it will see all available targets although you can apply CHAP authentication to restrict access. Performance for a single 100GB target was very good with Iometer reporting a fast raw read speed of 111MB/s.</p><p>Server and workstation backup is very well catered for as Promise includes an unlimited user version of Acronis' Backup and Recovery Server 10 software which supports Windows XP and Server 2000 upwards. The only proviso is this is a special edition for Promise products and will only allow vaults to be created on its SmartStor NAS appliances.</p><p>The new hardware in the NS4700 has made a big improvement to performance.</p><p>The NS4700 also supports snapshots for point-in-time volume backups and allows data on the appliance to be backed up to external USB disks. Cloud backup is supported too as the web interface has an option for connecting to Amazon's S3 hosted service and you can replicate the appliance to another one using Rsync.</p><p>The new hardware in the NS4700 has made a big improvement to performance as it's a lot faster that its SmartStor predecessors. It also has a fine range of storage features and good value with Span Computers selling a diskless model for just over 600 ex VAT.</p><p>However, despite being aimed at small businesses, the NS4700 isn't easy to install and we found the documentation very unhelpful. Many topics such as IP SANs get scant coverage and the relationship between disk arrays, logical drives and usage modes need explanation to avoid making time consuming mistakes during installation.</p><p>Competition in the SMB NAS market is white hot and we think Synology's slightly cheaper five-bay DS1511+ is a better bet. In an exclusive review in our sister title PC Pro we found it delivered stunning performance and has additional features including hybrid RAID and iSCSI thin provisioning plus monstrous expansion potential.</p><p><a href="https://www.itpro.com/634501/promise-smartstor-ns4700-review" target="_blank" data-original-url="https://www.itpro.com/634501/promise-smartstor-ns4700-review">So what's our verdict?</a></p><h2 id="verdict-17">Verdict</h2><p>Our performance tests show the NS4700 has benefited hugely from the improved hardware as it’s around three times faster than the older NS4600. It has good range of features including some decent backup software, but it’s not the easiest to configure and Promise needs to make big improvements to its documentation. We recommend checking out Synology’s nifty five-bay DS1511+ before buying.</p><p>Chassis: Desktop CPU: 1.8GHz Intel Atom D525 Memory: 1GB DDR2 Storage: 4 x hot-swap SATA disk bays RAID array support: RAID 0, 1, 5, 6, 10, JBOD Network: 2 x Gigabit Ethernet Other ports: 5 x USB2 Management: Web browser Software: Promise SmartNAVI and Acronis Backup and Recovery 10 NAS Edition</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Miracle Workers: rescuing data from the jaws of disaster ]]></title>
                                                                                                <dc:content><![CDATA[ <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/R59aR2dAQdB5omzjjQkJVG-1920-80.jpg" alt="A fire damaged server from the University of Southampton" /><figcaption>A fire damaged server from the University of Southampton</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/qDzbL5pLdCAGc4ZbeYrbZW-1920-80.jpg" alt="Kroll Ontrack" /><figcaption>Kroll Ontrack</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/TgK5KgZfrZs8VH5PCnMtcA-1920-80.jpg" alt="Bagging and tagging incoming hard disks so they can be tracked throughout the data recovery process" /><figcaption>Bagging and tagging incoming hard disks so they can be tracked throughout the data recovery process</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/kGXKNhzeAvKt2M5NziuQ57-1920-80.jpg" alt="IT Pro's damaged laptop hard disk" /><figcaption>IT Pro's damaged laptop hard disk</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/MuwuQGPZNQKBmhYyj5ggE4-1920-80.jpg" alt="Kroll Ontrack's imaging computers" /><figcaption>Kroll Ontrack's imaging computers</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/fSVFccmVN7UGVtnvPzNcZ4-1920-80.jpg" alt="Working on servers and RAID arrays" /><figcaption>Working on servers and RAID arrays</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/b8FTtEWLJYrf2XizNUYdUP-1920-80.jpg" alt="Kroll Ontrack's stock of spare hard disks" /><figcaption>Kroll Ontrack's stock of spare hard disks</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/VyHfSkqGWXw5iC9baixjwC-1920-80.jpg" alt="Spare hard disk heads" /><figcaption>Spare hard disk heads</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/oAf5JRVgsTsszv6VgDCenX-1920-80.jpg" alt="Removing memory chips from a SSD with the aid of a microscope" /><figcaption>Removing memory chips from a SSD with the aid of a microscope</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/6CSwmNeJVYbksR7pQyK8uf-1920-80.jpg" alt="Removing memory chips from a SSD with the aid of a microscope" /><figcaption>Removing memory chips from a SSD with the aid of a microscope</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/kbFuimLzeotVUGjePJaB5N-1920-80.jpg" alt="Computer Weekly's fire damaged camera and SD memory card" /><figcaption>Computer Weekly's fire damaged camera and SD memory card</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/xALV8TXARGxMJJJzkkejRN-1920-80.jpg" alt="The cleaned and extracted memory chip from the SD card" /><figcaption>The cleaned and extracted memory chip from the SD card</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/9JtrqWQ2XMy4uFSvVNkVL9-1920-80.jpg" alt="A fire damaged hard disk from the University's server" /><figcaption>A fire damaged hard disk from the University's server</figcaption></figure></figure><p>At some point in the past - perhaps even today - you've no doubt experienced that sickening feeling in the pit of your stomach after accidentally deleting an important file or folder. That feeling is even worse if your hard disk fails and you lose its entire contents, including months or years' worth of work, documents, finances, photos, videos and music.</p><p>If you've simply deleted a file, the good news is that it's almost always possible to recover it as the file still exists on your hard drive; the area it occupies has simply been marked as available for other data to be written over it. However, if your disk has been dropped, set on fire, submerged in water or any other horror, it might rattle or stop spinning entirely. Here, things become a lot more complicated.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="kbFuimLzeotVUGjePJaB5N" name="" alt="Computer Weekly's fire damaged camera and SD memory card" src="https://cdn.mos.cms.futurecdn.net/kbFuimLzeotVUGjePJaB5N-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/kbFuimLzeotVUGjePJaB5N.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Computer Weekly's fire damaged camera and SD memory card </span></figcaption></figure><p>Computer Weekly's fire damaged digital camera and SD card</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="xALV8TXARGxMJJJzkkejRN" name="" alt="The cleaned and extracted memory chip from the SD card" src="https://cdn.mos.cms.futurecdn.net/xALV8TXARGxMJJJzkkejRN-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/xALV8TXARGxMJJJzkkejRN.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The cleaned and extracted memory chip from the SD card </span></figcaption></figure><p>The extracted and cleaned memory chip from the SD card</p><p>Whatever your situation, there are data recovery companies that can attempt to restore your precious data and return your life to normality. One such firm is Kroll Ontrack, based in Epsom, Surrey. IT Pro visited their facility to see how engineers are able to recover lost data in special clean rooms.</p><p>Due process</p><p>The process starts with a call to one of Ontrack's data recovery team to discuss exactly what has happened, and work out the most cost effective way to recover it. Data on just about every medium can be recovered, from magnetic tape through to the latest SSDs (solid-state drives) including USB flash drives and memory cards in your phone or camera.</p><p>Even if the data is stored on a RAID array or in a virtual machine, Ontrack can usually recover it. Robert Winter, Ontrack's Engineering Manager, gave us a guided tour of the lab and explained that, "data is recoverable in the vast majority of cases". Even if the contents of your drive have become corrupted due to a virus or some malfunction, there's still hope.</p><p>There are various options depending on the nature of the problem. For example, it might be possible to recover the data instantly via the internet in as little as an hour if it's a simple case of accidental file deletion or corruption and all your hardware is intact and working fine. However, if the hardware is faulty - either a failed disk or other component, such as a RAID controller - you'll almost certainly have to send the equipment to Ontrack's lab. For the most complex or sensitive situations, engineers can visit your premises to repair the problem and recover the data on-site.</p><p>There are also various service levels, which determine how quickly your data is recovered and returned to you. For mission-critical business data, Ontrack's engineers will work around the clock, but where budget is more of a concern, rather than time, there are cheaper options.</p><p>Recovery position</p><p>When your hard disk(s) arrive at Ontrack's lab, they're bagged and tagged to allow them to be tracked through the entire recovery process. They then head to the pre-diagnosis area and are checked to find out if they're physically working. If there are any unusual rattles or the bearings are seized, they head into the clean room. However, for those that will power up and spin, they are connected to one of the imaging PCs.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="TgK5KgZfrZs8VH5PCnMtcA" name="" alt="Bagging and tagging incoming hard disks so they can be tracked throughout the data recovery process" src="https://cdn.mos.cms.futurecdn.net/TgK5KgZfrZs8VH5PCnMtcA-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/TgK5KgZfrZs8VH5PCnMtcA.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Bagging and tagging incoming hard disks so they can be tracked throughout the data recovery process </span></figcaption></figure><p>Bagging and tagging incoming hard disks so they can be tracked throughout the data recovery process</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="MuwuQGPZNQKBmhYyj5ggE4" name="" alt="Kroll Ontrack's imaging computers" src="https://cdn.mos.cms.futurecdn.net/MuwuQGPZNQKBmhYyj5ggE4-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/MuwuQGPZNQKBmhYyj5ggE4.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Kroll Ontrack's imaging computers </span></figcaption></figure><p>Kroll Ontrack's imaging computers</p><p>The disk's contents are then copied with Ontrack's proprietary software. The software can automatically skip over bad areas - portions of the disk that may be damaged or corrupted. It then scans in reverse', backing up as far as it can until it reaches the end of the bad area in order to recover as much of the data as possible. Once the disk has been imaged, the data is stored on Ontrack's severs, which are currently fitted with 140TB of storage. The disk itself is now finished with, but the image must be worked on by the experts in the logical recovery area. This is split into various sub-areas for different file systems including Windows, Mac, Unix, plus other areas for RAID and virtualised systems.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="fSVFccmVN7UGVtnvPzNcZ4" name="" alt="Working on servers and RAID arrays" src="https://cdn.mos.cms.futurecdn.net/fSVFccmVN7UGVtnvPzNcZ4-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/fSVFccmVN7UGVtnvPzNcZ4.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Working on servers and RAID arrays </span></figcaption></figure><p>Working on servers and RAID arrays</p><p>As well as disks, data can be recovered from tape backups usually for for migration to a different format. Accidental initialisation can also be overcome and backup data recovered.</p><p>Clean room</p><p>If a hard disk isn't working and can't be imaged in the pre-diagnosis area, it heads into the clean room. The engineers within will first listen to the disk and - using their considerable experience - will be able to determine whether it's safe to remove its lid or not. Some disks' chassis are integral to the spindle so opening it can render the disk useless as it can't be spun up or reassembled.</p><p>The clean room is equipped with special benches which prevent any dust or debris falling on the platters. Disks which are deemed safe to open have their lids removed and a visual inspection is carried out to check for problems. Each platter surface is inspected for damage as this can vary between platters.</p><p>We submitted our own damaged disk to Ontrack for assessment. Our disk, which spun up but refused to show up on the BIOS, had only minor damage on the upper surface of the platter.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="kGXKNhzeAvKt2M5NziuQ57" name="" alt="IT Pro's damaged laptop hard disk" src="https://cdn.mos.cms.futurecdn.net/kGXKNhzeAvKt2M5NziuQ57-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/kGXKNhzeAvKt2M5NziuQ57.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">IT Pro's damaged laptop hard disk </span></figcaption></figure><p>IT Pro's damaged laptop hard disk</p><p>Unfortunately, the underside had a spiral scratch due to the head being in contact with the platter as it returned to it's parked position - a classic sign of a disk that has been dropped while operating. This kind of damage means the data can't be recovered from that platter.</p><p>If the data lost is mission critical, it may be possible to recover data from platters with minor damage. Ontrack's software allows the engineers to move the heads to a safe, undamaged area in order to copy the 'good' data off before attempting to image the damaged area. Allowing the heads to read the damaged area could cause further damage and destroy good data.</p><p>If a particular platter is beyond repair, the software can tell the disk to ignore any data being read from that platter's read/write head in order to trick the disk into thinking it is working correctly - otherwise it may refuse to read any data at all.</p><p>Microscopes are used for inspecting platter damage more closely, and to check for any damage that isn't visible to the naked eye. Another recovery technique involves cleaning any debris from the platter surfaces before powering the disk up to image it. Even smoke particles can damage the platter, as they are larger than the gap between the read/write head and the platter - just a few microns - and can get caught between them.</p><p>When a disk is dropped or knocked, perhaps when a laptop is placed roughly on a desk, the read/write heads can hit the platters. The damage can be minor or severe, but if any particles are chipped off, this can fly around and cause further damage - this is why it's important to act quickly if you suspect your disk has been damaged following a drop.</p><p>Some disks arrive in the clean room with seized bearings. The engineers are able to fix this, either by fitting replacement parts or by repair, in order to get the drive spinning again. Ontrack currently stores around 1,500 different hard disk models which can be used for spare parts to repair failed disks quickly.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="b8FTtEWLJYrf2XizNUYdUP" name="" alt="Kroll Ontrack's stock of spare hard disks" src="https://cdn.mos.cms.futurecdn.net/b8FTtEWLJYrf2XizNUYdUP-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/b8FTtEWLJYrf2XizNUYdUP.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Kroll Ontrack's stock of spare hard disks </span></figcaption></figure><p>Kroll Ontrack claims to maintain a huge supply of spare hard disks</p><p>Even circuit boards can be quickly swapped over where the problem is electronic rather than mechanical. Often, you can't simply replace a controller board with an identical model as calibration data is stored on the chips. Ontrack can copy this data to a new board to get a drive running again.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="VyHfSkqGWXw5iC9baixjwC" name="" alt="Spare hard disk heads" src="https://cdn.mos.cms.futurecdn.net/VyHfSkqGWXw5iC9baixjwC-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/VyHfSkqGWXw5iC9baixjwC.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Spare hard disk heads </span></figcaption></figure><p>Don't lose your head</p><p>Solid-state disks</p><p>SSDs are still relatively new, and the recovery process is not yet automatic. Where an interface has been damaged - for example if the SATA connector has been snapped off - engineers can repair the electrical connections in order to copy the data off the drive. The same technique also applies to USB flash drives, which are fairly vulnerable to damage.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="oAf5JRVgsTsszv6VgDCenX" name="" alt="Removing memory chips from a SSD with the aid of a microscope" src="https://cdn.mos.cms.futurecdn.net/oAf5JRVgsTsszv6VgDCenX-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/oAf5JRVgsTsszv6VgDCenX.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Removing memory chips from a SSD with the aid of a microscope </span></figcaption></figure><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="6CSwmNeJVYbksR7pQyK8uf" name="" alt="Removing memory chips from a SSD with the aid of a microscope" src="https://cdn.mos.cms.futurecdn.net/6CSwmNeJVYbksR7pQyK8uf-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/6CSwmNeJVYbksR7pQyK8uf.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Removing memory chips from a SSD with the aid of a microscope </span></figcaption></figure><p>Removing memory chips from a SSD with the aid of a microscope</p><p>When it isn't possible to repair the interface, or there's another problem causing the data to be inaccessible, the memory chips can be removed from the circuit board and the data read directly from them. Data is usually stored across the chips using RAID, but the data should still be recoverable using Ontrack's proprietary software as long as the intricacies of the chip manufacturer's RAID implementation is documented.</p><p>A logical solution</p><p>Once the data from the disk has been imaged, it passes to the logical recovery team to recover the files the customer has requested. As long as the file system isn't something obscure, the data can usually be obtained fairly quickly. Even if the data was stored in a virtualised environment, or a RAID, it can be recovered but it adds extra steps to the process.</p><p>It's possible to recover files which are either corrupted or written over a damaged area of the disk, but it isn't always possible to extract the full file. Ontrack has techniques to read individual records in databases and emails within Outlook PST files. Engineers can also search for the signatures of particular file types, such as Word documents, and as long as the filename is embedded, this can be restored as well, instead of leaving the customer with a slew of files with numerical filenames.</p><p>It's crucial to have a backup strategy in place to avoid having only one copy of your critical files.</p><p>Engineers rarely open files to see what they contain only when checking that the data has been restored correctly are files opened. However, should an engineer find a selection of suspicious filenames and suspect they may contain illegal material, they must report it to the police. An investigation can then be carried out and, if the customer is suspected to have broken the law, they can be prosecuted. However, this has only happened once or twice in Ontrack's history.</p><p>What's the damage?</p><p>As we've mentioned, there are various services depending on how quickly customers need their data back: Emergency (working round the clock), Express (your data has priority, and recovery work continues on Saturdays), Standard (data is recovered during normal office hours) and Home User (time isn't a factor).</p><p>To recover a single laptop hard disk for these services would cost:</p><p>Emergency 350 + 1,495 to 2,995 + VAT</p><p>Express 95 + 795 to 1,495 + VAT</p><p>Standard 75 + 495 to 995 + VAT</p><p>Home User fixed price 599 inc VAT</p><p>For a complex enterprise system, for example a four-disk RAID from a Microsoft Exchange server, the prices are proportionally more, due to the extra labour required:</p><p>Emergency 800 + 6000 to 8000 + VAT</p><p>Express 500 + 4000 to 6000 +VAT</p><p>Standard 300 + 2000 to 4000 + VAT</p><p>If you've simply deleted some files or have an operating system or file system problem, you could try Ontrack's EasyRecovery software, which starts at just 25. Of course, while it's remarkable that Ontrack can restore data from hard disks you may have thought completely dead, it's crucial to have a backup strategy in place to avoid having only one copy of your critical files.</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/634447/miracle-workers-rescuing-data-from-the-jaws-of-disaster</link>
                                                                            <description>
                            <![CDATA[ Even if you've dropped your laptop or your server has been set on fire, all hope is not lost. Data recovery companies such as Kroll Ontrack could still rescue your valuable files. Jim Martin dons a white lab coat and goes behind the scenes at a data recovery lab. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">o2z5ZBJa49Gcd6hYAGYqdD</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/R59aR2dAQdB5omzjjQkJVG-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Fri, 24 Jun 2011 11:44:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Jim Martin ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/R59aR2dAQdB5omzjjQkJVG-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                        <media:description><![CDATA[Kroll Ontrack]]></media:description>                                                            <media:text><![CDATA[A fire damaged server from the University of Southampton]]></media:text>
                                <media:title type="plain"><![CDATA[A fire damaged server from the University of Southampton]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/R59aR2dAQdB5omzjjQkJVG-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/R59aR2dAQdB5omzjjQkJVG-1920-80.jpg" alt="A fire damaged server from the University of Southampton" /><figcaption>A fire damaged server from the University of Southampton</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/qDzbL5pLdCAGc4ZbeYrbZW-1920-80.jpg" alt="Kroll Ontrack" /><figcaption>Kroll Ontrack</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/TgK5KgZfrZs8VH5PCnMtcA-1920-80.jpg" alt="Bagging and tagging incoming hard disks so they can be tracked throughout the data recovery process" /><figcaption>Bagging and tagging incoming hard disks so they can be tracked throughout the data recovery process</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/kGXKNhzeAvKt2M5NziuQ57-1920-80.jpg" alt="IT Pro's damaged laptop hard disk" /><figcaption>IT Pro's damaged laptop hard disk</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/MuwuQGPZNQKBmhYyj5ggE4-1920-80.jpg" alt="Kroll Ontrack's imaging computers" /><figcaption>Kroll Ontrack's imaging computers</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/fSVFccmVN7UGVtnvPzNcZ4-1920-80.jpg" alt="Working on servers and RAID arrays" /><figcaption>Working on servers and RAID arrays</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/b8FTtEWLJYrf2XizNUYdUP-1920-80.jpg" alt="Kroll Ontrack's stock of spare hard disks" /><figcaption>Kroll Ontrack's stock of spare hard disks</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/VyHfSkqGWXw5iC9baixjwC-1920-80.jpg" alt="Spare hard disk heads" /><figcaption>Spare hard disk heads</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/oAf5JRVgsTsszv6VgDCenX-1920-80.jpg" alt="Removing memory chips from a SSD with the aid of a microscope" /><figcaption>Removing memory chips from a SSD with the aid of a microscope</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/6CSwmNeJVYbksR7pQyK8uf-1920-80.jpg" alt="Removing memory chips from a SSD with the aid of a microscope" /><figcaption>Removing memory chips from a SSD with the aid of a microscope</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/kbFuimLzeotVUGjePJaB5N-1920-80.jpg" alt="Computer Weekly's fire damaged camera and SD memory card" /><figcaption>Computer Weekly's fire damaged camera and SD memory card</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/xALV8TXARGxMJJJzkkejRN-1920-80.jpg" alt="The cleaned and extracted memory chip from the SD card" /><figcaption>The cleaned and extracted memory chip from the SD card</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/9JtrqWQ2XMy4uFSvVNkVL9-1920-80.jpg" alt="A fire damaged hard disk from the University's server" /><figcaption>A fire damaged hard disk from the University's server</figcaption></figure></figure><p>At some point in the past - perhaps even today - you've no doubt experienced that sickening feeling in the pit of your stomach after accidentally deleting an important file or folder. That feeling is even worse if your hard disk fails and you lose its entire contents, including months or years' worth of work, documents, finances, photos, videos and music.</p><p>If you've simply deleted a file, the good news is that it's almost always possible to recover it as the file still exists on your hard drive; the area it occupies has simply been marked as available for other data to be written over it. However, if your disk has been dropped, set on fire, submerged in water or any other horror, it might rattle or stop spinning entirely. Here, things become a lot more complicated.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="kbFuimLzeotVUGjePJaB5N" name="" alt="Computer Weekly's fire damaged camera and SD memory card" src="https://cdn.mos.cms.futurecdn.net/kbFuimLzeotVUGjePJaB5N-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/kbFuimLzeotVUGjePJaB5N.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Computer Weekly's fire damaged camera and SD memory card </span></figcaption></figure><p>Computer Weekly's fire damaged digital camera and SD card</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="xALV8TXARGxMJJJzkkejRN" name="" alt="The cleaned and extracted memory chip from the SD card" src="https://cdn.mos.cms.futurecdn.net/xALV8TXARGxMJJJzkkejRN-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/xALV8TXARGxMJJJzkkejRN.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">The cleaned and extracted memory chip from the SD card </span></figcaption></figure><p>The extracted and cleaned memory chip from the SD card</p><p>Whatever your situation, there are data recovery companies that can attempt to restore your precious data and return your life to normality. One such firm is Kroll Ontrack, based in Epsom, Surrey. IT Pro visited their facility to see how engineers are able to recover lost data in special clean rooms.</p><p>Due process</p><p>The process starts with a call to one of Ontrack's data recovery team to discuss exactly what has happened, and work out the most cost effective way to recover it. Data on just about every medium can be recovered, from magnetic tape through to the latest SSDs (solid-state drives) including USB flash drives and memory cards in your phone or camera.</p><p>Even if the data is stored on a RAID array or in a virtual machine, Ontrack can usually recover it. Robert Winter, Ontrack's Engineering Manager, gave us a guided tour of the lab and explained that, "data is recoverable in the vast majority of cases". Even if the contents of your drive have become corrupted due to a virus or some malfunction, there's still hope.</p><p>There are various options depending on the nature of the problem. For example, it might be possible to recover the data instantly via the internet in as little as an hour if it's a simple case of accidental file deletion or corruption and all your hardware is intact and working fine. However, if the hardware is faulty - either a failed disk or other component, such as a RAID controller - you'll almost certainly have to send the equipment to Ontrack's lab. For the most complex or sensitive situations, engineers can visit your premises to repair the problem and recover the data on-site.</p><p>There are also various service levels, which determine how quickly your data is recovered and returned to you. For mission-critical business data, Ontrack's engineers will work around the clock, but where budget is more of a concern, rather than time, there are cheaper options.</p><p>Recovery position</p><p>When your hard disk(s) arrive at Ontrack's lab, they're bagged and tagged to allow them to be tracked through the entire recovery process. They then head to the pre-diagnosis area and are checked to find out if they're physically working. If there are any unusual rattles or the bearings are seized, they head into the clean room. However, for those that will power up and spin, they are connected to one of the imaging PCs.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="TgK5KgZfrZs8VH5PCnMtcA" name="" alt="Bagging and tagging incoming hard disks so they can be tracked throughout the data recovery process" src="https://cdn.mos.cms.futurecdn.net/TgK5KgZfrZs8VH5PCnMtcA-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/TgK5KgZfrZs8VH5PCnMtcA.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Bagging and tagging incoming hard disks so they can be tracked throughout the data recovery process </span></figcaption></figure><p>Bagging and tagging incoming hard disks so they can be tracked throughout the data recovery process</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="MuwuQGPZNQKBmhYyj5ggE4" name="" alt="Kroll Ontrack's imaging computers" src="https://cdn.mos.cms.futurecdn.net/MuwuQGPZNQKBmhYyj5ggE4-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/MuwuQGPZNQKBmhYyj5ggE4.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Kroll Ontrack's imaging computers </span></figcaption></figure><p>Kroll Ontrack's imaging computers</p><p>The disk's contents are then copied with Ontrack's proprietary software. The software can automatically skip over bad areas - portions of the disk that may be damaged or corrupted. It then scans in reverse', backing up as far as it can until it reaches the end of the bad area in order to recover as much of the data as possible. Once the disk has been imaged, the data is stored on Ontrack's severs, which are currently fitted with 140TB of storage. The disk itself is now finished with, but the image must be worked on by the experts in the logical recovery area. This is split into various sub-areas for different file systems including Windows, Mac, Unix, plus other areas for RAID and virtualised systems.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="fSVFccmVN7UGVtnvPzNcZ4" name="" alt="Working on servers and RAID arrays" src="https://cdn.mos.cms.futurecdn.net/fSVFccmVN7UGVtnvPzNcZ4-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/fSVFccmVN7UGVtnvPzNcZ4.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Working on servers and RAID arrays </span></figcaption></figure><p>Working on servers and RAID arrays</p><p>As well as disks, data can be recovered from tape backups usually for for migration to a different format. Accidental initialisation can also be overcome and backup data recovered.</p><p>Clean room</p><p>If a hard disk isn't working and can't be imaged in the pre-diagnosis area, it heads into the clean room. The engineers within will first listen to the disk and - using their considerable experience - will be able to determine whether it's safe to remove its lid or not. Some disks' chassis are integral to the spindle so opening it can render the disk useless as it can't be spun up or reassembled.</p><p>The clean room is equipped with special benches which prevent any dust or debris falling on the platters. Disks which are deemed safe to open have their lids removed and a visual inspection is carried out to check for problems. Each platter surface is inspected for damage as this can vary between platters.</p><p>We submitted our own damaged disk to Ontrack for assessment. Our disk, which spun up but refused to show up on the BIOS, had only minor damage on the upper surface of the platter.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="kGXKNhzeAvKt2M5NziuQ57" name="" alt="IT Pro's damaged laptop hard disk" src="https://cdn.mos.cms.futurecdn.net/kGXKNhzeAvKt2M5NziuQ57-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/kGXKNhzeAvKt2M5NziuQ57.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">IT Pro's damaged laptop hard disk </span></figcaption></figure><p>IT Pro's damaged laptop hard disk</p><p>Unfortunately, the underside had a spiral scratch due to the head being in contact with the platter as it returned to it's parked position - a classic sign of a disk that has been dropped while operating. This kind of damage means the data can't be recovered from that platter.</p><p>If the data lost is mission critical, it may be possible to recover data from platters with minor damage. Ontrack's software allows the engineers to move the heads to a safe, undamaged area in order to copy the 'good' data off before attempting to image the damaged area. Allowing the heads to read the damaged area could cause further damage and destroy good data.</p><p>If a particular platter is beyond repair, the software can tell the disk to ignore any data being read from that platter's read/write head in order to trick the disk into thinking it is working correctly - otherwise it may refuse to read any data at all.</p><p>Microscopes are used for inspecting platter damage more closely, and to check for any damage that isn't visible to the naked eye. Another recovery technique involves cleaning any debris from the platter surfaces before powering the disk up to image it. Even smoke particles can damage the platter, as they are larger than the gap between the read/write head and the platter - just a few microns - and can get caught between them.</p><p>When a disk is dropped or knocked, perhaps when a laptop is placed roughly on a desk, the read/write heads can hit the platters. The damage can be minor or severe, but if any particles are chipped off, this can fly around and cause further damage - this is why it's important to act quickly if you suspect your disk has been damaged following a drop.</p><p>Some disks arrive in the clean room with seized bearings. The engineers are able to fix this, either by fitting replacement parts or by repair, in order to get the drive spinning again. Ontrack currently stores around 1,500 different hard disk models which can be used for spare parts to repair failed disks quickly.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="b8FTtEWLJYrf2XizNUYdUP" name="" alt="Kroll Ontrack's stock of spare hard disks" src="https://cdn.mos.cms.futurecdn.net/b8FTtEWLJYrf2XizNUYdUP-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/b8FTtEWLJYrf2XizNUYdUP.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Kroll Ontrack's stock of spare hard disks </span></figcaption></figure><p>Kroll Ontrack claims to maintain a huge supply of spare hard disks</p><p>Even circuit boards can be quickly swapped over where the problem is electronic rather than mechanical. Often, you can't simply replace a controller board with an identical model as calibration data is stored on the chips. Ontrack can copy this data to a new board to get a drive running again.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="VyHfSkqGWXw5iC9baixjwC" name="" alt="Spare hard disk heads" src="https://cdn.mos.cms.futurecdn.net/VyHfSkqGWXw5iC9baixjwC-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/VyHfSkqGWXw5iC9baixjwC.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Spare hard disk heads </span></figcaption></figure><p>Don't lose your head</p><p>Solid-state disks</p><p>SSDs are still relatively new, and the recovery process is not yet automatic. Where an interface has been damaged - for example if the SATA connector has been snapped off - engineers can repair the electrical connections in order to copy the data off the drive. The same technique also applies to USB flash drives, which are fairly vulnerable to damage.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="oAf5JRVgsTsszv6VgDCenX" name="" alt="Removing memory chips from a SSD with the aid of a microscope" src="https://cdn.mos.cms.futurecdn.net/oAf5JRVgsTsszv6VgDCenX-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/oAf5JRVgsTsszv6VgDCenX.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Removing memory chips from a SSD with the aid of a microscope </span></figcaption></figure><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="6CSwmNeJVYbksR7pQyK8uf" name="" alt="Removing memory chips from a SSD with the aid of a microscope" src="https://cdn.mos.cms.futurecdn.net/6CSwmNeJVYbksR7pQyK8uf-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/6CSwmNeJVYbksR7pQyK8uf.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div><figcaption itemprop="caption description" class="pull-"><span class="caption-text">Removing memory chips from a SSD with the aid of a microscope </span></figcaption></figure><p>Removing memory chips from a SSD with the aid of a microscope</p><p>When it isn't possible to repair the interface, or there's another problem causing the data to be inaccessible, the memory chips can be removed from the circuit board and the data read directly from them. Data is usually stored across the chips using RAID, but the data should still be recoverable using Ontrack's proprietary software as long as the intricacies of the chip manufacturer's RAID implementation is documented.</p><p>A logical solution</p><p>Once the data from the disk has been imaged, it passes to the logical recovery team to recover the files the customer has requested. As long as the file system isn't something obscure, the data can usually be obtained fairly quickly. Even if the data was stored in a virtualised environment, or a RAID, it can be recovered but it adds extra steps to the process.</p><p>It's possible to recover files which are either corrupted or written over a damaged area of the disk, but it isn't always possible to extract the full file. Ontrack has techniques to read individual records in databases and emails within Outlook PST files. Engineers can also search for the signatures of particular file types, such as Word documents, and as long as the filename is embedded, this can be restored as well, instead of leaving the customer with a slew of files with numerical filenames.</p><p>It's crucial to have a backup strategy in place to avoid having only one copy of your critical files.</p><p>Engineers rarely open files to see what they contain only when checking that the data has been restored correctly are files opened. However, should an engineer find a selection of suspicious filenames and suspect they may contain illegal material, they must report it to the police. An investigation can then be carried out and, if the customer is suspected to have broken the law, they can be prosecuted. However, this has only happened once or twice in Ontrack's history.</p><p>What's the damage?</p><p>As we've mentioned, there are various services depending on how quickly customers need their data back: Emergency (working round the clock), Express (your data has priority, and recovery work continues on Saturdays), Standard (data is recovered during normal office hours) and Home User (time isn't a factor).</p><p>To recover a single laptop hard disk for these services would cost:</p><p>Emergency 350 + 1,495 to 2,995 + VAT</p><p>Express 95 + 795 to 1,495 + VAT</p><p>Standard 75 + 495 to 995 + VAT</p><p>Home User fixed price 599 inc VAT</p><p>For a complex enterprise system, for example a four-disk RAID from a Microsoft Exchange server, the prices are proportionally more, due to the extra labour required:</p><p>Emergency 800 + 6000 to 8000 + VAT</p><p>Express 500 + 4000 to 6000 +VAT</p><p>Standard 300 + 2000 to 4000 + VAT</p><p>If you've simply deleted some files or have an operating system or file system problem, you could try Ontrack's EasyRecovery software, which starts at just 25. Of course, while it's remarkable that Ontrack can restore data from hard disks you may have thought completely dead, it's crucial to have a backup strategy in place to avoid having only one copy of your critical files.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ IBM System x3620 M3 review ]]></title>
                                                                                                <dc:content><![CDATA[ <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/Nkt7JLsFr2jh7ENzk3kN6-1920-80.jpg" alt="The IBM System x3620 M3" /><figcaption>The IBM System x3620 M3</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/ynT6AAFzmyaNe66FR3dgfh-1920-80.jpg" alt="The interior of the IBM System x3620 M3" /><figcaption>The interior of the IBM System x3620 M3</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/673o8bugb59fb7fBzUwfgT-1920-80.png" alt="The server has an embedded IMM which provides web browser access for remote management." /><figcaption>The server has an embedded IMM which provides web browser access for remote management.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/ra3FbcdgpajunHJArfqk4T-1920-80.png" alt="If you want KVM-over-IP remote control and virtual media services you need to buy an IMM upgrade key." /><figcaption>If you want KVM-over-IP remote control and virtual media services you need to buy an IMM upgrade key.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/MTogcUJ2a5AycoXfP7kv2h-1920-80.png" alt="IBM’s Systems Director is included with the server and provides plenty of management tools including a network mapping featur" /><figcaption>IBM’s Systems Director is included with the server and provides plenty of management tools including a network mapping featur</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/cx87Vi8wRostJPLGbhBdmF-1920-80.png" alt="The Active Energy manager upgrade allows you to use Systems Director to keep a close eye on the server’s power consumption ov" /><figcaption>The Active Energy manager upgrade allows you to use Systems Director to keep a close eye on the server’s power consumption ov</figcaption></figure></figure><p>Most of today's 2U rack servers want to cover every base of operations and try to combine just the right mix of processing power, expansion potential, storage capacity and, of course, value. One of the best examples is <a href="https://www.itpro.com/627571/hp-proliant-dl380-g7-review" target="_blank" data-original-url="https://www.itpro.com/627571/hp-proliant-dl380-g7-review">the HP ProLiant DL380 G7</a> which has all these features and more in a well-built system.</p><p>IBM's System x3620 M3 differs as it is designed primarily with high storage capacity as a key feature. To this end it only supports large capacity 3.5in SAS and SATA hard disks and has room in its front panel for up to eight of them.</p><p>IBM offers a good range of storage choices as you can keep the price down and go for high-capacity, low-performance SATA drives. The base system relies on its embedded SATA controller which supports up to four cold-swap 2TB drives plus mirrored and striped arrays. IBM offers SAS and near-line SAS drives for the x3620 but you'll need to upgrade the embedded RAID controller to use them. The motherboard's UEFI means that the x3620 shouldn't have any trouble supporting 3TB disks unlike older BIOS-equipped servers.</p><p>We had the basic ServeRAID M1015 8-port PCI-E card which can handle mirrors and stripes but this can be upgraded with an advanced feature key to support RAID5 and 50. The M5014 PCI-E card has eight 6Gbit/s SAS ports plus 256MB of onboard cache whilst the M5015 is optimised for SSDs and has 512MB of cache memory and a battery backup pack.</p><p>If you want more storage options from your IBM server then check out <a href="http://www.pcpro.co.uk/reviews/servers/360571/ibm-system-x3650-m3" target="_blank">the x3650 M3</a> which closely matches the DL380 G7 for features as it supports eight 3.5in or sixteen 2.5in SFF drives.</p><p>Four fans at the front look after motherboard and hard disk cooling but, unlike the DL380 G7 or Dell's PowerEdge R710, they are not hot-swappable. They aren't so easy to remove either as all fans are mounted in a single tray and individually cabled to a narrow power board tucked down behind the drive bays.</p><p>A single expansion cage sits to one side and provides three PCI-E slots. However, don't be fooled by the three mounting points on the backplate as there are only two PCI-E slots behind it. The third slot is located much further back inside the chassis and is only suitable for RAID cards that are internally cabled to the drive backplane.</p><p>The x3620 has two embedded Gigabit Ethernet ports but, unlike the x3650, doesn't support IBM's optional dual-port Gigabit daughtercard. Four embedded ports are now a standard feature on nearly all 2U rack servers and are included on HP's DL380 G7, Dell's R710 and even Gateway's budget priced <a href="https://www.itpro.com/628354/gateway-gr380-f1-review" target="_blank" data-original-url="https://www.itpro.com/628354/gateway-gr380-f1-review">GR380 F1</a>.</p><p>The review system came with two 675W hot-plug power supplies, but 460W power supplies are also available. The x3620 proved to be easy on the utility bill as we measured the review system pulling only 135W with Windows Server 2008 R2 in idle. With SiSoft Sandra pounding the pair of 2.27GHz E5507 Xeons this rose to only 214W. We compared this with a PowerEdge R710 equipped with a pair of 2.27GHz E5520 Xeons, 12GB of memory and four hard disks. In idle it drew 150W and peaked under heavy load at 270W.</p><p>From the IMM interface you can monitor critical components and control power. To get KVM-over IP remote control and virtual media services you need the extra hardware key which plugs into a dedicated header on the motherboard. It costs an extra 225 ex VAT.</p><p>Unlike HP's iLO3, the IMM doesn't provide any power metering or graphing tools but these features are available in IBM's Systems Director software. The base product is freely available with all IBM servers and requires the extra Active Energy Manager plug-in.</p><p>We place IBM's Systems Director a close second to HP's Insight Control software for systems management. It's much easier to use than Dell's Management Console and provides an impressive range of tools including network discovery, server monitoring, inventory and remote update services.</p><p>The x3620 M3 has a high storage capacity and is comparatively good value. The price we've shown is IBM's estimated street price but we found a diskless system with a single E5507 Xeon, 4GB of memory and an M1015 RAID card for around 1,550 which is only slightly more than Dell's R710.</p><p>Overall, the x3620 M3 is good overall value when stacked up against HP and Dell and is a fine choice for running storage hungry applications. However, if you want more from your 2U rack server, such as four Gigabit Ethernet ports, hot-swap fans and support for SFF drives, then HP's DL380 G7 is the better choice.</p><p><a href="https://www.itpro.com/632710/ibm-system-x3620-m3-review" target="_blank" data-original-url="https://www.itpro.com/632710/ibm-system-x3620-m3-review">So what's our verdict?</a></p><h2 id="verdict-18">Verdict</h2><p>The x3620 M3 is worth considering if storage capacity is a top priority as it can be boosted to 16TB using low-cost 3.5in SATA hard disks. HP’s DL380 G7 and Dell’s R710 can’t match this as they only support SFF disks.</p><p>Our tests show the x3620 M3 has low power usage and good deals are available providing you shop around. However, its limited features means the DL380 G7 is still our preferred choice of 2U rack server as it offers a lot more for a very similar price.</p><p>Chassis: 2U rack</p><p>CPU: 2 x 2.27GHz Intel Xeon E5507</p><p>Memory: 8GB 800MHz DDR3 expandable to 192GB</p><p>Storage: 2 x 250GB SATA hard disks in hot-swap carriers (max. 8)</p><p>RAID: IBM ServeRAID-M1015 SAS/SATA PCI Express card</p><p>Array support: RAID 0, 1, (optional RAID 5, 10 and 50)</p><p>Expansion: 3 x PCI Express</p><p>Network: 2 x Gigabit Ethernet</p><p>Power: 2 x 675W hot-plug supplies</p><p>Management: Embedded IMM with 10/100 port</p><p>Software: IBM ServerGuide 8.4, Systems Director 6.2.1</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/632710/ibm-system-x3620-m3-review</link>
                                                                            <description>
                            <![CDATA[ IBM’s System x3620 M3 has a sharp focus on storage-intensive applications, but is it a better choice than HP’s versatile ProLiant DL380 G7? Dave Mitchell tests IBM’s latest 2U rack server to find out. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">sgyWAKQ7J8NxSCpYXdamhw</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/Nkt7JLsFr2jh7ENzk3kN6-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Mon, 11 Apr 2011 17:37:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Servers & Storage]]></category>
                                                    <category><![CDATA[Infrastructure]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/Nkt7JLsFr2jh7ENzk3kN6-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                        <media:description><![CDATA[The interior of the IBM System x3620 M3]]></media:description>                                                            <media:text><![CDATA[The IBM System x3620 M3]]></media:text>
                                <media:title type="plain"><![CDATA[The IBM System x3620 M3]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/Nkt7JLsFr2jh7ENzk3kN6-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/Nkt7JLsFr2jh7ENzk3kN6-1920-80.jpg" alt="The IBM System x3620 M3" /><figcaption>The IBM System x3620 M3</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/ynT6AAFzmyaNe66FR3dgfh-1920-80.jpg" alt="The interior of the IBM System x3620 M3" /><figcaption>The interior of the IBM System x3620 M3</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/673o8bugb59fb7fBzUwfgT-1920-80.png" alt="The server has an embedded IMM which provides web browser access for remote management." /><figcaption>The server has an embedded IMM which provides web browser access for remote management.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/ra3FbcdgpajunHJArfqk4T-1920-80.png" alt="If you want KVM-over-IP remote control and virtual media services you need to buy an IMM upgrade key." /><figcaption>If you want KVM-over-IP remote control and virtual media services you need to buy an IMM upgrade key.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/MTogcUJ2a5AycoXfP7kv2h-1920-80.png" alt="IBM’s Systems Director is included with the server and provides plenty of management tools including a network mapping featur" /><figcaption>IBM’s Systems Director is included with the server and provides plenty of management tools including a network mapping featur</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/cx87Vi8wRostJPLGbhBdmF-1920-80.png" alt="The Active Energy manager upgrade allows you to use Systems Director to keep a close eye on the server’s power consumption ov" /><figcaption>The Active Energy manager upgrade allows you to use Systems Director to keep a close eye on the server’s power consumption ov</figcaption></figure></figure><p>Most of today's 2U rack servers want to cover every base of operations and try to combine just the right mix of processing power, expansion potential, storage capacity and, of course, value. One of the best examples is <a href="https://www.itpro.com/627571/hp-proliant-dl380-g7-review" target="_blank" data-original-url="https://www.itpro.com/627571/hp-proliant-dl380-g7-review">the HP ProLiant DL380 G7</a> which has all these features and more in a well-built system.</p><p>IBM's System x3620 M3 differs as it is designed primarily with high storage capacity as a key feature. To this end it only supports large capacity 3.5in SAS and SATA hard disks and has room in its front panel for up to eight of them.</p><p>IBM offers a good range of storage choices as you can keep the price down and go for high-capacity, low-performance SATA drives. The base system relies on its embedded SATA controller which supports up to four cold-swap 2TB drives plus mirrored and striped arrays. IBM offers SAS and near-line SAS drives for the x3620 but you'll need to upgrade the embedded RAID controller to use them. The motherboard's UEFI means that the x3620 shouldn't have any trouble supporting 3TB disks unlike older BIOS-equipped servers.</p><p>We had the basic ServeRAID M1015 8-port PCI-E card which can handle mirrors and stripes but this can be upgraded with an advanced feature key to support RAID5 and 50. The M5014 PCI-E card has eight 6Gbit/s SAS ports plus 256MB of onboard cache whilst the M5015 is optimised for SSDs and has 512MB of cache memory and a battery backup pack.</p><p>If you want more storage options from your IBM server then check out <a href="http://www.pcpro.co.uk/reviews/servers/360571/ibm-system-x3650-m3" target="_blank">the x3650 M3</a> which closely matches the DL380 G7 for features as it supports eight 3.5in or sixteen 2.5in SFF drives.</p><p>Four fans at the front look after motherboard and hard disk cooling but, unlike the DL380 G7 or Dell's PowerEdge R710, they are not hot-swappable. They aren't so easy to remove either as all fans are mounted in a single tray and individually cabled to a narrow power board tucked down behind the drive bays.</p><p>A single expansion cage sits to one side and provides three PCI-E slots. However, don't be fooled by the three mounting points on the backplate as there are only two PCI-E slots behind it. The third slot is located much further back inside the chassis and is only suitable for RAID cards that are internally cabled to the drive backplane.</p><p>The x3620 has two embedded Gigabit Ethernet ports but, unlike the x3650, doesn't support IBM's optional dual-port Gigabit daughtercard. Four embedded ports are now a standard feature on nearly all 2U rack servers and are included on HP's DL380 G7, Dell's R710 and even Gateway's budget priced <a href="https://www.itpro.com/628354/gateway-gr380-f1-review" target="_blank" data-original-url="https://www.itpro.com/628354/gateway-gr380-f1-review">GR380 F1</a>.</p><p>The review system came with two 675W hot-plug power supplies, but 460W power supplies are also available. The x3620 proved to be easy on the utility bill as we measured the review system pulling only 135W with Windows Server 2008 R2 in idle. With SiSoft Sandra pounding the pair of 2.27GHz E5507 Xeons this rose to only 214W. We compared this with a PowerEdge R710 equipped with a pair of 2.27GHz E5520 Xeons, 12GB of memory and four hard disks. In idle it drew 150W and peaked under heavy load at 270W.</p><p>From the IMM interface you can monitor critical components and control power. To get KVM-over IP remote control and virtual media services you need the extra hardware key which plugs into a dedicated header on the motherboard. It costs an extra 225 ex VAT.</p><p>Unlike HP's iLO3, the IMM doesn't provide any power metering or graphing tools but these features are available in IBM's Systems Director software. The base product is freely available with all IBM servers and requires the extra Active Energy Manager plug-in.</p><p>We place IBM's Systems Director a close second to HP's Insight Control software for systems management. It's much easier to use than Dell's Management Console and provides an impressive range of tools including network discovery, server monitoring, inventory and remote update services.</p><p>The x3620 M3 has a high storage capacity and is comparatively good value. The price we've shown is IBM's estimated street price but we found a diskless system with a single E5507 Xeon, 4GB of memory and an M1015 RAID card for around 1,550 which is only slightly more than Dell's R710.</p><p>Overall, the x3620 M3 is good overall value when stacked up against HP and Dell and is a fine choice for running storage hungry applications. However, if you want more from your 2U rack server, such as four Gigabit Ethernet ports, hot-swap fans and support for SFF drives, then HP's DL380 G7 is the better choice.</p><p><a href="https://www.itpro.com/632710/ibm-system-x3620-m3-review" target="_blank" data-original-url="https://www.itpro.com/632710/ibm-system-x3620-m3-review">So what's our verdict?</a></p><h2 id="verdict-18">Verdict</h2><p>The x3620 M3 is worth considering if storage capacity is a top priority as it can be boosted to 16TB using low-cost 3.5in SATA hard disks. HP’s DL380 G7 and Dell’s R710 can’t match this as they only support SFF disks.</p><p>Our tests show the x3620 M3 has low power usage and good deals are available providing you shop around. However, its limited features means the DL380 G7 is still our preferred choice of 2U rack server as it offers a lot more for a very similar price.</p><p>Chassis: 2U rack</p><p>CPU: 2 x 2.27GHz Intel Xeon E5507</p><p>Memory: 8GB 800MHz DDR3 expandable to 192GB</p><p>Storage: 2 x 250GB SATA hard disks in hot-swap carriers (max. 8)</p><p>RAID: IBM ServeRAID-M1015 SAS/SATA PCI Express card</p><p>Array support: RAID 0, 1, (optional RAID 5, 10 and 50)</p><p>Expansion: 3 x PCI Express</p><p>Network: 2 x Gigabit Ethernet</p><p>Power: 2 x 675W hot-plug supplies</p><p>Management: Embedded IMM with 10/100 port</p><p>Software: IBM ServerGuide 8.4, Systems Director 6.2.1</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ IBM System x3755 M3 review ]]></title>
                                                                                                <dc:content><![CDATA[ <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/nBGPcaDvjRxA5gDx8rBmcU-1920-80.jpg" alt="The IBM System x3755 M3" /><figcaption>The IBM System x3755 M3</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/ptryZpnB3dnYF5PDWexeZB-1920-80.jpg" alt="The rear of the IBM System x3755 M3" /><figcaption>The rear of the IBM System x3755 M3</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/bTnSFtJeZTtstV63b2RdZ3-1920-80.jpg" alt="The IBM System x3755 M3 with its top panel removed" /><figcaption>The IBM System x3755 M3 with its top panel removed</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/avHuAtCidcGhHEH69kkfBc-1920-80.jpg" alt="The x3755 M3 and its four Opteron 6172 processors have an impressive number of physical cores." /><figcaption>The x3755 M3 and its four Opteron 6172 processors have an impressive number of physical cores.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/BZBVrMd9zWf7458pb2hMUN-1920-80.png" alt="IBM’s IMM management chip has KVM-over-IP remote control as one of its many useful features." /><figcaption>IBM’s IMM management chip has KVM-over-IP remote control as one of its many useful features.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/4JRmNPWTMUDxnW7pEMYTJH-1920-80.png" alt="The IMM provides plenty of sensor information and their values can be linked to email and SNMP alerts." /><figcaption>The IMM provides plenty of sensor information and their values can be linked to email and SNMP alerts.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/a5hakhq4EJ8jVyr46EjSVP-1920-80.png" alt="IBM’s Systems Director software is included as standard and provides plenty of systems management and monitoring tools." /><figcaption>IBM’s Systems Director software is included as standard and provides plenty of systems management and monitoring tools.</figcaption></figure></figure><p>Whereas Dell and HP were quick to see the benefits of AMD's Opteron 6100 server processors it's taken a lot longer for IBM to catch on. Big Blue's first four-socket 6100 server is finally out the door and IBM has granted ITPRO exclusive access to the first review sample in the UK.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="ZZRE793LVnmmrzjLSy3d6B" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/ZZRE793LVnmmrzjLSy3d6B-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/ZZRE793LVnmmrzjLSy3d6B.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The System x3755 M3 uses a 2U chassis so it matches the rack cabinet processing density of <a href="https://www.itpro.com/625213/dell-poweredge-r815-review" target="_blank" data-original-url="https://www.itpro.com/625213/dell-poweredge-r815-review">Dell's 2U PowerEdge R815</a>. Its low profile also makes it more compact than HP's 4U ProLiant DL585 G7.</p><p>IBM has clearly prioritised storage capacity as, unlike Dell's and HP's servers, the x3755 doesn't support 2.5in SFF hard disks. There's room at the front for eight standard 3.5in disks allowing capacity to be pushed to 16TB using 2TB SATA models.</p><p>IBM also offers 2TB near-line SAS drives or you can go for 600GB 15k SAS drives if performance is more important than capacity. The server doesn't have an embedded disk controller so our review system came with IBM's base ServeRAID M1015 PCI Express SAS card.</p><p>This eight-port card supports mirrors and stripes and can be upgraded to RAID 5 capabilities. Alternatively, you can specify an M5015 card which supports all these RAID arrays, has 512MB of cache memory plus battery backup and can be upgraded to handle dual-drive redundant RAID-6 arrays.</p><p>The price of the review system includes four 2.1GHz 12-core Opteron 6172 chips which have a TDP rating of 115W. Memory support is a lot less confusing that that provided by the 5500 and 5600 Xeons as all Opteron 6100s support 1333MHz memory. The server has eight DIMM slots per processor and supports up to 512GB using 16GB RDIMM modules. A 128GB limit applies if you use lower-cost UDIMM memory modules.</p><p>IBM scored well in our power tests. With Windows Server 2008 R2 in idle we measured the x3755 drawing a very modest 214W. Using SiSoft Sandra to push all 48 physical cores to near maximum utilisation saw the power draw peak at 552W.</p><p>The x3755 uses noticeably less power than its closest competitors. A Dell R815 with quad 2.2GHz Opteron 6174 processors and 64GB of memory was measured at 335W in idle and 618W under load. An HP DL585 G7 with four 1200W supplies and the same processors, but only half the memory, recorded 356W in idle and a much higher peak of 710W.</p><p>Build quality of the x3755 is extremely good and easily a match for Dell and HP. Internal cooling is handled by a bank of five hot-swap fans and these are accessed via a small hatch in the server's lid. Due to the internal layout you can't run the server with the whole lid removed and doing so will initiate an immediate system shutdown.</p><p>Internal design is quite unusual and had been largely dictated by the power supply canister which sits on top of the motherboard. This is hinged at the front and can be easily released and swung up to reveal the processor and memory sockets underneath.</p><p>An expansion cage is located to the left side and IBM's tool-less design makes it very easy to remove. The M1015 RAID card is fitted in a dedicated slot in the cage's riser and there are three more PCI-E slots at the back with all accepting half-height, half-width cards.</p><p>IBM is also pitching the x3755 for server virtualisation duties and its internal USB port can be used to boot an embedded hypervisor. However, both Dell and HP have been more imaginative as they also offer internal SD memory card slots for this function.</p><p>For remote management the server comes with IBM's embedded IMM (integrated management module) which has its own dedicated network port at the rear. You can monitor critical components, remotely control power, run unattended firmware upgrades. There's also support for KVM-over-IP remote control and virtual media services. The latter allow the host system remotely controlling the server to present its floppy and optical drives to it so they appear to the server as local drives. This is useful as no optical drive is built in.</p><p>General systems management is handled by IBM's Systems Director 6.2 which is included as standard. It provides network discovery, inventory, system monitoring and alerting facilities. The Active Energy Manager plug-in adds power capping functions and trending graphs of power consumption over time.</p><p>We've quoted IBM's estimated street price for the review system and we'd expect its channel partners to offer good discounts. They'll have to go some way to beat Dell's R815 on price though, but we still rate the System x3755 M3 as a top choice as a four-processor server platform since it's power efficient, well designed and has a high storage capacity.</p><p><a href="https://www.itpro.com/632470/ibm-system-x3755-m3-review" target="_blank" data-original-url="https://www.itpro.com/632470/ibm-system-x3755-m3-review">So what's our verdict?</a></p><h2 id="verdict-19">Verdict</h2><p>IBM’s new x3755 M3 brings together a fine combination of high processing density and low power consumption. It's well-made and well-designed with very good power redundancy for a 2U rack server. It doesn’t support SFF hard disks but IBM’s crafty design means it can pack in eight hot-swap 3.5in drives giving it great internal storage capacity. It can’t match the low price of Dell’s PowerEdge R815 or HP’s DL585 G7 for expansion potential, but its lower power consumption makes it a fine server that's well worth the price premium.</p><p>Chassis: 2U rack CPU: 4 x 2.1GHz AMD Opteron 6172 Memory: 64GB DDR3 1,333MHz RDIMM expandable to 512GB Storage: 250GB SATA hard disk in hot-swap carrier (max. 8) RAID: IBM ServeRAID-M1015 PCI-e card Array support: RAID 0, 1, (optional RAID 5) Expansion: 3 x PCI Express Network: 4 x Gigabit Ethernet Power: 3 x 1100W hot-plug supplies Management: Embedded IMM with 10/100 port Software: IBM ServerGuide 8.4, Systems Director 6.2.1</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/632470/ibm-system-x3755-m3-review</link>
                                                                            <description>
                            <![CDATA[ IBM’s latest System x3755 M3 is its first rack server to support AMD’s Opteron 6100 processors. It’s taken a very long time to materialise and in this exclusive review we tell you whether it’s a better bet than the four-socket AMD servers from HP and Dell. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">vLLxwuNPqTPAdm4rAZoc6D</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/nBGPcaDvjRxA5gDx8rBmcU-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Mon, 04 Apr 2011 11:26:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Components]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/nBGPcaDvjRxA5gDx8rBmcU-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                        <media:description><![CDATA[The rear of the IBM System x3755 M3]]></media:description>                                                            <media:text><![CDATA[The IBM System x3755 M3]]></media:text>
                                <media:title type="plain"><![CDATA[The IBM System x3755 M3]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/nBGPcaDvjRxA5gDx8rBmcU-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/nBGPcaDvjRxA5gDx8rBmcU-1920-80.jpg" alt="The IBM System x3755 M3" /><figcaption>The IBM System x3755 M3</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/ptryZpnB3dnYF5PDWexeZB-1920-80.jpg" alt="The rear of the IBM System x3755 M3" /><figcaption>The rear of the IBM System x3755 M3</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/bTnSFtJeZTtstV63b2RdZ3-1920-80.jpg" alt="The IBM System x3755 M3 with its top panel removed" /><figcaption>The IBM System x3755 M3 with its top panel removed</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/avHuAtCidcGhHEH69kkfBc-1920-80.jpg" alt="The x3755 M3 and its four Opteron 6172 processors have an impressive number of physical cores." /><figcaption>The x3755 M3 and its four Opteron 6172 processors have an impressive number of physical cores.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/BZBVrMd9zWf7458pb2hMUN-1920-80.png" alt="IBM’s IMM management chip has KVM-over-IP remote control as one of its many useful features." /><figcaption>IBM’s IMM management chip has KVM-over-IP remote control as one of its many useful features.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/4JRmNPWTMUDxnW7pEMYTJH-1920-80.png" alt="The IMM provides plenty of sensor information and their values can be linked to email and SNMP alerts." /><figcaption>The IMM provides plenty of sensor information and their values can be linked to email and SNMP alerts.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/a5hakhq4EJ8jVyr46EjSVP-1920-80.png" alt="IBM’s Systems Director software is included as standard and provides plenty of systems management and monitoring tools." /><figcaption>IBM’s Systems Director software is included as standard and provides plenty of systems management and monitoring tools.</figcaption></figure></figure><p>Whereas Dell and HP were quick to see the benefits of AMD's Opteron 6100 server processors it's taken a lot longer for IBM to catch on. Big Blue's first four-socket 6100 server is finally out the door and IBM has granted ITPRO exclusive access to the first review sample in the UK.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="ZZRE793LVnmmrzjLSy3d6B" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/ZZRE793LVnmmrzjLSy3d6B-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/ZZRE793LVnmmrzjLSy3d6B.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The System x3755 M3 uses a 2U chassis so it matches the rack cabinet processing density of <a href="https://www.itpro.com/625213/dell-poweredge-r815-review" target="_blank" data-original-url="https://www.itpro.com/625213/dell-poweredge-r815-review">Dell's 2U PowerEdge R815</a>. Its low profile also makes it more compact than HP's 4U ProLiant DL585 G7.</p><p>IBM has clearly prioritised storage capacity as, unlike Dell's and HP's servers, the x3755 doesn't support 2.5in SFF hard disks. There's room at the front for eight standard 3.5in disks allowing capacity to be pushed to 16TB using 2TB SATA models.</p><p>IBM also offers 2TB near-line SAS drives or you can go for 600GB 15k SAS drives if performance is more important than capacity. The server doesn't have an embedded disk controller so our review system came with IBM's base ServeRAID M1015 PCI Express SAS card.</p><p>This eight-port card supports mirrors and stripes and can be upgraded to RAID 5 capabilities. Alternatively, you can specify an M5015 card which supports all these RAID arrays, has 512MB of cache memory plus battery backup and can be upgraded to handle dual-drive redundant RAID-6 arrays.</p><p>The price of the review system includes four 2.1GHz 12-core Opteron 6172 chips which have a TDP rating of 115W. Memory support is a lot less confusing that that provided by the 5500 and 5600 Xeons as all Opteron 6100s support 1333MHz memory. The server has eight DIMM slots per processor and supports up to 512GB using 16GB RDIMM modules. A 128GB limit applies if you use lower-cost UDIMM memory modules.</p><p>IBM scored well in our power tests. With Windows Server 2008 R2 in idle we measured the x3755 drawing a very modest 214W. Using SiSoft Sandra to push all 48 physical cores to near maximum utilisation saw the power draw peak at 552W.</p><p>The x3755 uses noticeably less power than its closest competitors. A Dell R815 with quad 2.2GHz Opteron 6174 processors and 64GB of memory was measured at 335W in idle and 618W under load. An HP DL585 G7 with four 1200W supplies and the same processors, but only half the memory, recorded 356W in idle and a much higher peak of 710W.</p><p>Build quality of the x3755 is extremely good and easily a match for Dell and HP. Internal cooling is handled by a bank of five hot-swap fans and these are accessed via a small hatch in the server's lid. Due to the internal layout you can't run the server with the whole lid removed and doing so will initiate an immediate system shutdown.</p><p>Internal design is quite unusual and had been largely dictated by the power supply canister which sits on top of the motherboard. This is hinged at the front and can be easily released and swung up to reveal the processor and memory sockets underneath.</p><p>An expansion cage is located to the left side and IBM's tool-less design makes it very easy to remove. The M1015 RAID card is fitted in a dedicated slot in the cage's riser and there are three more PCI-E slots at the back with all accepting half-height, half-width cards.</p><p>IBM is also pitching the x3755 for server virtualisation duties and its internal USB port can be used to boot an embedded hypervisor. However, both Dell and HP have been more imaginative as they also offer internal SD memory card slots for this function.</p><p>For remote management the server comes with IBM's embedded IMM (integrated management module) which has its own dedicated network port at the rear. You can monitor critical components, remotely control power, run unattended firmware upgrades. There's also support for KVM-over-IP remote control and virtual media services. The latter allow the host system remotely controlling the server to present its floppy and optical drives to it so they appear to the server as local drives. This is useful as no optical drive is built in.</p><p>General systems management is handled by IBM's Systems Director 6.2 which is included as standard. It provides network discovery, inventory, system monitoring and alerting facilities. The Active Energy Manager plug-in adds power capping functions and trending graphs of power consumption over time.</p><p>We've quoted IBM's estimated street price for the review system and we'd expect its channel partners to offer good discounts. They'll have to go some way to beat Dell's R815 on price though, but we still rate the System x3755 M3 as a top choice as a four-processor server platform since it's power efficient, well designed and has a high storage capacity.</p><p><a href="https://www.itpro.com/632470/ibm-system-x3755-m3-review" target="_blank" data-original-url="https://www.itpro.com/632470/ibm-system-x3755-m3-review">So what's our verdict?</a></p><h2 id="verdict-19">Verdict</h2><p>IBM’s new x3755 M3 brings together a fine combination of high processing density and low power consumption. It's well-made and well-designed with very good power redundancy for a 2U rack server. It doesn’t support SFF hard disks but IBM’s crafty design means it can pack in eight hot-swap 3.5in drives giving it great internal storage capacity. It can’t match the low price of Dell’s PowerEdge R815 or HP’s DL585 G7 for expansion potential, but its lower power consumption makes it a fine server that's well worth the price premium.</p><p>Chassis: 2U rack CPU: 4 x 2.1GHz AMD Opteron 6172 Memory: 64GB DDR3 1,333MHz RDIMM expandable to 512GB Storage: 250GB SATA hard disk in hot-swap carrier (max. 8) RAID: IBM ServeRAID-M1015 PCI-e card Array support: RAID 0, 1, (optional RAID 5) Expansion: 3 x PCI Express Network: 4 x Gigabit Ethernet Power: 3 x 1100W hot-plug supplies Management: Embedded IMM with 10/100 port Software: IBM ServerGuide 8.4, Systems Director 6.2.1</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Fujitsu Primergy MX130 S1 review ]]></title>
                                                                                                <dc:content><![CDATA[ <p>The latest microservers are aimed squarely at small business that have traditionally relied on a PC for providing simple file and print services. HP was first out of the blocks with its compact <a href="https://www.itpro.com/630898/hp-proliant-microserver-n36l-review" target="_blank" data-original-url="https://www.itpro.com/630898/hp-proliant-microserver-n36l-review">MicroServer N36L</a> and now Fujitsu has introduced its Primergy MX130 S1.</p><p>The MX130 targets small businesses of up to 15 users that want a central location for basic file sharing and print services. Along with Windows Server 2008 R2, the server is also validated for Red Hat Enterprise Linux. We can't see many small businesses wanting to tussle with the latter though as it's far too complicated.</p><p>Windows Server 2008 R2 Foundation can be preinstalled for 145 which is good value. Fujitsu advised us it also plans to offer SBS Essentials 2011 on this server when Microsoft launches it later this year.</p><p>The system on review looks pricey when compared to the HP MicroServer. However, the Primergy's 3.1GHz AMD Athlon II X2 255 is a lot faster than the little 1.3GHz Athlon II Neo in the MicroServer, although you can save cash by opting for an Athlon 220 or a single-core Sempron processor.</p><p>The price for the review system also includes two 1TB SATA hard disks. We shopped around and found an Athlon 220 model with 2GB of RAM and a pair of 250GB drives on EBuyer for around 250 ex VAT which puts it closer in price to the MicroServer.</p><p>Rather than design a completely new chassis for the MX130 S1, Fujitsu has simply used its standard Esprimo desktop casing. Physically, it's little different from <a href="https://www.itpro.com/630466/fujitsu-esprimo-e5645-review" target="_blank" data-original-url="https://www.itpro.com/630466/fujitsu-esprimo-e5645-review">the Esprimo E5645</a> that failed to impress us when we recently reviewed it.</p><p>However, a big bonus of this chassis is it's designed to be very quiet and we can say it's almost silent. The cooling arrangement is a little strange, though, as the chassis has a fan mounted at the front, but the processor heatsink is barely an inch behind it and is also fitted with its own fan.</p><p>The cover is removed by pressing buttons on each side and pulling the complete shell forwards and it can be padlocked shut. The four memory slots are easily accessible and the server can be upgraded to 16GB, but if you opt for Server 2008 Foundation remember this OS only supports up to 8GB.</p><p>For storage the motherboard has six embedded SATA ports, but the integral AMD RAID controller only supports mirrors and stripes. Up to two 3.5in hard disks can be fitted with one mounted under the power supply and the other beneath the 5.25in bay.</p><p>HP's MicroServer provides far easier access to its four drive bays as they are located right behind its front door with the hard disks fitted in flimsy but easily removable carriers. To get at the drives in the MX130 you need to remove the shell and unclip the front bay or the power supply unit and swing them up.</p><p>You can increase the drive count as optional 2.5in hard disk mounting kits are also available. Two drives can be placed under the power supply, two more in the front bay and, if you dispense with the optical drive, another pair can be squeezed in here as well.</p><p>There's room to expand as the motherboard has two PCI Express slots as well as another pair of 32-bit PCI slots. They are easily accessible and all support half-height expansion cards.</p><p>Some businesses are putting microservers into small remote offices to provide basic file sharing functions with AD access controls. In these scenarios it would be very useful to be able to remotely monitor and manage the server from the head office, but the MX130 is devoid of these features.</p><p>The MX130 was supplied to us with Fujitsu's ServerView software installed, but as the server doesn't have an embedded iRMC2 controller there's little you can do with it. We were advised that this will be rectified later this year with the release of a ServerView agent for local management only, along with the ServerView Installation Manager software.</p><p>HP's MicroServer is currently your best bet if you want full remote management. For only 55 extra you can have the Remote Access Control PCI Express card. It's surprisingly sophisticated as it has web browser access, hardware monitoring, power controls, virtual media services and KVM-over-IP remote control.</p><p>Fujitsu's MX130 S1 has a reasonable hardware specification, is remarkably quiet and has good expansion potential. However, its desktop PC chassis is not designed to provide easy access to the hard disks and if you want full remote management capabilities then HP's little MicroServer is a much better choice.</p><p><a href="https://www.itpro.com/631489/fujitsu-primergy-mx130-s1-review" target="_blank" data-original-url="https://www.itpro.com/631489/fujitsu-primergy-mx130-s1-review">So what's our verdict?</a></p><h2 id="verdict-20">Verdict</h2><p>The Primergy MX130 S1 is compact and quiet with good expansion potential but, apart from support for ECC memory, doesn’t offer much more than a standard desktop PC. HP’s MicroServer may have a slower processor but it costs less, its hard disks are far more accessible and it beats Fujitsu easily for remote management with its optional RAC card.</p><p>Chassis: Desktop CPU: 3.1GHz AMD Athlon II X2 255 Memory: 4GB 1,333MHz DDR3 expandable to 16GB Storage: 2 x 1TB WD SATA cold-swap hard disks (max 2 x 3.5in or 6 x 2.5in with optional 2.5in disk mounting kits) RAID: integrated six-port AMD SATA controller Array support: RAID 0, 1 Expansion slots: 2 x PCI Express, 2 x 32-bit PCI Ports: 12 x USB2 (2 front, 6 rear, 4 internal) Network: Gigabit Ethernet Power: 250W internal supply</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/631489/fujitsu-primergy-mx130-s1-review</link>
                                                                            <description>
                            <![CDATA[ Fujitsu claims its new Primergy MX130 S1 is a microserver aimed at small businesses, but we think it’s just a PC in a thinly-veiled disguise. Read this review to find out why. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">ihkngH9FxQ9NgZGvwAGSR9</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/SVsgSyvXRK4QpN8VkKvifh-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Tue, 01 Mar 2011 13:59:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Servers & Storage]]></category>
                                                    <category><![CDATA[Infrastructure]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/SVsgSyvXRK4QpN8VkKvifh-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[The Fujitsu Primergy MX130 S1]]></media:description>                                                            <media:text><![CDATA[The Fujitsu Primergy MX130 S1]]></media:text>
                                <media:title type="plain"><![CDATA[The Fujitsu Primergy MX130 S1]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/SVsgSyvXRK4QpN8VkKvifh-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>The latest microservers are aimed squarely at small business that have traditionally relied on a PC for providing simple file and print services. HP was first out of the blocks with its compact <a href="https://www.itpro.com/630898/hp-proliant-microserver-n36l-review" target="_blank" data-original-url="https://www.itpro.com/630898/hp-proliant-microserver-n36l-review">MicroServer N36L</a> and now Fujitsu has introduced its Primergy MX130 S1.</p><p>The MX130 targets small businesses of up to 15 users that want a central location for basic file sharing and print services. Along with Windows Server 2008 R2, the server is also validated for Red Hat Enterprise Linux. We can't see many small businesses wanting to tussle with the latter though as it's far too complicated.</p><p>Windows Server 2008 R2 Foundation can be preinstalled for 145 which is good value. Fujitsu advised us it also plans to offer SBS Essentials 2011 on this server when Microsoft launches it later this year.</p><p>The system on review looks pricey when compared to the HP MicroServer. However, the Primergy's 3.1GHz AMD Athlon II X2 255 is a lot faster than the little 1.3GHz Athlon II Neo in the MicroServer, although you can save cash by opting for an Athlon 220 or a single-core Sempron processor.</p><p>The price for the review system also includes two 1TB SATA hard disks. We shopped around and found an Athlon 220 model with 2GB of RAM and a pair of 250GB drives on EBuyer for around 250 ex VAT which puts it closer in price to the MicroServer.</p><p>Rather than design a completely new chassis for the MX130 S1, Fujitsu has simply used its standard Esprimo desktop casing. Physically, it's little different from <a href="https://www.itpro.com/630466/fujitsu-esprimo-e5645-review" target="_blank" data-original-url="https://www.itpro.com/630466/fujitsu-esprimo-e5645-review">the Esprimo E5645</a> that failed to impress us when we recently reviewed it.</p><p>However, a big bonus of this chassis is it's designed to be very quiet and we can say it's almost silent. The cooling arrangement is a little strange, though, as the chassis has a fan mounted at the front, but the processor heatsink is barely an inch behind it and is also fitted with its own fan.</p><p>The cover is removed by pressing buttons on each side and pulling the complete shell forwards and it can be padlocked shut. The four memory slots are easily accessible and the server can be upgraded to 16GB, but if you opt for Server 2008 Foundation remember this OS only supports up to 8GB.</p><p>For storage the motherboard has six embedded SATA ports, but the integral AMD RAID controller only supports mirrors and stripes. Up to two 3.5in hard disks can be fitted with one mounted under the power supply and the other beneath the 5.25in bay.</p><p>HP's MicroServer provides far easier access to its four drive bays as they are located right behind its front door with the hard disks fitted in flimsy but easily removable carriers. To get at the drives in the MX130 you need to remove the shell and unclip the front bay or the power supply unit and swing them up.</p><p>You can increase the drive count as optional 2.5in hard disk mounting kits are also available. Two drives can be placed under the power supply, two more in the front bay and, if you dispense with the optical drive, another pair can be squeezed in here as well.</p><p>There's room to expand as the motherboard has two PCI Express slots as well as another pair of 32-bit PCI slots. They are easily accessible and all support half-height expansion cards.</p><p>Some businesses are putting microservers into small remote offices to provide basic file sharing functions with AD access controls. In these scenarios it would be very useful to be able to remotely monitor and manage the server from the head office, but the MX130 is devoid of these features.</p><p>The MX130 was supplied to us with Fujitsu's ServerView software installed, but as the server doesn't have an embedded iRMC2 controller there's little you can do with it. We were advised that this will be rectified later this year with the release of a ServerView agent for local management only, along with the ServerView Installation Manager software.</p><p>HP's MicroServer is currently your best bet if you want full remote management. For only 55 extra you can have the Remote Access Control PCI Express card. It's surprisingly sophisticated as it has web browser access, hardware monitoring, power controls, virtual media services and KVM-over-IP remote control.</p><p>Fujitsu's MX130 S1 has a reasonable hardware specification, is remarkably quiet and has good expansion potential. However, its desktop PC chassis is not designed to provide easy access to the hard disks and if you want full remote management capabilities then HP's little MicroServer is a much better choice.</p><p><a href="https://www.itpro.com/631489/fujitsu-primergy-mx130-s1-review" target="_blank" data-original-url="https://www.itpro.com/631489/fujitsu-primergy-mx130-s1-review">So what's our verdict?</a></p><h2 id="verdict-20">Verdict</h2><p>The Primergy MX130 S1 is compact and quiet with good expansion potential but, apart from support for ECC memory, doesn’t offer much more than a standard desktop PC. HP’s MicroServer may have a slower processor but it costs less, its hard disks are far more accessible and it beats Fujitsu easily for remote management with its optional RAC card.</p><p>Chassis: Desktop CPU: 3.1GHz AMD Athlon II X2 255 Memory: 4GB 1,333MHz DDR3 expandable to 16GB Storage: 2 x 1TB WD SATA cold-swap hard disks (max 2 x 3.5in or 6 x 2.5in with optional 2.5in disk mounting kits) RAID: integrated six-port AMD SATA controller Array support: RAID 0, 1 Expansion slots: 2 x PCI Express, 2 x 32-bit PCI Ports: 12 x USB2 (2 front, 6 rear, 4 internal) Network: Gigabit Ethernet Power: 250W internal supply</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ What is Thunderbolt and why is it so exciting? ]]></title>
                                                                                                <dc:content><![CDATA[ <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/qLjSrKFyRKVqqKrCAQBM5U-1920-80.jpg" alt="The Intel/Apple Thunderbolt logo" /><figcaption>The Intel/Apple Thunderbolt logo</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/VqkUPVhLu3w6UL74hbj6Ne-1920-80.jpg" alt="Thunderbolt cables are indistinguishable from Mini DisplayPort cables apart from the logo" /><figcaption>Thunderbolt cables are indistinguishable from Mini DisplayPort cables apart from the logo</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/UJHkKpgXf9T8VidSSV4DEf-1920-80.jpg" alt="The anatomy of Thunderbolt" /><figcaption>The anatomy of Thunderbolt</figcaption></figure></figure><p>We take the cables that transfer data to and from our computers for granted, but the technology behind them is actually quite intricate. USB is the most familiar and is used to connect seemingly everything to our computers, from printers and keyboards to scanners and hard disks.</p><p>USB3 is the latest version of the familiar connector technology and is finally making its way into the majority of laptops thanks to the chipsets included with Intel's new Sandy Bridge processors. With a theoretical speed of 4.8Gb/s, we found that a typical USB3 hard disk was four times faster than a USB2 disk. Despite this impressive performance, USB3 could be dead on arrival thanks to the emergence of Thunderbolt.</p><p>What is Thunderbolt?</p><p>Thunderbolt is a new cable and connector technology that is designed to be significantly faster and more flexible than existing cabling. It can transfer data and video, as well as potentially network packets and audio, over a single cable. Thunderbolt's potential for reducing the tangled mass of cabling snaking out of our computers is obvious.</p><p>Compared to USB3's theoretical speed of 4.8Gb/s, Thunderbolt has a theoretical speed of 10Gb/s, more than twice as fast on paper, with room to grow even faster.</p><p>Does it actually work?</p><p>As with any new technology, we were initially sceptical of Intel's grandiose claims, but we were instantly won over by a demonstration of the technology at Apple's London offices. The company's new MacBook Pro laptops are the first to go on sale equipped with a Thunderbolt port.</p><p>When connected to a prototype five-disk RAID 0 array from Promise, the laptop was able to simultaneously play four 1080p videos stored on the array without any apparent dropped frames or loss of audio sync. Even more impressively, in a separate test, a 6GB file was duplicated in a mere 15 seconds!</p><p>Thunderbolt's staggeringly fast file duplication performance is truly jaw-dropping. For a rough comparison, a Lenovo ThinkPad X301 laptop with an internal SATA II 128GB Samsung SSD duplicated a different 6GB file in two minutes, 54 seconds.</p><p>How does it work?</p><p>Although the initial Thunderbolt prototypes used fibre optic cabling, the version of the technology used in the MacBook Pro laptops is based on familiar, tried and tested copper cabling due to the current high price of optical wiring.</p><p>The rest of Thunderbolt is actually based on several existing technologies. The connectors themselves are Apple's existing Mini DisplayPort plugs which are used to connect monitors and projectors to the company's MacBook, Mac mini and iMac series of computers. Each Thunderbolt cable actually consists of two 10Gb/s PCI Express channels for transferring data and a DisplayPort channel for video. A special Thunderbolt chip has to be present in the computer and each Thunderbolt peripheral.</p><p>Can I buy Thunderbolt peripherals now?</p><p>No. Several companies have announced their support for the new technology, but only storage manufacturers LaCie and Promise have committed to bringing out Thunderbolt-equipped RAID arrays by the middle of this year.</p><p>How do I connect more than one Thunderbolt peripheral?</p><p>Since the MacBook Pro laptops only have a single Thunderbolt port, Thunderbolt peripherals should have two ports each allowing devices to be daisy-chained together. At the moment, only a maximum of six Thunderbolt devices can be connected to a single port.</p><p>Can I upgrade my existing computer to Thunderbolt?</p><p>At the moment, only Apple is shipping Thunderbolt-equipped computers. Intel is apparently working with other manufacturers to bring Thunderbolt to their computers, but the chip giant doesn't have any details about whether it will be possible to upgrade existing computers to Thunderbolt.</p><p>Some sources state that upgrades won't be possible since the Thunderbolt chip requires direct access to the computer's PCI Express channels. This apparently wouldn't be possible even using a PCI Express expansion card, but we don't have confirmation of this.</p><p>Although some have claimed Apple has an exclusive use of the technology until next year, Intel spokesman Stephen Dunne specifically told ITPRO that this isn't true. Both Apple and Intel characterise their involvement in the development of Thunderbolt as a 'close technical collaboration'.</p><p>Can I continue using my current non-Thunderbolt peripherals? Can I plug non-Thunderbolt devices into a Thunderbolt port?</p><p>Although Thunderbolt could theoretically eliminate the need for all other ports, the current six device restriction and the large number of existing peripherals means that the MacBook Pro laptops still come with Ethernet, FireWire 800 and USB2 ports among others. This is likely to be the case with other computers too for some time even as Thunderbolt catches on.</p><p>It's possible to connect current peripherals to a Thunderbolt port using soon-to-be available adapters, but these won't be able to take advantage of Thunderbolt speeds. Intel claims that the presence of non-Thunderbolt devices on the daisy chain won't slow down Thunderbolt peripherals.</p><p>Apple's customers can use their existing Mini DisplayPort monitors and projectors with the new MacBook Pros since Mini DisplayPort and Thunderbolt connectors are identical and therefore compatible with each other. These displays would necessarily have to be at the end of the daisy chain since they don't have a second port to continue the chain. Even if they did, current Mini DisplayPort devices don't have a Thunderbolt chip to maintain the speed of any Thunderbolt peripherals.</p><p>As any FireWire user knows, the topography of a daisy-chain can be potentially confusing. This is perhaps one of the few inherent potential disadvantages of Thunderbolt compared to USB which uses hubs instead of a daisy chains to connect multiple devices to a single port.</p><p>Can a Thunderbolt cable power a portable hard disk and other portable peripherals?</p><p>This shouldn't be a problem. USB2 ports can provide just 500mA while USB3 can provide 900mA. Thunderbolt cables can provide 10W of power several times as much.</p><p>Can you use a Thunderbolt disk as a boot disk?</p><p>Apple officials wouldn't be drawn on whether it would be possible to use a Thunderbolt disk as a boot disk. Nor would they be drawn on whether it would be possible connect two Macs together using a Thunderbolt cable and transfer data between the two as if one of the computers was just a hard disk, as with FireWire's incredibly useful Target Disk Mode. We would be very surprised if this wasn't the case though.</p><p>Thunderbolt-equipped motherboards from companies other than Apple are probably still on the drawing board, but we suspect booting support would depend on the motherboard's BIOS/EFI.</p><p>Conclusion</p><p>Thunderbolt is one of the most impressively jaw-dropping technologies we've seen in the past five years and perhaps the first such technology we've seen since the first WiFi-equipped laptops were introduced around ten years ago.</p><p>Companies will be undoubtedly cautious about adopting the technology following the Sandy Bridge <a href="https://www.itpro.com/630562/sandy-bridge-chipset-flaw-costs-intel" target="_blank" data-original-url="https://www.itpro.com/630562/sandy-bridge-chipset-flaw-costs-intel">SATA flaw</a>. Plus, it will take some time for companies to release both Thunderbolt-equipped computers and peripherals and for those products to drop in price. Plus, if your company has just bought and deployed new computers, it's unlikely you'll want to upgrade or replace them anytime soon, even if you do transfer massive amounts of data around. If you are planning such a procurement though, then it's definitely worth keeping an eye on Thunderbolt.</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/631453/what-is-thunderbolt-and-why-is-it-so-exciting</link>
                                                                            <description>
                            <![CDATA[ Thunderbolt is an incredibly impressive new cable and connector technology from Intel. Formerly known as Light Peak, the highly-anticipated technology has finally arrived and could be the biggest thing to happen to computers this year. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">ww6SEjz6E4cbyLoyeQB5zS</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/qLjSrKFyRKVqqKrCAQBM5U-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Mon, 28 Feb 2011 18:36:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Laptops]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                                                                                    <dc:creator><![CDATA[ Alan Lu ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/qLjSrKFyRKVqqKrCAQBM5U-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                        <media:description><![CDATA[Thunderbolt cables are indistinguishable from Mini DisplayPort cables apart from the logo]]></media:description>                                                            <media:text><![CDATA[The Intel/Apple Thunderbolt logo]]></media:text>
                                <media:title type="plain"><![CDATA[The Intel/Apple Thunderbolt logo]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/qLjSrKFyRKVqqKrCAQBM5U-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/qLjSrKFyRKVqqKrCAQBM5U-1920-80.jpg" alt="The Intel/Apple Thunderbolt logo" /><figcaption>The Intel/Apple Thunderbolt logo</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/VqkUPVhLu3w6UL74hbj6Ne-1920-80.jpg" alt="Thunderbolt cables are indistinguishable from Mini DisplayPort cables apart from the logo" /><figcaption>Thunderbolt cables are indistinguishable from Mini DisplayPort cables apart from the logo</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/UJHkKpgXf9T8VidSSV4DEf-1920-80.jpg" alt="The anatomy of Thunderbolt" /><figcaption>The anatomy of Thunderbolt</figcaption></figure></figure><p>We take the cables that transfer data to and from our computers for granted, but the technology behind them is actually quite intricate. USB is the most familiar and is used to connect seemingly everything to our computers, from printers and keyboards to scanners and hard disks.</p><p>USB3 is the latest version of the familiar connector technology and is finally making its way into the majority of laptops thanks to the chipsets included with Intel's new Sandy Bridge processors. With a theoretical speed of 4.8Gb/s, we found that a typical USB3 hard disk was four times faster than a USB2 disk. Despite this impressive performance, USB3 could be dead on arrival thanks to the emergence of Thunderbolt.</p><p>What is Thunderbolt?</p><p>Thunderbolt is a new cable and connector technology that is designed to be significantly faster and more flexible than existing cabling. It can transfer data and video, as well as potentially network packets and audio, over a single cable. Thunderbolt's potential for reducing the tangled mass of cabling snaking out of our computers is obvious.</p><p>Compared to USB3's theoretical speed of 4.8Gb/s, Thunderbolt has a theoretical speed of 10Gb/s, more than twice as fast on paper, with room to grow even faster.</p><p>Does it actually work?</p><p>As with any new technology, we were initially sceptical of Intel's grandiose claims, but we were instantly won over by a demonstration of the technology at Apple's London offices. The company's new MacBook Pro laptops are the first to go on sale equipped with a Thunderbolt port.</p><p>When connected to a prototype five-disk RAID 0 array from Promise, the laptop was able to simultaneously play four 1080p videos stored on the array without any apparent dropped frames or loss of audio sync. Even more impressively, in a separate test, a 6GB file was duplicated in a mere 15 seconds!</p><p>Thunderbolt's staggeringly fast file duplication performance is truly jaw-dropping. For a rough comparison, a Lenovo ThinkPad X301 laptop with an internal SATA II 128GB Samsung SSD duplicated a different 6GB file in two minutes, 54 seconds.</p><p>How does it work?</p><p>Although the initial Thunderbolt prototypes used fibre optic cabling, the version of the technology used in the MacBook Pro laptops is based on familiar, tried and tested copper cabling due to the current high price of optical wiring.</p><p>The rest of Thunderbolt is actually based on several existing technologies. The connectors themselves are Apple's existing Mini DisplayPort plugs which are used to connect monitors and projectors to the company's MacBook, Mac mini and iMac series of computers. Each Thunderbolt cable actually consists of two 10Gb/s PCI Express channels for transferring data and a DisplayPort channel for video. A special Thunderbolt chip has to be present in the computer and each Thunderbolt peripheral.</p><p>Can I buy Thunderbolt peripherals now?</p><p>No. Several companies have announced their support for the new technology, but only storage manufacturers LaCie and Promise have committed to bringing out Thunderbolt-equipped RAID arrays by the middle of this year.</p><p>How do I connect more than one Thunderbolt peripheral?</p><p>Since the MacBook Pro laptops only have a single Thunderbolt port, Thunderbolt peripherals should have two ports each allowing devices to be daisy-chained together. At the moment, only a maximum of six Thunderbolt devices can be connected to a single port.</p><p>Can I upgrade my existing computer to Thunderbolt?</p><p>At the moment, only Apple is shipping Thunderbolt-equipped computers. Intel is apparently working with other manufacturers to bring Thunderbolt to their computers, but the chip giant doesn't have any details about whether it will be possible to upgrade existing computers to Thunderbolt.</p><p>Some sources state that upgrades won't be possible since the Thunderbolt chip requires direct access to the computer's PCI Express channels. This apparently wouldn't be possible even using a PCI Express expansion card, but we don't have confirmation of this.</p><p>Although some have claimed Apple has an exclusive use of the technology until next year, Intel spokesman Stephen Dunne specifically told ITPRO that this isn't true. Both Apple and Intel characterise their involvement in the development of Thunderbolt as a 'close technical collaboration'.</p><p>Can I continue using my current non-Thunderbolt peripherals? Can I plug non-Thunderbolt devices into a Thunderbolt port?</p><p>Although Thunderbolt could theoretically eliminate the need for all other ports, the current six device restriction and the large number of existing peripherals means that the MacBook Pro laptops still come with Ethernet, FireWire 800 and USB2 ports among others. This is likely to be the case with other computers too for some time even as Thunderbolt catches on.</p><p>It's possible to connect current peripherals to a Thunderbolt port using soon-to-be available adapters, but these won't be able to take advantage of Thunderbolt speeds. Intel claims that the presence of non-Thunderbolt devices on the daisy chain won't slow down Thunderbolt peripherals.</p><p>Apple's customers can use their existing Mini DisplayPort monitors and projectors with the new MacBook Pros since Mini DisplayPort and Thunderbolt connectors are identical and therefore compatible with each other. These displays would necessarily have to be at the end of the daisy chain since they don't have a second port to continue the chain. Even if they did, current Mini DisplayPort devices don't have a Thunderbolt chip to maintain the speed of any Thunderbolt peripherals.</p><p>As any FireWire user knows, the topography of a daisy-chain can be potentially confusing. This is perhaps one of the few inherent potential disadvantages of Thunderbolt compared to USB which uses hubs instead of a daisy chains to connect multiple devices to a single port.</p><p>Can a Thunderbolt cable power a portable hard disk and other portable peripherals?</p><p>This shouldn't be a problem. USB2 ports can provide just 500mA while USB3 can provide 900mA. Thunderbolt cables can provide 10W of power several times as much.</p><p>Can you use a Thunderbolt disk as a boot disk?</p><p>Apple officials wouldn't be drawn on whether it would be possible to use a Thunderbolt disk as a boot disk. Nor would they be drawn on whether it would be possible connect two Macs together using a Thunderbolt cable and transfer data between the two as if one of the computers was just a hard disk, as with FireWire's incredibly useful Target Disk Mode. We would be very surprised if this wasn't the case though.</p><p>Thunderbolt-equipped motherboards from companies other than Apple are probably still on the drawing board, but we suspect booting support would depend on the motherboard's BIOS/EFI.</p><p>Conclusion</p><p>Thunderbolt is one of the most impressively jaw-dropping technologies we've seen in the past five years and perhaps the first such technology we've seen since the first WiFi-equipped laptops were introduced around ten years ago.</p><p>Companies will be undoubtedly cautious about adopting the technology following the Sandy Bridge <a href="https://www.itpro.com/630562/sandy-bridge-chipset-flaw-costs-intel" target="_blank" data-original-url="https://www.itpro.com/630562/sandy-bridge-chipset-flaw-costs-intel">SATA flaw</a>. Plus, it will take some time for companies to release both Thunderbolt-equipped computers and peripherals and for those products to drop in price. Plus, if your company has just bought and deployed new computers, it's unlikely you'll want to upgrade or replace them anytime soon, even if you do transfer massive amounts of data around. If you are planning such a procurement though, then it's definitely worth keeping an eye on Thunderbolt.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Dell PowerEdge R515 review ]]></title>
                                                                                                <dc:content><![CDATA[ <p>Dell already has the largest range of AMD equipped servers of all the blue chips and the latest PowerEdge R515 widens the gap even more as it's the first rack system to market with the lateest Opteron 4100 processors. It targets SMBs on a tight budget looking to replace their worn out legacy servers, but also has a sharp focus on applications requiring a lot of local storage.</p><p>Compared with the 5500 and 5600 Xeons and their disparate specifications, the Opteron 4100-series is simpler. They all have 6MB of L3 cache, support for 1,333MHz DDR3 memory and a HyperTransport speed of 6.4GT/sec. Your main decisions are therefore about the clock speed, power consumption and whether you want four or six cores. There are four chips with a TDP of 75W, three HE models with a TDP of 50W and a pair of ultra low-power 32W EE models. The R515 on review includes a pair of 2.1GHz 4170 HE processors which is the entry-level six-core 50W model.</p><p>AMD claims of low power consumption were confirmed in our lab tests. With the server fitted with both 750W hot-plug supplies and Windows Server 2008 R2 running in idle, we recorded the system drawing 124W. With SiSoft Sandra pushing all twelve cores to near maximum utilisation, this peaked at only 215W.</p><p>To put this in perspective we compared it against a Dell PowerEdge R710 with dual 2.26GHz E5520 Xeons, 12GB of DDR3 RAM, four 146GB SFF disks and pair of 570W power supplies. In idle we clocked power consumption at 150W and peaking under full load at 270W. The Opteron-equipped R515 is clearly more power efficient than an otherwise similarly-specified Xeon-equipped R710.</p><p>There's a price to pay for the higher drive count though. As the entire front panel is taken over with disk carriers so you can't have Dell's LCD display and diagnostics panel. There's no room for an optical drive either, but Dell has used the rack brackets on each side to mount a power button plus VGA and USB2 ports.</p><p>You have plenty of hard disk options as Dell offers SATA, near-line SAS and SAS plus the hot-swap carriers have mounting holes for 2.5in. and 3.5in models. Those with deep pockets can also specify SSDs and the chassis even has another bay inside with room for two more cold-swap SFF drives.</p><p>If that isn't enough there are three internal RAID controllers to choose from as well. However, with so much storage on tap, we think the only card worth having is the PERC H700 as fitted in the review system. This supports up to sixteen 6Gb/s SAS drives, all array types including RAID 6 and 60 and has 512MB of cache plus the battery backup pack.</p><p>The R515 isn't the best choice for virtualisation duties as it only supports up to 128GB of memory - most dual processor Xeon servers can handle up to 192GB of RAM. The R515 also doesn't have the internal SD card slot as found on the PowerEdge R610 and R710 models used for booting an embedded hypervisor.</p><p>The shorter chassis makes for a busy interior but we found all key components could be easily accessed. There's plenty of expansion potential thanks to the riser card with three PCI Express x4 and one x8 slots. The front slot is set aside for the RAID card and the three rear mounted slots accept full-height, half-length cards.</p><p>Remote management options abound and you start with the iDRAC6 embedded controller which shares the first network port and only offers basic remote access. All you can do is access the server via the CLI and turn power on or off, so we recommend the optional iDRAC6 Express at the very least.</p><p>Costing an extra 57, this module snaps into a proprietary slot on the motherboard and includes Dell's unique Lifecycle controller. It still shares the first network port but provides full web browser access with server and power monitoring plus OS deployment and diagnostics tools.</p><p>For full KVM-over-IP remote control and virtual media services you'll need the iDRAC6 Enterprise card which is included with the review system. Fitted in a separate slot to the Express card, it augments it with a separate network port for dedicated management access.</p><p>Dell's Management Console 2.0 software sees some significant improvements as it can now run on Server 2008 R2 64-bit and installation has been noticeably streamlined. It runs automated search routines to populate its database with discovered systems plus SNMP enabled devices and provides extensive alerting and inventory features. Compared with HP's Insight Control and IBM's Systems Director, this Symantec Altiris-based software is a heavyweight. Ideally it should run on a dedicated Windows Server since it requires a lot of resources so it's not well-suited for smaller sites with only a few servers and systems which would be better served using the iDRAC6 Express controller.</p><p>The R515 is a top choice for running storage hungry applications as it has a very high capacity for a 2U rack server. The number of options available make it highly customisable and currently it's also your only choice if you want low-cost Opteron 4100 processors in your rack server as IBM and HP have yet to support them.</p><p><a href="https://www.itpro.com/631420/dell-poweredge-r515-review" target="_blank" data-original-url="https://www.itpro.com/631420/dell-poweredge-r515-review">So what's our verdict?</a></p><h2 id="verdict-21">Verdict</h2><p>Dell is currently the only vendor to have AMD Opteron 4100-based rack servers and the R515 shows these processors off to their best ability. It’s better value than most 2U Xeon 5600 servers, has a commendably low power consumption and the range of options makes this a very good choice for applications requiring a lot of local storage.</p><p>Chassis: 2U rack CPU: 2 x 2.1GHz AMD Opteron 4170 HE Memory: 16GB 1,333MHz DDR3 Storage: 5 x 146GB SFF SAS hard disks in hot-swap carriers (2 internal) RAID: PERC H700 with 512MB cache and BBU Array support: RAID 0, 1, 10, 5, 6, 50, 60 Expansion: 3 x PCI Express slots Network: 2 x Gigabit Ethernet Power: 2 x 750W hot-plug supplies Management: Dell iDRAC6 Enterprise Software: Dell Management Console 2.0 Warranty: 3 years on-site next business day service</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/631420/dell-poweredge-r515-review</link>
                                                                            <description>
                            <![CDATA[ Dell’s new PowerEdge R515 is the first Opteron 4100 powered rack server to market. It has impressive storage credentials and a comparatively low price. In this exclusive review we find out whether it’s a Xeon beater. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">nSnJtGU8nh2vrqrzvnCDxs</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/LouB4YVLh53RrBwQg83D9d-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Fri, 25 Feb 2011 16:35:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Servers & Storage]]></category>
                                                    <category><![CDATA[Infrastructure]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/LouB4YVLh53RrBwQg83D9d-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[The Dell PowerEdge R515]]></media:description>                                                            <media:text><![CDATA[The Dell PowerEdge R515]]></media:text>
                                <media:title type="plain"><![CDATA[The Dell PowerEdge R515]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/LouB4YVLh53RrBwQg83D9d-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Dell already has the largest range of AMD equipped servers of all the blue chips and the latest PowerEdge R515 widens the gap even more as it's the first rack system to market with the lateest Opteron 4100 processors. It targets SMBs on a tight budget looking to replace their worn out legacy servers, but also has a sharp focus on applications requiring a lot of local storage.</p><p>Compared with the 5500 and 5600 Xeons and their disparate specifications, the Opteron 4100-series is simpler. They all have 6MB of L3 cache, support for 1,333MHz DDR3 memory and a HyperTransport speed of 6.4GT/sec. Your main decisions are therefore about the clock speed, power consumption and whether you want four or six cores. There are four chips with a TDP of 75W, three HE models with a TDP of 50W and a pair of ultra low-power 32W EE models. The R515 on review includes a pair of 2.1GHz 4170 HE processors which is the entry-level six-core 50W model.</p><p>AMD claims of low power consumption were confirmed in our lab tests. With the server fitted with both 750W hot-plug supplies and Windows Server 2008 R2 running in idle, we recorded the system drawing 124W. With SiSoft Sandra pushing all twelve cores to near maximum utilisation, this peaked at only 215W.</p><p>To put this in perspective we compared it against a Dell PowerEdge R710 with dual 2.26GHz E5520 Xeons, 12GB of DDR3 RAM, four 146GB SFF disks and pair of 570W power supplies. In idle we clocked power consumption at 150W and peaking under full load at 270W. The Opteron-equipped R515 is clearly more power efficient than an otherwise similarly-specified Xeon-equipped R710.</p><p>There's a price to pay for the higher drive count though. As the entire front panel is taken over with disk carriers so you can't have Dell's LCD display and diagnostics panel. There's no room for an optical drive either, but Dell has used the rack brackets on each side to mount a power button plus VGA and USB2 ports.</p><p>You have plenty of hard disk options as Dell offers SATA, near-line SAS and SAS plus the hot-swap carriers have mounting holes for 2.5in. and 3.5in models. Those with deep pockets can also specify SSDs and the chassis even has another bay inside with room for two more cold-swap SFF drives.</p><p>If that isn't enough there are three internal RAID controllers to choose from as well. However, with so much storage on tap, we think the only card worth having is the PERC H700 as fitted in the review system. This supports up to sixteen 6Gb/s SAS drives, all array types including RAID 6 and 60 and has 512MB of cache plus the battery backup pack.</p><p>The R515 isn't the best choice for virtualisation duties as it only supports up to 128GB of memory - most dual processor Xeon servers can handle up to 192GB of RAM. The R515 also doesn't have the internal SD card slot as found on the PowerEdge R610 and R710 models used for booting an embedded hypervisor.</p><p>The shorter chassis makes for a busy interior but we found all key components could be easily accessed. There's plenty of expansion potential thanks to the riser card with three PCI Express x4 and one x8 slots. The front slot is set aside for the RAID card and the three rear mounted slots accept full-height, half-length cards.</p><p>Remote management options abound and you start with the iDRAC6 embedded controller which shares the first network port and only offers basic remote access. All you can do is access the server via the CLI and turn power on or off, so we recommend the optional iDRAC6 Express at the very least.</p><p>Costing an extra 57, this module snaps into a proprietary slot on the motherboard and includes Dell's unique Lifecycle controller. It still shares the first network port but provides full web browser access with server and power monitoring plus OS deployment and diagnostics tools.</p><p>For full KVM-over-IP remote control and virtual media services you'll need the iDRAC6 Enterprise card which is included with the review system. Fitted in a separate slot to the Express card, it augments it with a separate network port for dedicated management access.</p><p>Dell's Management Console 2.0 software sees some significant improvements as it can now run on Server 2008 R2 64-bit and installation has been noticeably streamlined. It runs automated search routines to populate its database with discovered systems plus SNMP enabled devices and provides extensive alerting and inventory features. Compared with HP's Insight Control and IBM's Systems Director, this Symantec Altiris-based software is a heavyweight. Ideally it should run on a dedicated Windows Server since it requires a lot of resources so it's not well-suited for smaller sites with only a few servers and systems which would be better served using the iDRAC6 Express controller.</p><p>The R515 is a top choice for running storage hungry applications as it has a very high capacity for a 2U rack server. The number of options available make it highly customisable and currently it's also your only choice if you want low-cost Opteron 4100 processors in your rack server as IBM and HP have yet to support them.</p><p><a href="https://www.itpro.com/631420/dell-poweredge-r515-review" target="_blank" data-original-url="https://www.itpro.com/631420/dell-poweredge-r515-review">So what's our verdict?</a></p><h2 id="verdict-21">Verdict</h2><p>Dell is currently the only vendor to have AMD Opteron 4100-based rack servers and the R515 shows these processors off to their best ability. It’s better value than most 2U Xeon 5600 servers, has a commendably low power consumption and the range of options makes this a very good choice for applications requiring a lot of local storage.</p><p>Chassis: 2U rack CPU: 2 x 2.1GHz AMD Opteron 4170 HE Memory: 16GB 1,333MHz DDR3 Storage: 5 x 146GB SFF SAS hard disks in hot-swap carriers (2 internal) RAID: PERC H700 with 512MB cache and BBU Array support: RAID 0, 1, 10, 5, 6, 50, 60 Expansion: 3 x PCI Express slots Network: 2 x Gigabit Ethernet Power: 2 x 750W hot-plug supplies Management: Dell iDRAC6 Enterprise Software: Dell Management Console 2.0 Warranty: 3 years on-site next business day service</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ HP ProLiant MicroServer N36L review ]]></title>
                                                                                                <dc:content><![CDATA[ <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/hWbHqKAHjHP8FSK9aHBo3b-1920-80.jpg" alt="The HP ProLiant MicroServer N36L" /><figcaption>The HP ProLiant MicroServer N36L</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/GhWFXJqCY73JYY6XUUp4D-1920-80.jpg" alt="The HP ProLiant MicroServer N36L with its disk trays visible" /><figcaption>The HP ProLiant MicroServer N36L with its disk trays visible</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/yuPaJEamgE6DhnhLvsfJuQ-1920-80.png" alt="HP’s optional RAC allows the server to be remotely managed and provides full access to power controls." /><figcaption>HP’s optional RAC allows the server to be remotely managed and provides full access to power controls.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/yDPRMHiZPahKidKqbjh5aW-1920-80.png" alt="The RAC web console lets you remotely monitor critical components and keep an eye on internal temperatures." /><figcaption>The RAC web console lets you remotely monitor critical components and keep an eye on internal temperatures.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/TKRkzd7qQgXj6G79xZoqSb-1920-80.png" alt="System events can be tied in with HP’s Platform Event Filters so email alerts can be sent out if certain hardware problems oc" /><figcaption>System events can be tied in with HP’s Platform Event Filters so email alerts can be sent out if certain hardware problems oc</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/x3xQ5Y42drCsKEFJGwfBnB-1920-80.png" alt="The RAC looks even better value as it provides full KVM-over-IP remote control and virtual media services." /><figcaption>The RAC looks even better value as it provides full KVM-over-IP remote control and virtual media services.</figcaption></figure></figure><p>It makes sense for small businesses to use a server for even simple tasks, such as file sharing, but many still see them as expensive and overly complex. HP wants to change their minds as its latest MicroServer N36L is aimed at businesses of up to ten users that want something highly affordable and easy to use.</p><p>HP gets the ball rolling by selling the MicroServer at a low price. Only one model is available and its starting price of 235 will have a more than a few small businesses taking notice. Even better is the fact that HP is currently running a 100 cashback offer until the end of February.</p><p>The MicroServer is a chunky little desktop cube equipped with a dual-core 1.3GHz AMD Athlon II Neo N36L processor and 1GB of 800MHz ECC DDR3 memory. The price includes a single 250GB SATA hard disk with room for three more inside, but the removable drive carriers are cheap plastic and not very sturdy.</p><p>No OS is included in the price but HP offers a choice of Red Hat Enterprise Linux or Windows Server R2 Standard and Foundation. We can't see small businesses with limited IT skills wanting to mess with Linux, so Server 2008 R2 Foundation would be the best bet which, HP tells us, can be preinstalled for 169.</p><p>There are a number of restrictions with Foundation. It only supports a maximum of fifteen Windows user accounts. It's 64-bit only, supports only a single processor with multiple cores and won't let you upgrade beyond 8GB of memory, but these are unlikely to be too restrictive for the smaller business, budget-conscious users the MicroServer is aimed at.</p><p>The MicroServer itself is well built with a lockable metal door protecting the hard disk carriers. Up above is a single 5.25in bay which is empty on base systems. We had the optional DVD writer supplied in the review system which costs an extra 35.</p><p>The small power button on the top edge is a little too exposed, but fortunately won't shut the OS down if pressed accidentally. Below this are four USB ports plus two more round the back along with an eSATA port. There's even an internal USB port which can be used for connecting a boot disk for use with a virtualisation hypervisor.</p><p>There may be four drive bays but hardware RAID options are very limited. The motherboard uses an AMD RAID controller which only supports JBODs, stripes and mirrors so you can't create RAID 5 or 6 arrays.The controller doesn't support hot-swap either, so if a drive fails the server must be powered down to replace it. However, it can handle 2TB SATA drives so there should be sufficient future storage expansion for most uses.</p><p>As you'd expect, it's very cramped inside. The only way to access the pair of PCI Express slots and memory sockets is to release the motherboard in the base of the server and slowly slide it forward unplugging the various interface and power cables as they become exposed. It takes time, but your patience will be rewarded.</p><p>The embedded AMD processor may not be overly powerful, but its TDP of 12W keeps consumption right down. We measured the review system drawing a mere 22W with Foundation in idle which rose to only 31W with SiSoft Sandra pushing the processor to the max.</p><p>Another feature that sets the MicroServer apart from your average desktop is HP's optional Remote Access Card (RAC). Costing 55, it slots into the PCI-E x1 slot and provides a dedicated network port for remotely managing and monitoring the server.</p><p>Once it's installed, a new IPMI option appears in the BIOS menu where you can assign a fixed IP address to the card or leave DHCP to hand one out to it. In terms of features we put the RAC in between HP's entry-level Lights Out 100i and its top end iLO3.</p><p>The web interface provides details on fan speeds and temperatures, plus the ability to remotely power the server on and off or reset it. PEFs (platform event filters) can be used to assign actions to specific events, so if the fans fail or temperatures rise then the server can be automatically powered down, reset or rebooted.</p><p>Two features that make the RAC excellent value are KVM-over-IP remote control and virtual media services. The former provides full remote access to the BIOS menu and OS whilst the latter allows you to present devices such as optical drives over the network for the server to use.</p><p>The MicroServer is worth considering as a first server as it's good value, small, quiet and has four disk bays. RAID support is very limited and upgrades will be time consuming, but the optional RAC card makes it a good choice for remote office deployments as no other server at this price offers this as an option.</p><p>The MicroServer may be low on processing power and tricky to upgrade, but it is a good value choice for small businesses that want their first server. It’s disappointing that despite having four drive bays it doesn’t support RAID 5, but HP’s optional management card does mean it’s well suited to deployment in small remote offices.</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/630898/hp-proliant-microserver-n36l-review</link>
                                                                            <description>
                            <![CDATA[ HP's ProLiant MicroServer may look like a consumer NAS box, but it's actually aimed at small businesses as a better-designed alternative to a PC for file sharing. We take a closer look to see what else this little cube has to offer. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">5se1rufTJhGw5cjMmnqv9M</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/hWbHqKAHjHP8FSK9aHBo3b-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Wed, 09 Feb 2011 17:06:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/hWbHqKAHjHP8FSK9aHBo3b-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                        <media:description><![CDATA[The HP ProLiant MicroServer N36L with its disk trays visible]]></media:description>                                                            <media:text><![CDATA[The HP ProLiant MicroServer N36L]]></media:text>
                                <media:title type="plain"><![CDATA[The HP ProLiant MicroServer N36L]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/hWbHqKAHjHP8FSK9aHBo3b-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/hWbHqKAHjHP8FSK9aHBo3b-1920-80.jpg" alt="The HP ProLiant MicroServer N36L" /><figcaption>The HP ProLiant MicroServer N36L</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/GhWFXJqCY73JYY6XUUp4D-1920-80.jpg" alt="The HP ProLiant MicroServer N36L with its disk trays visible" /><figcaption>The HP ProLiant MicroServer N36L with its disk trays visible</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/yuPaJEamgE6DhnhLvsfJuQ-1920-80.png" alt="HP’s optional RAC allows the server to be remotely managed and provides full access to power controls." /><figcaption>HP’s optional RAC allows the server to be remotely managed and provides full access to power controls.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/yDPRMHiZPahKidKqbjh5aW-1920-80.png" alt="The RAC web console lets you remotely monitor critical components and keep an eye on internal temperatures." /><figcaption>The RAC web console lets you remotely monitor critical components and keep an eye on internal temperatures.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/TKRkzd7qQgXj6G79xZoqSb-1920-80.png" alt="System events can be tied in with HP’s Platform Event Filters so email alerts can be sent out if certain hardware problems oc" /><figcaption>System events can be tied in with HP’s Platform Event Filters so email alerts can be sent out if certain hardware problems oc</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/x3xQ5Y42drCsKEFJGwfBnB-1920-80.png" alt="The RAC looks even better value as it provides full KVM-over-IP remote control and virtual media services." /><figcaption>The RAC looks even better value as it provides full KVM-over-IP remote control and virtual media services.</figcaption></figure></figure><p>It makes sense for small businesses to use a server for even simple tasks, such as file sharing, but many still see them as expensive and overly complex. HP wants to change their minds as its latest MicroServer N36L is aimed at businesses of up to ten users that want something highly affordable and easy to use.</p><p>HP gets the ball rolling by selling the MicroServer at a low price. Only one model is available and its starting price of 235 will have a more than a few small businesses taking notice. Even better is the fact that HP is currently running a 100 cashback offer until the end of February.</p><p>The MicroServer is a chunky little desktop cube equipped with a dual-core 1.3GHz AMD Athlon II Neo N36L processor and 1GB of 800MHz ECC DDR3 memory. The price includes a single 250GB SATA hard disk with room for three more inside, but the removable drive carriers are cheap plastic and not very sturdy.</p><p>No OS is included in the price but HP offers a choice of Red Hat Enterprise Linux or Windows Server R2 Standard and Foundation. We can't see small businesses with limited IT skills wanting to mess with Linux, so Server 2008 R2 Foundation would be the best bet which, HP tells us, can be preinstalled for 169.</p><p>There are a number of restrictions with Foundation. It only supports a maximum of fifteen Windows user accounts. It's 64-bit only, supports only a single processor with multiple cores and won't let you upgrade beyond 8GB of memory, but these are unlikely to be too restrictive for the smaller business, budget-conscious users the MicroServer is aimed at.</p><p>The MicroServer itself is well built with a lockable metal door protecting the hard disk carriers. Up above is a single 5.25in bay which is empty on base systems. We had the optional DVD writer supplied in the review system which costs an extra 35.</p><p>The small power button on the top edge is a little too exposed, but fortunately won't shut the OS down if pressed accidentally. Below this are four USB ports plus two more round the back along with an eSATA port. There's even an internal USB port which can be used for connecting a boot disk for use with a virtualisation hypervisor.</p><p>There may be four drive bays but hardware RAID options are very limited. The motherboard uses an AMD RAID controller which only supports JBODs, stripes and mirrors so you can't create RAID 5 or 6 arrays.The controller doesn't support hot-swap either, so if a drive fails the server must be powered down to replace it. However, it can handle 2TB SATA drives so there should be sufficient future storage expansion for most uses.</p><p>As you'd expect, it's very cramped inside. The only way to access the pair of PCI Express slots and memory sockets is to release the motherboard in the base of the server and slowly slide it forward unplugging the various interface and power cables as they become exposed. It takes time, but your patience will be rewarded.</p><p>The embedded AMD processor may not be overly powerful, but its TDP of 12W keeps consumption right down. We measured the review system drawing a mere 22W with Foundation in idle which rose to only 31W with SiSoft Sandra pushing the processor to the max.</p><p>Another feature that sets the MicroServer apart from your average desktop is HP's optional Remote Access Card (RAC). Costing 55, it slots into the PCI-E x1 slot and provides a dedicated network port for remotely managing and monitoring the server.</p><p>Once it's installed, a new IPMI option appears in the BIOS menu where you can assign a fixed IP address to the card or leave DHCP to hand one out to it. In terms of features we put the RAC in between HP's entry-level Lights Out 100i and its top end iLO3.</p><p>The web interface provides details on fan speeds and temperatures, plus the ability to remotely power the server on and off or reset it. PEFs (platform event filters) can be used to assign actions to specific events, so if the fans fail or temperatures rise then the server can be automatically powered down, reset or rebooted.</p><p>Two features that make the RAC excellent value are KVM-over-IP remote control and virtual media services. The former provides full remote access to the BIOS menu and OS whilst the latter allows you to present devices such as optical drives over the network for the server to use.</p><p>The MicroServer is worth considering as a first server as it's good value, small, quiet and has four disk bays. RAID support is very limited and upgrades will be time consuming, but the optional RAC card makes it a good choice for remote office deployments as no other server at this price offers this as an option.</p><p>The MicroServer may be low on processing power and tricky to upgrade, but it is a good value choice for small businesses that want their first server. It’s disappointing that despite having four drive bays it doesn’t support RAID 5, but HP’s optional management card does mean it’s well suited to deployment in small remote offices.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Drobo announces new storage arrays aimed at businesses ]]></title>
                                                                                                <dc:content><![CDATA[ <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/rDSSVAJgzyD7yMaUgeqdnH-1920-80.jpg" alt="The Drobo B1200i" /><figcaption>The Drobo B1200i</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/63yFJkpJ4QKP8ny54gesb-1920-80.jpg" alt="The Drobo B800i" /><figcaption>The Drobo B800i</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/zcmb5CJ8oTgoKqJHFhmeGi-1920-80.jpg" alt="The Drobo Management Dashboard" /><figcaption>The Drobo Management Dashboard</figcaption></figure></figure><p>Storage company Drobo has announced a new range of redundant storage arrays aimed at businesses, along with the after-sales care to back them up.</p><p>Drobo's eponymous multi-disk storage arrays used a RAID-like technology, branded BeyondRAID, to ensure data redundancy but, unlike traditional RAID arrays, can consist of disks of any size and are easier to set up and administer. Many previous Drobo arrays have been aimed at consumers, but the new B series models are aimed specifically at businesses.</p><p>The massive B1200i is the most interesting since it has iSCSI support and can accommodate up to 12 disks. It supports tiered storage, so frequently accessed data is stored on the fastest available disk, as well as thin provisioning. It's rack-mountable and has dual, hot-swappable power supplies.</p><p>The smaller Drobo B800i and B800fs can take up to eight disks, but the B800fs drops iSCSI support. The B800 models will accept SATA hard disks in any combination of capacities. Oddly, Drobo claims that only the B1200i can accommodate SSDs and SAS hard disks. All three models are backed up by the 24/7 DroboCare service which aims to deliver replacement parts on the same business day any fault is reported.</p><p>All three models can now be managed from the new Drobo Management console which aims to provide an animated, but logically organised administration interface whether your Drobos are located on another floor or in another country.</p><p>The B800-series Drobos should be available shortly with prices from 1,409, but the B1200i won't be available until April. We'll bring you full reviews as soon as we can.</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/630778/drobo-announces-new-storage-arrays-aimed-at-businesses</link>
                                                                            <description>
                            <![CDATA[ Drobo targets bigger companies with its BeyondRAID-enabled products. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">hTWghoNrSTkyp2njVzBkdC</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/rDSSVAJgzyD7yMaUgeqdnH-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Tue, 08 Feb 2011 10:00:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Alan Lu ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/rDSSVAJgzyD7yMaUgeqdnH-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                        <media:description><![CDATA[The Drobo B800i]]></media:description>                                                            <media:text><![CDATA[The Drobo B1200i]]></media:text>
                                <media:title type="plain"><![CDATA[The Drobo B1200i]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/rDSSVAJgzyD7yMaUgeqdnH-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/rDSSVAJgzyD7yMaUgeqdnH-1920-80.jpg" alt="The Drobo B1200i" /><figcaption>The Drobo B1200i</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/63yFJkpJ4QKP8ny54gesb-1920-80.jpg" alt="The Drobo B800i" /><figcaption>The Drobo B800i</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/zcmb5CJ8oTgoKqJHFhmeGi-1920-80.jpg" alt="The Drobo Management Dashboard" /><figcaption>The Drobo Management Dashboard</figcaption></figure></figure><p>Storage company Drobo has announced a new range of redundant storage arrays aimed at businesses, along with the after-sales care to back them up.</p><p>Drobo's eponymous multi-disk storage arrays used a RAID-like technology, branded BeyondRAID, to ensure data redundancy but, unlike traditional RAID arrays, can consist of disks of any size and are easier to set up and administer. Many previous Drobo arrays have been aimed at consumers, but the new B series models are aimed specifically at businesses.</p><p>The massive B1200i is the most interesting since it has iSCSI support and can accommodate up to 12 disks. It supports tiered storage, so frequently accessed data is stored on the fastest available disk, as well as thin provisioning. It's rack-mountable and has dual, hot-swappable power supplies.</p><p>The smaller Drobo B800i and B800fs can take up to eight disks, but the B800fs drops iSCSI support. The B800 models will accept SATA hard disks in any combination of capacities. Oddly, Drobo claims that only the B1200i can accommodate SSDs and SAS hard disks. All three models are backed up by the 24/7 DroboCare service which aims to deliver replacement parts on the same business day any fault is reported.</p><p>All three models can now be managed from the new Drobo Management console which aims to provide an animated, but logically organised administration interface whether your Drobos are located on another floor or in another country.</p><p>The B800-series Drobos should be available shortly with prices from 1,409, but the B1200i won't be available until April. We'll bring you full reviews as soon as we can.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Broadberry CyberServe X34-Q104 review ]]></title>
                                                                                                <dc:content><![CDATA[ <p>Data centres are often short on space which forces server manufactures to be ever more innovative in the quest for higher compute node densities. With the CyberServe X34-Q104 Broadberry has managed the remarkable feat of squeezing four independent servers into a low profile 1U rack chassis.</p><p>The X34-Q104 is based on Intel's latest Server System SR1640TH platform, provocatively codenamed Thunder Hill. The system shows some lateral thinking by Intel as up until now its rack server products have been functional, but basic and uninspiring in the design department.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="q9tT4ZbJGqacmmBGt7hDq8" name="" alt="IT PRO Innovation Award" src="https://cdn.mos.cms.futurecdn.net/q9tT4ZbJGqacmmBGt7hDq8-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/q9tT4ZbJGqacmmBGt7hDq8.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The four server nodes consist of two separate motherboards each fitted in independently powered trays. Each motherboard has two processor sockets each filled with a 2.4GHz Xeon 3430 processor. There are thus four processors in total, with each one designed to appear as a completely separate server.</p><p>The chassis itself functions purely as a shell for the two trays. The only components inside it are two 450W cold-swap power supplies which the trays mate with when inserted from the front.</p><p>Tray design is impressively tidy as all components are neatly laid out down the length of the tray with hardly a wire or cable out of place to mar their perfect symmetry. The front part of the tray is used to house two hard disks and even here Intel has reduced cabling requirements by placing the SATA and power interfaces up at the front.</p><p>Broadberry offers a good choice of storage options and supplied the left hand tray with a pair of 500GB Seagate Barracuda SATA drives and the right hand tray with two 80GB Intel SSDs. The price for the review system includes all of these drives although Broadberry advised us it could supply the system with four 80GB SSDs for 2,550 or four 500GB SATA drives for 2,180.</p><p>The one feature we didn't like was the basic Matrox G200 video chip on each node. These only have 32MB of video memory and support a cramped maximum resolution of 1024 x 768 which is a real pain for local management.</p><p>From the appearance of the motherboards you wouldn't guess they were two independent nodes, but a glance at the back gives the game away. The rear panel for each tray has a complete set of ports, comprising monitor, dual Gigabit Ethernet, dual USB2 and remote management sockets, for each node.</p><p>The tray's front panel has power and ID buttons for each node, along with LEDs for network activity and warnings, plus two more USB ports. We found having four USB ports per node really useful as we could leave the keyboard and mouse plugged in even if we wanted to use a USB flash drive or other such storage device.</p><p>Each tray has its own 450W cold-swap power supply. When you remove a tray the supply stays put, but if you need to replace it, the unit can easily be withdrawn from the rear.</p><p>The server also has power frugality as a key focus and our power tests confirmed what a miser it is. As we brought each node online we took measurements with them running in idle and with SiSoft Sandra pushing all cores on each one to near maximum utilisation.</p><p>The X34-Q104 is remarkably quiet as each tray has three dual-rotor cold-swap fans at the front. During normal operations this server is quiet enough to sit on a desk. The fans did increase speed when we ran the SiSoft load test, but this was only briefly and even then noise levels weren't a concern.</p><p>Each node has an integrated BMC (baseboard management controller) and the bundled Intel Active System Console provides basic local server monitoring. We recommend adding the optional RMM3 Lite-V modules to each node as these activate web browser-based monitoring which provides full access to power controls, plus extensive views of all sensor data.</p><p>Remote management features aren't as good as those you'll find on HP's embedded iLO3 as you can't monitor, control or cap overall power consumption as you can with ProLiant servers. However, unlike HP you get KVM-over-IP remote control as standard, and not as a chargeable upgrade, which also allows you to define virtual floppy and optical media for the node to use.</p><p>The CyberServe X34-Q104 is one of the best designed and most well-built systems we've yet seen from Intel's Server Systems family and is well suited to a wide range of tasks including hosting and web server farms. Space constrained data centres looking to do more with available space will find its low power consumption appealing and it's also very good value with each node in the review costing only 600 each.</p><p><a href="https://www.itpro.com/630556/broadberry-cyberserve-x34-q104-review" target="_blank" data-original-url="https://www.itpro.com/630556/broadberry-cyberserve-x34-q104-review">So what's our verdict?</a></p><h2 id="verdict-22">Verdict</h2><p>Broadberry proves that four can go into one as the X34-Q104 delivers a high-density compute node package at a very low price. RAID is not an option for each server node, but the system is otherwise well designed and power consumption for all four nodes is impressively low.</p><p>Chassis: 1U rack Power: 2 x 450W cold-swap power supplies Compute Nodes: four, each with the following specification: CPU: 2.4GHz Intel Xeon X3430 Memory: 4GB 1,333MHz ECC DDR3 expandable to 32GB Storage: 80GB Intel SSD or 500GB Seagate Barracuda SATA hard disk Controller: Embedded Intel SATA controller RAID: None Network: 2 x Gigabit Ethernet Ports: 4 x USB2 Software: Intel Server Deployment Toolkit Options: Intel RMM3 Lite-V module, £35 per node</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/630556/broadberry-cyberserve-x34-q104-review</link>
                                                                            <description>
                            <![CDATA[ Broadberry’s latest CyberServe X34-Q104 is the first product to combine four independent servers in a 1U chassis. This is an impressive feat, but are there compromises in the search for ever greater compute node density? Read this review to find out. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">sEb7D8UT6De8dF2zzfJ3eG</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/ochuJdfzHmjgnra8PfGTY5-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Mon, 31 Jan 2011 16:01:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Servers & Storage]]></category>
                                                    <category><![CDATA[Infrastructure]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/ochuJdfzHmjgnra8PfGTY5-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[The Broadberry CyberServe X34-Q104]]></media:description>                                                            <media:text><![CDATA[The Broadberry CyberServe X34-Q104]]></media:text>
                                <media:title type="plain"><![CDATA[The Broadberry CyberServe X34-Q104]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/ochuJdfzHmjgnra8PfGTY5-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Data centres are often short on space which forces server manufactures to be ever more innovative in the quest for higher compute node densities. With the CyberServe X34-Q104 Broadberry has managed the remarkable feat of squeezing four independent servers into a low profile 1U rack chassis.</p><p>The X34-Q104 is based on Intel's latest Server System SR1640TH platform, provocatively codenamed Thunder Hill. The system shows some lateral thinking by Intel as up until now its rack server products have been functional, but basic and uninspiring in the design department.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="q9tT4ZbJGqacmmBGt7hDq8" name="" alt="IT PRO Innovation Award" src="https://cdn.mos.cms.futurecdn.net/q9tT4ZbJGqacmmBGt7hDq8-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/q9tT4ZbJGqacmmBGt7hDq8.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The four server nodes consist of two separate motherboards each fitted in independently powered trays. Each motherboard has two processor sockets each filled with a 2.4GHz Xeon 3430 processor. There are thus four processors in total, with each one designed to appear as a completely separate server.</p><p>The chassis itself functions purely as a shell for the two trays. The only components inside it are two 450W cold-swap power supplies which the trays mate with when inserted from the front.</p><p>Tray design is impressively tidy as all components are neatly laid out down the length of the tray with hardly a wire or cable out of place to mar their perfect symmetry. The front part of the tray is used to house two hard disks and even here Intel has reduced cabling requirements by placing the SATA and power interfaces up at the front.</p><p>Broadberry offers a good choice of storage options and supplied the left hand tray with a pair of 500GB Seagate Barracuda SATA drives and the right hand tray with two 80GB Intel SSDs. The price for the review system includes all of these drives although Broadberry advised us it could supply the system with four 80GB SSDs for 2,550 or four 500GB SATA drives for 2,180.</p><p>The one feature we didn't like was the basic Matrox G200 video chip on each node. These only have 32MB of video memory and support a cramped maximum resolution of 1024 x 768 which is a real pain for local management.</p><p>From the appearance of the motherboards you wouldn't guess they were two independent nodes, but a glance at the back gives the game away. The rear panel for each tray has a complete set of ports, comprising monitor, dual Gigabit Ethernet, dual USB2 and remote management sockets, for each node.</p><p>The tray's front panel has power and ID buttons for each node, along with LEDs for network activity and warnings, plus two more USB ports. We found having four USB ports per node really useful as we could leave the keyboard and mouse plugged in even if we wanted to use a USB flash drive or other such storage device.</p><p>Each tray has its own 450W cold-swap power supply. When you remove a tray the supply stays put, but if you need to replace it, the unit can easily be withdrawn from the rear.</p><p>The server also has power frugality as a key focus and our power tests confirmed what a miser it is. As we brought each node online we took measurements with them running in idle and with SiSoft Sandra pushing all cores on each one to near maximum utilisation.</p><p>The X34-Q104 is remarkably quiet as each tray has three dual-rotor cold-swap fans at the front. During normal operations this server is quiet enough to sit on a desk. The fans did increase speed when we ran the SiSoft load test, but this was only briefly and even then noise levels weren't a concern.</p><p>Each node has an integrated BMC (baseboard management controller) and the bundled Intel Active System Console provides basic local server monitoring. We recommend adding the optional RMM3 Lite-V modules to each node as these activate web browser-based monitoring which provides full access to power controls, plus extensive views of all sensor data.</p><p>Remote management features aren't as good as those you'll find on HP's embedded iLO3 as you can't monitor, control or cap overall power consumption as you can with ProLiant servers. However, unlike HP you get KVM-over-IP remote control as standard, and not as a chargeable upgrade, which also allows you to define virtual floppy and optical media for the node to use.</p><p>The CyberServe X34-Q104 is one of the best designed and most well-built systems we've yet seen from Intel's Server Systems family and is well suited to a wide range of tasks including hosting and web server farms. Space constrained data centres looking to do more with available space will find its low power consumption appealing and it's also very good value with each node in the review costing only 600 each.</p><p><a href="https://www.itpro.com/630556/broadberry-cyberserve-x34-q104-review" target="_blank" data-original-url="https://www.itpro.com/630556/broadberry-cyberserve-x34-q104-review">So what's our verdict?</a></p><h2 id="verdict-22">Verdict</h2><p>Broadberry proves that four can go into one as the X34-Q104 delivers a high-density compute node package at a very low price. RAID is not an option for each server node, but the system is otherwise well designed and power consumption for all four nodes is impressively low.</p><p>Chassis: 1U rack Power: 2 x 450W cold-swap power supplies Compute Nodes: four, each with the following specification: CPU: 2.4GHz Intel Xeon X3430 Memory: 4GB 1,333MHz ECC DDR3 expandable to 32GB Storage: 80GB Intel SSD or 500GB Seagate Barracuda SATA hard disk Controller: Embedded Intel SATA controller RAID: None Network: 2 x Gigabit Ethernet Ports: 4 x USB2 Software: Intel Server Deployment Toolkit Options: Intel RMM3 Lite-V module, £35 per node</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ SolarWinds Storage Profiler 4.12 review ]]></title>
                                                                                                <dc:content><![CDATA[ <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/yCmQ4XXpwhMLc8sP9REkMT-1920-80.png" alt="Profiler provides a detailed overview of total capacity on the network and in virtualised environments." /><figcaption>Profiler provides a detailed overview of total capacity on the network and in virtualised environments.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/SUAFbduGjiaaNMT27HXaKi-1920-80.png" alt="You can drill down through the graphs to see performance and capacity details for individual servers that have the necessary " /><figcaption>You can drill down through the graphs to see performance and capacity details for individual servers that have the necessary </figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/dW2GNFnmPH4MERm26ATNfG-1920-80.png" alt="Plenty of information is provided for VMware systems where we could see our ESX Server was in dire need of a memory upgrade." /><figcaption>Plenty of information is provided for VMware systems where we could see our ESX Server was in dire need of a memory upgrade.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/zdyUv84ce2asmUoQavHnCV-1920-80.png" alt="The Backup Profiler module allows you to keep an eye on all your backup servers and operations from the main console." /><figcaption>The Backup Profiler module allows you to keep an eye on all your backup servers and operations from the main console.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/n8j4TvVdnfZfTvKdtdYi6g-1920-80.png" alt="Policies can be used to control a variety of activities such as scanning agent-enabled servers and reporting on files." /><figcaption>Policies can be used to control a variety of activities such as scanning agent-enabled servers and reporting on files.</figcaption></figure></figure><p>If there's one thing businesses can be sure of it's that demand for network storage will never stop growing. However, despite being faced with this voracious appetite, administrators simply can't keep on feeding it with more hardware. They must instead manage existing resources more effectively to reduce wastage.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="qdMJS6bCUFG9Fjn3gPPAFh" name="" alt="ITPRO_Value" src="https://cdn.mos.cms.futurecdn.net/qdMJS6bCUFG9Fjn3gPPAFh-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/qdMJS6bCUFG9Fjn3gPPAFh.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>SRM (storage resource management) was always supposed to be the answer, but we remain unconvinced by many of these products as they can be expensive and overly complex with few capable of managing mixed vendor environments. Storage Profiler from SolarWinds aims to avoid all these problems as it's designed to be easy to use, good value and capable of working with a wide range of network storage hardware.</p><p>Network resources supported include file and backup servers, RAID arrays, HBAs, NAS appliances, IP and FC SANs and VMware environments. However, pricing can be complex as Profiler has a number of optional components with the base product capable of monitoring SANs, NAS appliances and HBAs from vendors such as NetApp, EMC, Cisco, HP/3PAR, Dell/EqualLogic and IBM.</p><p>Licensing is based on the number of physical hard disks to be monitored, so even if your NetApp array has one virtual drive, a license is required for each member disk. Profiler can also monitor FC switches from Cisco, Brocade and QLogic, but this costs an extra 690 per switch.</p><p>For Windows Servers and VMware systems you need the Virtual & Server Profiler. It includes agents for Windows systems which provide enhanced reporting on system utilisation and resident files. Profiler doesn't use SNMP to gather information about system utilisation, so if you want to know about CPU, memory, disk and network usage on your Windows servers you will need this agent. It instead uses the VMware API to query host systems about system utilisation, VM activity and storage usage. It also provides details on end-to-end mappings and the relationships between VMs, datastores, LUNs and physical arrays.</p><p>For testing we had all options licensed and found installation to be a simple task with the Profiler server loaded on a Windows Server 2008 system in a few minutes. It doesn't offer automated agent deployment so we installed these manually on our Windows Server 2003, Server 2008 and Server 2008 R2 test systems.</p><p>The console's home page opens with a basic summary of managed systems and provides plenty of links to help and tutorials. Profiler uses policies and rules to control most functions. One rule allows agents to auto-register with the server which we found occurred within seconds of the agent being loaded.</p><p>A network discovery tool looks for EMC, LSI, NetApp and VMware systems and a new feature is support for SMI-S. Our test environment also included a VMware ESX Server 4 system which Profiler found and, once we had provided login credentials, added it to the list of managed hosts. SNMP must be configured for VMware and we found SolarWinds provides excellent instructions for this.</p><p>The main console page has an overview of monitored resources with pie charts showing total usable and raw storage plus VMware datastore usage. Beneath this are tables showing the top ten servers with the least amount of storage capacity available along with the highest processor and memory usage.</p><p>Select any of these graphs and you can drill down for more information and eventually arrive at individual systems. This window shows disk, processor, memory and network performance graphs as well as a capacity analysis which lets you see if free space on each volume is declining or increasing.</p><p>The Backup Profiler can be difficult to configure as it requires a lot of information about the backup application including log file locations and data and time formats. We also found out the hard way that it doesn't currently support CA ARCserve r15. We had more luck with Backup Exec r12.5 Profiler successfully detected two servers running this software. The Backup Monitor window kept track of successful, running and failed backup jobs on these backup servers.</p><p>Add servers to Backup Groups and you can view graphs of total backed up data, throughput and the percentage of successful jobs. If a backup job fails, the icon for the relevant server turns red to highlight this immediately. The event monitor keeps you updated on any problems with colour coded alerts and, once profiles have been configured, you can request alerts on issues such as capacity shortages, high processor usage and so on.</p><p>Profiler comes with hundreds of predefined reports covering all areas from volume usage for systems and groups to backup operations or available storage assets to SAN topologies. You can also use any of these as templates, customise them to suit and have them emailed out at regular intervals.</p><p>Even though some of the optional modules will push up the price, we still think that SolarWinds Storage Profiler is comparatively good value. It supports an extensive range of hardware vendors, is relatively easy to deploy and is capable of providing a wealth of information about your storage network.</p><p><a href="https://www.itpro.com/630106/solarwinds-storage-profiler-412-review" target="_blank" data-original-url="https://www.itpro.com/630106/solarwinds-storage-profiler-412-review">So what's our verdict?</a></p><h2 id="verdict-23">Verdict</h2><p>If you’re not sure what’s on your storage network then we recommend checking out Storage Profiler as it’s capable of providing a lot of useful information about an extensive range of devices. You will need the optional modules to get the best out of it, but this software will make sure you never run out of storage space again.</p><p>SYSTEM REQUIREMENTS Memory: 2GB Hard disk: 50GB Operating system: Windows Server 2003, Server 2008, Server 2008 R2 (32 and 64-bit) Options: Virtual & Server Profiler – £1,315 for up to 10 virtual or physical servers, £2,635 for up to 25 virtual or physical servers. Backup Profiler per primary backup server – Symantec Backup Exec, £350; CA ARCserve - £520, Symantec NetBackup - £3,450.</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/630106/solarwinds-storage-profiler-412-review</link>
                                                                            <description>
                            <![CDATA[ Are your storage networks out of control? SolarWinds claims its Storage Profiler software is easier to use and better value than most other SRM products. Read this review to see if it really can bring order to chaos. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">nA6Q8zGHMiMG3PN5iw7sgQ</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/yCmQ4XXpwhMLc8sP9REkMT-1920-80.png" type="image/png" length="0"></enclosure>
                                                                        <pubDate>Mon, 17 Jan 2011 14:35:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/png" url="https://cdn.mos.cms.futurecdn.net/yCmQ4XXpwhMLc8sP9REkMT-1920-80.png">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                        <media:description><![CDATA[You can drill down through the graphs to see performance and capacity details for individual servers that have the necessary ]]></media:description>                                                            <media:text><![CDATA[Profiler provides a detailed overview of total capacity on the network and in virtualised environments.]]></media:text>
                                <media:title type="plain"><![CDATA[Profiler provides a detailed overview of total capacity on the network and in virtualised environments.]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/yCmQ4XXpwhMLc8sP9REkMT-1920-80.png" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/yCmQ4XXpwhMLc8sP9REkMT-1920-80.png" alt="Profiler provides a detailed overview of total capacity on the network and in virtualised environments." /><figcaption>Profiler provides a detailed overview of total capacity on the network and in virtualised environments.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/SUAFbduGjiaaNMT27HXaKi-1920-80.png" alt="You can drill down through the graphs to see performance and capacity details for individual servers that have the necessary " /><figcaption>You can drill down through the graphs to see performance and capacity details for individual servers that have the necessary </figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/dW2GNFnmPH4MERm26ATNfG-1920-80.png" alt="Plenty of information is provided for VMware systems where we could see our ESX Server was in dire need of a memory upgrade." /><figcaption>Plenty of information is provided for VMware systems where we could see our ESX Server was in dire need of a memory upgrade.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/zdyUv84ce2asmUoQavHnCV-1920-80.png" alt="The Backup Profiler module allows you to keep an eye on all your backup servers and operations from the main console." /><figcaption>The Backup Profiler module allows you to keep an eye on all your backup servers and operations from the main console.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/n8j4TvVdnfZfTvKdtdYi6g-1920-80.png" alt="Policies can be used to control a variety of activities such as scanning agent-enabled servers and reporting on files." /><figcaption>Policies can be used to control a variety of activities such as scanning agent-enabled servers and reporting on files.</figcaption></figure></figure><p>If there's one thing businesses can be sure of it's that demand for network storage will never stop growing. However, despite being faced with this voracious appetite, administrators simply can't keep on feeding it with more hardware. They must instead manage existing resources more effectively to reduce wastage.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="qdMJS6bCUFG9Fjn3gPPAFh" name="" alt="ITPRO_Value" src="https://cdn.mos.cms.futurecdn.net/qdMJS6bCUFG9Fjn3gPPAFh-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/qdMJS6bCUFG9Fjn3gPPAFh.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>SRM (storage resource management) was always supposed to be the answer, but we remain unconvinced by many of these products as they can be expensive and overly complex with few capable of managing mixed vendor environments. Storage Profiler from SolarWinds aims to avoid all these problems as it's designed to be easy to use, good value and capable of working with a wide range of network storage hardware.</p><p>Network resources supported include file and backup servers, RAID arrays, HBAs, NAS appliances, IP and FC SANs and VMware environments. However, pricing can be complex as Profiler has a number of optional components with the base product capable of monitoring SANs, NAS appliances and HBAs from vendors such as NetApp, EMC, Cisco, HP/3PAR, Dell/EqualLogic and IBM.</p><p>Licensing is based on the number of physical hard disks to be monitored, so even if your NetApp array has one virtual drive, a license is required for each member disk. Profiler can also monitor FC switches from Cisco, Brocade and QLogic, but this costs an extra 690 per switch.</p><p>For Windows Servers and VMware systems you need the Virtual & Server Profiler. It includes agents for Windows systems which provide enhanced reporting on system utilisation and resident files. Profiler doesn't use SNMP to gather information about system utilisation, so if you want to know about CPU, memory, disk and network usage on your Windows servers you will need this agent. It instead uses the VMware API to query host systems about system utilisation, VM activity and storage usage. It also provides details on end-to-end mappings and the relationships between VMs, datastores, LUNs and physical arrays.</p><p>For testing we had all options licensed and found installation to be a simple task with the Profiler server loaded on a Windows Server 2008 system in a few minutes. It doesn't offer automated agent deployment so we installed these manually on our Windows Server 2003, Server 2008 and Server 2008 R2 test systems.</p><p>The console's home page opens with a basic summary of managed systems and provides plenty of links to help and tutorials. Profiler uses policies and rules to control most functions. One rule allows agents to auto-register with the server which we found occurred within seconds of the agent being loaded.</p><p>A network discovery tool looks for EMC, LSI, NetApp and VMware systems and a new feature is support for SMI-S. Our test environment also included a VMware ESX Server 4 system which Profiler found and, once we had provided login credentials, added it to the list of managed hosts. SNMP must be configured for VMware and we found SolarWinds provides excellent instructions for this.</p><p>The main console page has an overview of monitored resources with pie charts showing total usable and raw storage plus VMware datastore usage. Beneath this are tables showing the top ten servers with the least amount of storage capacity available along with the highest processor and memory usage.</p><p>Select any of these graphs and you can drill down for more information and eventually arrive at individual systems. This window shows disk, processor, memory and network performance graphs as well as a capacity analysis which lets you see if free space on each volume is declining or increasing.</p><p>The Backup Profiler can be difficult to configure as it requires a lot of information about the backup application including log file locations and data and time formats. We also found out the hard way that it doesn't currently support CA ARCserve r15. We had more luck with Backup Exec r12.5 Profiler successfully detected two servers running this software. The Backup Monitor window kept track of successful, running and failed backup jobs on these backup servers.</p><p>Add servers to Backup Groups and you can view graphs of total backed up data, throughput and the percentage of successful jobs. If a backup job fails, the icon for the relevant server turns red to highlight this immediately. The event monitor keeps you updated on any problems with colour coded alerts and, once profiles have been configured, you can request alerts on issues such as capacity shortages, high processor usage and so on.</p><p>Profiler comes with hundreds of predefined reports covering all areas from volume usage for systems and groups to backup operations or available storage assets to SAN topologies. You can also use any of these as templates, customise them to suit and have them emailed out at regular intervals.</p><p>Even though some of the optional modules will push up the price, we still think that SolarWinds Storage Profiler is comparatively good value. It supports an extensive range of hardware vendors, is relatively easy to deploy and is capable of providing a wealth of information about your storage network.</p><p><a href="https://www.itpro.com/630106/solarwinds-storage-profiler-412-review" target="_blank" data-original-url="https://www.itpro.com/630106/solarwinds-storage-profiler-412-review">So what's our verdict?</a></p><h2 id="verdict-23">Verdict</h2><p>If you’re not sure what’s on your storage network then we recommend checking out Storage Profiler as it’s capable of providing a lot of useful information about an extensive range of devices. You will need the optional modules to get the best out of it, but this software will make sure you never run out of storage space again.</p><p>SYSTEM REQUIREMENTS Memory: 2GB Hard disk: 50GB Operating system: Windows Server 2003, Server 2008, Server 2008 R2 (32 and 64-bit) Options: Virtual & Server Profiler – £1,315 for up to 10 virtual or physical servers, £2,635 for up to 25 virtual or physical servers. Backup Profiler per primary backup server – Symantec Backup Exec, £350; CA ARCserve - £520, Symantec NetBackup - £3,450.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Dell PowerEdge R715 review ]]></title>
                                                                                                <dc:content><![CDATA[ <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/QLyWgr3EGUXMcjQ33d8Wkg-1920-80.jpg" alt="The Dell PowerEdge R715" /><figcaption>The Dell PowerEdge R715</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/axyaBjX7k4VkPiWjxme9fU-1920-80.jpg" alt="The interior of the Dell PowerEdge R715" /><figcaption>The interior of the Dell PowerEdge R715</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/vLdF9a7DFfL2sSNdQ9aYDJ-1920-80.png" alt="Dell’s latest iDRAC6 remote controller sees a much improved web interface with many more features." /><figcaption>Dell’s latest iDRAC6 remote controller sees a much improved web interface with many more features.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/sptNzg6qTZUvfQtXW6YwGZ-1920-80.png" alt="Enhanced remote power monitoring tools now provide a lot more detail about usage." /><figcaption>Enhanced remote power monitoring tools now provide a lot more detail about usage.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/2Nch3ikNGS8L4Gt8FFjzMR-1920-80.png" alt="Graphs of power consumption over time are included and power capping in the iDRAC6 is now available." /><figcaption>Graphs of power consumption over time are included and power capping in the iDRAC6 is now available.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/LEzp2ouRTUFLmEdZR4WiyT-1920-80.png" alt="KVM-over-IP remote control is a standard feature of the iDRAC6 Enterprise upgrade." /><figcaption>KVM-over-IP remote control is a standard feature of the iDRAC6 Enterprise upgrade.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/ba3x3K7tqQb2ySg7bbXVei-1920-80.png" alt="Dell’s Management Console is more complex than HP’s Insight Control but does provides full network systems management." /><figcaption>Dell’s Management Console is more complex than HP’s Insight Control but does provides full network systems management.</figcaption></figure></figure><p>Since their launch earlier this year, AMD's Opteron 6100 series of processors have garnered a lot of interest from the blue chips with many significantly expanding their server ranges to accommodate them. In this review we take a closer look at Dell's first dual-socket Opteron 6100 rack server, the PowerEdge R715 and also see how well it stands up to HP's latest seventh-generation ProLiant DL385.</p><p>One of the main claims by AMD is that the Opteron 6100 removes the artificial price barrier to four-processor (4P) computing. In our review of Dell's quad-socket 2U PowerEdge R815 <a href="https://www.itpro.com/625213/dell-poweredge-r815-review" target="_blank" data-original-url="https://www.itpro.com/625213/dell-poweredge-r815-review">PowerEdge R815</a> we agreed as this rack server was far more cost effective that a four-socket Xeon 7500 server.</p><p>Move down to two-processor (2P) platforms and the advantages aren't so clear cut as the Opterons face stiff competition from Intel's 5500 and 5600 Xeons. AMD scores higher for physical cores as the R715 comes with a pair of 12-core Opteron 6174 processors. The 6-core 5600 Xeons can match this but only with Intel's hyperthreading producing 24 logical cores.</p><p>The R715 shares the same chassis with both the PowerEdge R815 and the Xeon-based R810 where the front panel is split into two sections horizontally. The lower half provides an unimpeded air flow through the chassis. Above you have a hot-swap hard disk bay, optical drive and Dell's nifty little LCD display which provides clear visual warnings of faults.</p><p>Dell is promoting the R715 as a general purpose server but for storage duties it doesn't come close to HP's DL385 G7 which we exclusively reviewed in our sister title <a href="http://www.pcpro.co.uk/reviews/servers/361807/hp-proliant-dl385-g7" target="_blank">PC Pro</a>. The front panel design only has room for up to six SFF hard disks whereas the DL385 can accommodate up to sixteen disks.</p><p>The R715 scores highly as a virtualisation platform for a number of reasons. First up is memory capacity as the server supports up to 256GB of memory running at 1333MHz although a full set of 16GB RDIMMs will set you back over 12,000. If you decide to cut costs don't forget that using cheaper UDIMM memory limits capacity to 32GB and they can't be mixed with RDIMMs.</p><p>Boot media support for embedded hypervisors is the best of all the blue chips as Dell sells an optional dual SD memory card expansion board with two 1GB SD cards for a modest 67. Fitted on top of the optical drive, the controller automatically copies the contents of the primary SD card to the secondary one to provide boot media redundancy.</p><p>Two hot-plug supplies are supported. Our review system came fitted with a pair of 750W modules. If you go for the high power Opteron 6175SE processors you should fit Dell's 1100W supplies to cope with their 140W TDPs.</p><p>The Opteron 6174 processors in the review system have a lower TDP rating of 115W and our inline meter recorded a modest draw of 145W with Windows Server 2008 Enterprise R2 in idle. With all cores pushed hard by SiSoft Sandra this peaked at 344W. Intel's 5600 Xeons aren't so hungry as an IBM x3550 M3 rack server with the same amount of memory and two 2.66GHz X5650s pulled 155W in idle and 280W under load.</p><p>ProLiant DL380 G7.</p><p>Dell's new iDRAC6 console is much smarter than the previous version and opens with a complete status report on all critical components. On the Enterprise version you also get a thumbnail preview of the server's screen and quick access to KVM-over-IP remote control.</p><p>Power monitoring gets far more attention as the console now provides tables showing peak and average power usage along with statistics of total usage over time. It also shows real-time consumption graphs and power capping can be set in Watts, BTU/hr or as a percentage of total available power.</p><p>HP's iLO3 has better remote control performance and tighter access security with AES hardware encryption. The iDRAC6 doesn't offer any encryption options although remote control performance is good with only a slight lag to mouse actions.</p><p>As we've shown in <a href="http://www.pcpro.co.uk/reviews/processors/357685/amd-opteron-6100-series" target="_blank">processor performance tests carried out by PC Pro</a>, the performance of AMD's Opteron 6100 is roughly in line with Intel's 5600 Xeons. Their higher physical core count and greater memory support for 2P platforms make them good candidates for virtualisation duties.</p><p>For those with an eye on the future it's also worth noting that the Opteron 6100 is the first phase of AMD's 'Maranello' 6000 platform series. Dell confirmed to us that the R715 will support the next 'Interlagos' 12- and 16-core processors as drop-in upgrades making the R715 a good long-term investment.</p><p><a href="https://www.itpro.com/629581/dell-poweredge-r715-review" target="_blank" data-original-url="https://www.itpro.com/629581/dell-poweredge-r715-review">So what's our verdict?</a></p><h2 id="verdict-24">Verdict</h2><p>Dell's first dual Opteron 6100 server is a good value platform for virtualisation and is clearly capable of handling many other duties including small databases and server consolidation. However, if a high storage capacity is a key requirement then HP's ProLiant DL385 G7 is a far better choice and although Dell has improved its remote management features, they're still not as good as HP's.</p><p>Chassis: 2U rack CPU: 2 x 2.2GHz AMD Opteron 6174 Memory: 32GB DDR3 1333MHz RDIMM memory expandable to 256GB Storage: 2 x 146GB Dell 15K.2 SFF 6Gb/s SAS hard disks in hot-swap carriers RAID: Dell PERC H700 RAID card with 512MB cache and BBU Array support: RAID 0, 1, 10, 5, 6 Expansion: 6 x PCI-Express 2.0 slots Network: 4 x Gigabit Ethernet Power: 2 x 750W hot-plug supplies Management: iDRAC6 Enterprise Software: Dell Management Console Warranty: 3year on-site next business day</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/629581/dell-poweredge-r715-review</link>
                                                                            <description>
                            <![CDATA[ Dell's latest PowerEdge R715 is being promoted as the perfect all-round rack server for SMBs. In this review we take an in-depth look at its new dual-socket Opteron 6100 system and also pitch it up against its biggest competitor, HP's ProLiant DL385 G7. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">g1xcQud43MCWURMANEx1MH</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/QLyWgr3EGUXMcjQ33d8Wkg-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Mon, 20 Dec 2010 08:00:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Encryption]]></category>
                                                    <category><![CDATA[Security]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/QLyWgr3EGUXMcjQ33d8Wkg-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                        <media:description><![CDATA[The interior of the Dell PowerEdge R715]]></media:description>                                                            <media:text><![CDATA[The Dell PowerEdge R715]]></media:text>
                                <media:title type="plain"><![CDATA[The Dell PowerEdge R715]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/QLyWgr3EGUXMcjQ33d8Wkg-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/QLyWgr3EGUXMcjQ33d8Wkg-1920-80.jpg" alt="The Dell PowerEdge R715" /><figcaption>The Dell PowerEdge R715</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/axyaBjX7k4VkPiWjxme9fU-1920-80.jpg" alt="The interior of the Dell PowerEdge R715" /><figcaption>The interior of the Dell PowerEdge R715</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/vLdF9a7DFfL2sSNdQ9aYDJ-1920-80.png" alt="Dell’s latest iDRAC6 remote controller sees a much improved web interface with many more features." /><figcaption>Dell’s latest iDRAC6 remote controller sees a much improved web interface with many more features.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/sptNzg6qTZUvfQtXW6YwGZ-1920-80.png" alt="Enhanced remote power monitoring tools now provide a lot more detail about usage." /><figcaption>Enhanced remote power monitoring tools now provide a lot more detail about usage.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/2Nch3ikNGS8L4Gt8FFjzMR-1920-80.png" alt="Graphs of power consumption over time are included and power capping in the iDRAC6 is now available." /><figcaption>Graphs of power consumption over time are included and power capping in the iDRAC6 is now available.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/LEzp2ouRTUFLmEdZR4WiyT-1920-80.png" alt="KVM-over-IP remote control is a standard feature of the iDRAC6 Enterprise upgrade." /><figcaption>KVM-over-IP remote control is a standard feature of the iDRAC6 Enterprise upgrade.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/ba3x3K7tqQb2ySg7bbXVei-1920-80.png" alt="Dell’s Management Console is more complex than HP’s Insight Control but does provides full network systems management." /><figcaption>Dell’s Management Console is more complex than HP’s Insight Control but does provides full network systems management.</figcaption></figure></figure><p>Since their launch earlier this year, AMD's Opteron 6100 series of processors have garnered a lot of interest from the blue chips with many significantly expanding their server ranges to accommodate them. In this review we take a closer look at Dell's first dual-socket Opteron 6100 rack server, the PowerEdge R715 and also see how well it stands up to HP's latest seventh-generation ProLiant DL385.</p><p>One of the main claims by AMD is that the Opteron 6100 removes the artificial price barrier to four-processor (4P) computing. In our review of Dell's quad-socket 2U PowerEdge R815 <a href="https://www.itpro.com/625213/dell-poweredge-r815-review" target="_blank" data-original-url="https://www.itpro.com/625213/dell-poweredge-r815-review">PowerEdge R815</a> we agreed as this rack server was far more cost effective that a four-socket Xeon 7500 server.</p><p>Move down to two-processor (2P) platforms and the advantages aren't so clear cut as the Opterons face stiff competition from Intel's 5500 and 5600 Xeons. AMD scores higher for physical cores as the R715 comes with a pair of 12-core Opteron 6174 processors. The 6-core 5600 Xeons can match this but only with Intel's hyperthreading producing 24 logical cores.</p><p>The R715 shares the same chassis with both the PowerEdge R815 and the Xeon-based R810 where the front panel is split into two sections horizontally. The lower half provides an unimpeded air flow through the chassis. Above you have a hot-swap hard disk bay, optical drive and Dell's nifty little LCD display which provides clear visual warnings of faults.</p><p>Dell is promoting the R715 as a general purpose server but for storage duties it doesn't come close to HP's DL385 G7 which we exclusively reviewed in our sister title <a href="http://www.pcpro.co.uk/reviews/servers/361807/hp-proliant-dl385-g7" target="_blank">PC Pro</a>. The front panel design only has room for up to six SFF hard disks whereas the DL385 can accommodate up to sixteen disks.</p><p>The R715 scores highly as a virtualisation platform for a number of reasons. First up is memory capacity as the server supports up to 256GB of memory running at 1333MHz although a full set of 16GB RDIMMs will set you back over 12,000. If you decide to cut costs don't forget that using cheaper UDIMM memory limits capacity to 32GB and they can't be mixed with RDIMMs.</p><p>Boot media support for embedded hypervisors is the best of all the blue chips as Dell sells an optional dual SD memory card expansion board with two 1GB SD cards for a modest 67. Fitted on top of the optical drive, the controller automatically copies the contents of the primary SD card to the secondary one to provide boot media redundancy.</p><p>Two hot-plug supplies are supported. Our review system came fitted with a pair of 750W modules. If you go for the high power Opteron 6175SE processors you should fit Dell's 1100W supplies to cope with their 140W TDPs.</p><p>The Opteron 6174 processors in the review system have a lower TDP rating of 115W and our inline meter recorded a modest draw of 145W with Windows Server 2008 Enterprise R2 in idle. With all cores pushed hard by SiSoft Sandra this peaked at 344W. Intel's 5600 Xeons aren't so hungry as an IBM x3550 M3 rack server with the same amount of memory and two 2.66GHz X5650s pulled 155W in idle and 280W under load.</p><p>ProLiant DL380 G7.</p><p>Dell's new iDRAC6 console is much smarter than the previous version and opens with a complete status report on all critical components. On the Enterprise version you also get a thumbnail preview of the server's screen and quick access to KVM-over-IP remote control.</p><p>Power monitoring gets far more attention as the console now provides tables showing peak and average power usage along with statistics of total usage over time. It also shows real-time consumption graphs and power capping can be set in Watts, BTU/hr or as a percentage of total available power.</p><p>HP's iLO3 has better remote control performance and tighter access security with AES hardware encryption. The iDRAC6 doesn't offer any encryption options although remote control performance is good with only a slight lag to mouse actions.</p><p>As we've shown in <a href="http://www.pcpro.co.uk/reviews/processors/357685/amd-opteron-6100-series" target="_blank">processor performance tests carried out by PC Pro</a>, the performance of AMD's Opteron 6100 is roughly in line with Intel's 5600 Xeons. Their higher physical core count and greater memory support for 2P platforms make them good candidates for virtualisation duties.</p><p>For those with an eye on the future it's also worth noting that the Opteron 6100 is the first phase of AMD's 'Maranello' 6000 platform series. Dell confirmed to us that the R715 will support the next 'Interlagos' 12- and 16-core processors as drop-in upgrades making the R715 a good long-term investment.</p><p><a href="https://www.itpro.com/629581/dell-poweredge-r715-review" target="_blank" data-original-url="https://www.itpro.com/629581/dell-poweredge-r715-review">So what's our verdict?</a></p><h2 id="verdict-24">Verdict</h2><p>Dell's first dual Opteron 6100 server is a good value platform for virtualisation and is clearly capable of handling many other duties including small databases and server consolidation. However, if a high storage capacity is a key requirement then HP's ProLiant DL385 G7 is a far better choice and although Dell has improved its remote management features, they're still not as good as HP's.</p><p>Chassis: 2U rack CPU: 2 x 2.2GHz AMD Opteron 6174 Memory: 32GB DDR3 1333MHz RDIMM memory expandable to 256GB Storage: 2 x 146GB Dell 15K.2 SFF 6Gb/s SAS hard disks in hot-swap carriers RAID: Dell PERC H700 RAID card with 512MB cache and BBU Array support: RAID 0, 1, 10, 5, 6 Expansion: 6 x PCI-Express 2.0 slots Network: 4 x Gigabit Ethernet Power: 2 x 750W hot-plug supplies Management: iDRAC6 Enterprise Software: Dell Management Console Warranty: 3year on-site next business day</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ HP ProLiant DL580 G7 review ]]></title>
                                                                                                <dc:content><![CDATA[ <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/2NhcREwck2ijwDY84B27aP-1920-80.jpg" alt="The HP ProLiant DL580 G7" /><figcaption>The HP ProLiant DL580 G7</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/qDcv7AjWw6azQG9EcMfXBi-1920-80.png" alt="HP’s iLO3 provides plenty of power controls and allows you to cap usage to a percentage of total available power." /><figcaption>HP’s iLO3 provides plenty of power controls and allows you to cap usage to a percentage of total available power.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Y7sKFJPX93jh5fJiZ9FoGb-1920-80.png" alt="It is an optional upgrade to the iLO3, but HP’s Power Meter feature is well worth having." /><figcaption>It is an optional upgrade to the iLO3, but HP’s Power Meter feature is well worth having.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/LFCKpENCehnqTVFV9ZzFkB-1920-80.png" alt="It does require an upgrade, but the iLO3 can provide full KVM-over-IP remote control and virtual media services." /><figcaption>It does require an upgrade, but the iLO3 can provide full KVM-over-IP remote control and virtual media services.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/7fJM4jgJgW6a5yWN2gyhAK-1920-80.png" alt="HP’s System Management homepage provides basic but useful browser based server monitoring." /><figcaption>HP’s System Management homepage provides basic but useful browser based server monitoring.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/fDUQxLopRM9uBR3X77BkdV-1920-80.png" alt="The Insight Control software includes full network systems management tools and optional server power monitoring." /><figcaption>The Insight Control software includes full network systems management tools and optional server power monitoring.</figcaption></figure></figure><p>Although Intel launched its 7500-series Xeon processors way back in March it's taken HP an inordinate amount of time to deliver a production server supporting these new enterprise processors. HP has granted us exclusive access to the new seventh generation of its ProLiant DL580 rack server and we see whether the wait has been worthwhile.</p><p>HP has certainly taken its time. Dell was first through our lab doors six months ago when it gave us an exclusive on its <a href="https://www.itpro.com/623119/dell-poweredge-r910-review" target="_blank" data-original-url="https://www.itpro.com/623119/dell-poweredge-r910-review">PowerEdge R910</a>. This was followed shortly afterwards by <a href="https://www.itpro.com/624664/fujitsu-primergy-rx600-s5-review" target="_blank" data-original-url="https://www.itpro.com/624664/fujitsu-primergy-rx600-s5-review">Fujitsu's Primergy RX600 S5</a> and IBM's massively expandable <a href="https://www.itpro.com/624712/ibm-system-x3850-x5-review" target="_blank" data-original-url="https://www.itpro.com/624712/ibm-system-x3850-x5-review">System x3850 X5</a> .</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="qdMJS6bCUFG9Fjn3gPPAFh" name="" alt="ITPRO_Value" src="https://cdn.mos.cms.futurecdn.net/qdMJS6bCUFG9Fjn3gPPAFh-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/qdMJS6bCUFG9Fjn3gPPAFh.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>As we've already reviewed the main players in the Xeon 7500 market, this puts us in a good position to compare the DL580 G7 with all of its rivals. NEC Computers threatened to launch its Express5800/A1080a some months ago but this has never materialised in the UK so we don't consider this a competitor to HP.</p><p>HP has taken the 4U chassis from the DL580 G5 and redesigned it with a much higher drawer which contains all four processor sockets and memory. The drawer is easily removed by pressing the button at the top which releases a large handle. Locking tabs on both sides of the drawer stop it accidentally falling out and with these depressed the drawer can be slid out completely.</p><p>The Xeon processors are mounted in a line across the back of the drawer and each is fitted with a large passive heatsink. The price for the review system includes four 2GHz Xeon E7540 processors. Each one has six processing cores, giving a total of 24 cores.</p><p>In front of the processors are eight bays in a row for the cold-swap memory modules which slot in easily and are locked down with a couple of plastic levers. Each module has eight DIMM slots allowing capacity to be increased to the maximum 1TB.</p><p>There isn't much room left in the front of the server but HP has managed to squeeze in eight SFF hot-swap disk bays. We were supplied with two 300GB 6Gbps SAS drives but HP also offers near-line SAS models so you can focus on capacity and price rather than performance. Limited storage capacity is one of HP's weaknesses as you can't expand beyond eight internal drive bays. This is the same as for Fujitsu's RX600 S5 but both Dell's R910 and IBM's x3850 have enough room for up to sixteen SFF drives.</p><p>Pushing all the processors and memory up to the front of the server leaves a lot of space round back and HP has put it to very good use as expansion potential is the best of all. The drawer mates with a power distribution connector and a horizontal system board which takes up half the width of the chassis.</p><p>The system board has a dedicated slot for a vertical SPI board packed with masses of embedded features. It has a Smart Array P410i RAID controller and cache memory slot with a pair of SAS ports cabled directly to the drive backplane.</p><p>The review system included 1GB of HP's flash-backed write cache and the battery backup pack. The P410i supports mirrors, stripes and RAID-5 as standard and an advanced license pack adds RAID-6 support.</p><p>The SPI board has four Gigabit Ethernet ports and has a separate expansion slot for HP's dual port 10-Gigabit SFP module. Adding this upgrades the first two Ethernet ports to 10-Gigabit status without using a standard expansion slot.</p><p>the DL380 G7. It provides a dedicated Fast Ethernet port for management access and you also have pairs of USB and PS/2 ports.</p><p>The system board has two internal USB ports, as well as a connector for a SSD which slots into the side of the chassis. The SPI board has a SD memory card slot. These are all provided specifically for booting the server with an embedded hypervisor so you have a big choice of boot media to use.</p><p>We thought Fujitsu's RX600 and its ten PCI Express slots had the edge for sheer expansion potential but HP goes that little bit further. The system board has five available PCI Express slots but you can add an extra I/O expansion board with options for six more slots which can even be used as a mixture of PCI-E and PCI-X.</p><p>Power redundancy is good as the review system includes four 1200W hot-plug modules, the maximum number possible. It did well in our power tests with the four Xeons drawing 530W in idle and peaking at 736W under extreme pressure from SiSoft Sandra.</p><p>This shows the benefits of the six-core Xeons as Dell's R910 and its quartet of X7550 eight-core Xeons hit a peak of 859W under load. Both IBM's x3850 and Fujitsu's RX600 had the same eight-core processors and pulled maximum loads of 835W and 895W respectively.</p><p>Although the system on review has a relatively small amount of memory included, the DL580 G7 is still good value and compares well on price with Dell's R910. Storage capacity isn't as high but it has top expansion potential and redundancy plus HP won't be beaten for its classy remote management features.</p><p><a href="https://www.itpro.com/629359/hp-proliant-dl580-g7-review" target="_blank" data-original-url="https://www.itpro.com/629359/hp-proliant-dl580-g7-review">So what's our verdict?</a></p><h2 id="verdict-25">Verdict</h2><p>Businesses looking to replace expensive RISC based systems will find HP’s new ProLiant DL580 G7 is a cost effective Xeon 7500 based alternative. IBM’s x3850 does have some unique capabilities for increasing memory and processor capacities but it costs around twice as much. Storage capacity for the DL580 isn’t as good as Dell’s R910 but HP offers a very good combination of expansion potential, component redundancy and remote management.</p><p>Chassis: 4U rack CPU: 4 x 2GHz Intel Xeon E7540 Memory: 32GB 1,066MHz RDIMM DDR3 expandable to 1TB Storage: 2 x 300GB HP SFF 15K 6Gbps SAS disks in hot-swap carriers RAID: HP Smart Array P410i with 1GB cache and BBU Array support: RAID 0, 1, 10, 5 Expansion: 5 x PCI Express slots (max. 11) Network: 4 x Gigabit Ethernet Power: 4 x 1200W hot-plug supplies Management: HP iLO3 with 10/100 Ethernet management port Software: HP Insight Control</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/629359/hp-proliant-dl580-g7-review</link>
                                                                            <description>
                            <![CDATA[ It’s been a long wait but HP finally makes its entrance into the Xeon 7500 server market. The new ProLiant DL580 G7 looks good value, but how does it stack up against servers from IBM, Dell and Fujitsu? Read this exclusive review to find out. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">4rLKmFAhJhvQa9W6YaomV1</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/2NhcREwck2ijwDY84B27aP-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Fri, 10 Dec 2010 10:00:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Virtualisation]]></category>
                                                    <category><![CDATA[Cloud]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/2NhcREwck2ijwDY84B27aP-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                        <media:description><![CDATA[HP’s iLO3 provides plenty of power controls and allows you to cap usage to a percentage of total available power.]]></media:description>                                                            <media:text><![CDATA[The HP ProLiant DL580 G7]]></media:text>
                                <media:title type="plain"><![CDATA[The HP ProLiant DL580 G7]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/2NhcREwck2ijwDY84B27aP-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <figure role="gallery"><figure><img src="https://cdn.mos.cms.futurecdn.net/2NhcREwck2ijwDY84B27aP-1920-80.jpg" alt="The HP ProLiant DL580 G7" /><figcaption>The HP ProLiant DL580 G7</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/qDcv7AjWw6azQG9EcMfXBi-1920-80.png" alt="HP’s iLO3 provides plenty of power controls and allows you to cap usage to a percentage of total available power." /><figcaption>HP’s iLO3 provides plenty of power controls and allows you to cap usage to a percentage of total available power.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/Y7sKFJPX93jh5fJiZ9FoGb-1920-80.png" alt="It is an optional upgrade to the iLO3, but HP’s Power Meter feature is well worth having." /><figcaption>It is an optional upgrade to the iLO3, but HP’s Power Meter feature is well worth having.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/LFCKpENCehnqTVFV9ZzFkB-1920-80.png" alt="It does require an upgrade, but the iLO3 can provide full KVM-over-IP remote control and virtual media services." /><figcaption>It does require an upgrade, but the iLO3 can provide full KVM-over-IP remote control and virtual media services.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/7fJM4jgJgW6a5yWN2gyhAK-1920-80.png" alt="HP’s System Management homepage provides basic but useful browser based server monitoring." /><figcaption>HP’s System Management homepage provides basic but useful browser based server monitoring.</figcaption></figure><figure><img src="https://cdn.mos.cms.futurecdn.net/fDUQxLopRM9uBR3X77BkdV-1920-80.png" alt="The Insight Control software includes full network systems management tools and optional server power monitoring." /><figcaption>The Insight Control software includes full network systems management tools and optional server power monitoring.</figcaption></figure></figure><p>Although Intel launched its 7500-series Xeon processors way back in March it's taken HP an inordinate amount of time to deliver a production server supporting these new enterprise processors. HP has granted us exclusive access to the new seventh generation of its ProLiant DL580 rack server and we see whether the wait has been worthwhile.</p><p>HP has certainly taken its time. Dell was first through our lab doors six months ago when it gave us an exclusive on its <a href="https://www.itpro.com/623119/dell-poweredge-r910-review" target="_blank" data-original-url="https://www.itpro.com/623119/dell-poweredge-r910-review">PowerEdge R910</a>. This was followed shortly afterwards by <a href="https://www.itpro.com/624664/fujitsu-primergy-rx600-s5-review" target="_blank" data-original-url="https://www.itpro.com/624664/fujitsu-primergy-rx600-s5-review">Fujitsu's Primergy RX600 S5</a> and IBM's massively expandable <a href="https://www.itpro.com/624712/ibm-system-x3850-x5-review" target="_blank" data-original-url="https://www.itpro.com/624712/ibm-system-x3850-x5-review">System x3850 X5</a> .</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="qdMJS6bCUFG9Fjn3gPPAFh" name="" alt="ITPRO_Value" src="https://cdn.mos.cms.futurecdn.net/qdMJS6bCUFG9Fjn3gPPAFh-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/qdMJS6bCUFG9Fjn3gPPAFh.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>As we've already reviewed the main players in the Xeon 7500 market, this puts us in a good position to compare the DL580 G7 with all of its rivals. NEC Computers threatened to launch its Express5800/A1080a some months ago but this has never materialised in the UK so we don't consider this a competitor to HP.</p><p>HP has taken the 4U chassis from the DL580 G5 and redesigned it with a much higher drawer which contains all four processor sockets and memory. The drawer is easily removed by pressing the button at the top which releases a large handle. Locking tabs on both sides of the drawer stop it accidentally falling out and with these depressed the drawer can be slid out completely.</p><p>The Xeon processors are mounted in a line across the back of the drawer and each is fitted with a large passive heatsink. The price for the review system includes four 2GHz Xeon E7540 processors. Each one has six processing cores, giving a total of 24 cores.</p><p>In front of the processors are eight bays in a row for the cold-swap memory modules which slot in easily and are locked down with a couple of plastic levers. Each module has eight DIMM slots allowing capacity to be increased to the maximum 1TB.</p><p>There isn't much room left in the front of the server but HP has managed to squeeze in eight SFF hot-swap disk bays. We were supplied with two 300GB 6Gbps SAS drives but HP also offers near-line SAS models so you can focus on capacity and price rather than performance. Limited storage capacity is one of HP's weaknesses as you can't expand beyond eight internal drive bays. This is the same as for Fujitsu's RX600 S5 but both Dell's R910 and IBM's x3850 have enough room for up to sixteen SFF drives.</p><p>Pushing all the processors and memory up to the front of the server leaves a lot of space round back and HP has put it to very good use as expansion potential is the best of all. The drawer mates with a power distribution connector and a horizontal system board which takes up half the width of the chassis.</p><p>The system board has a dedicated slot for a vertical SPI board packed with masses of embedded features. It has a Smart Array P410i RAID controller and cache memory slot with a pair of SAS ports cabled directly to the drive backplane.</p><p>The review system included 1GB of HP's flash-backed write cache and the battery backup pack. The P410i supports mirrors, stripes and RAID-5 as standard and an advanced license pack adds RAID-6 support.</p><p>The SPI board has four Gigabit Ethernet ports and has a separate expansion slot for HP's dual port 10-Gigabit SFP module. Adding this upgrades the first two Ethernet ports to 10-Gigabit status without using a standard expansion slot.</p><p>the DL380 G7. It provides a dedicated Fast Ethernet port for management access and you also have pairs of USB and PS/2 ports.</p><p>The system board has two internal USB ports, as well as a connector for a SSD which slots into the side of the chassis. The SPI board has a SD memory card slot. These are all provided specifically for booting the server with an embedded hypervisor so you have a big choice of boot media to use.</p><p>We thought Fujitsu's RX600 and its ten PCI Express slots had the edge for sheer expansion potential but HP goes that little bit further. The system board has five available PCI Express slots but you can add an extra I/O expansion board with options for six more slots which can even be used as a mixture of PCI-E and PCI-X.</p><p>Power redundancy is good as the review system includes four 1200W hot-plug modules, the maximum number possible. It did well in our power tests with the four Xeons drawing 530W in idle and peaking at 736W under extreme pressure from SiSoft Sandra.</p><p>This shows the benefits of the six-core Xeons as Dell's R910 and its quartet of X7550 eight-core Xeons hit a peak of 859W under load. Both IBM's x3850 and Fujitsu's RX600 had the same eight-core processors and pulled maximum loads of 835W and 895W respectively.</p><p>Although the system on review has a relatively small amount of memory included, the DL580 G7 is still good value and compares well on price with Dell's R910. Storage capacity isn't as high but it has top expansion potential and redundancy plus HP won't be beaten for its classy remote management features.</p><p><a href="https://www.itpro.com/629359/hp-proliant-dl580-g7-review" target="_blank" data-original-url="https://www.itpro.com/629359/hp-proliant-dl580-g7-review">So what's our verdict?</a></p><h2 id="verdict-25">Verdict</h2><p>Businesses looking to replace expensive RISC based systems will find HP’s new ProLiant DL580 G7 is a cost effective Xeon 7500 based alternative. IBM’s x3850 does have some unique capabilities for increasing memory and processor capacities but it costs around twice as much. Storage capacity for the DL580 isn’t as good as Dell’s R910 but HP offers a very good combination of expansion potential, component redundancy and remote management.</p><p>Chassis: 4U rack CPU: 4 x 2GHz Intel Xeon E7540 Memory: 32GB 1,066MHz RDIMM DDR3 expandable to 1TB Storage: 2 x 300GB HP SFF 15K 6Gbps SAS disks in hot-swap carriers RAID: HP Smart Array P410i with 1GB cache and BBU Array support: RAID 0, 1, 10, 5 Expansion: 5 x PCI Express slots (max. 11) Network: 4 x Gigabit Ethernet Power: 4 x 1200W hot-plug supplies Management: HP iLO3 with 10/100 Ethernet management port Software: HP Insight Control</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ FalconStor FDS SA101 ]]></title>
                                                                                                <dc:content><![CDATA[ <p>Data storage growth is now one of the biggest IT challenges to businesses large and small. Deduplication is an increasingly popular data reduction technology that can keep it under control. It has been gradually filtering down to SMBs and FalconStor's latest FDS (file-interface deduplication system) appliances have some unusual features.</p><p>The FDS SA101 on review is an entry-level rack mount appliance. FalconStor's choice of hardware platform gets our vote of confidence as it is a well specified Dell PowerEdge R710.</p><p>Storage is presented as CIFS and NFS network shares so deployment is simple. Data reduction is carried out locally so it has the advantage of working with any backup software and you can run drag and drop copies to deduplicated shares as well.</p><p>FalconStor aims the SA100 series of appliances specifically as replacements for tape based backup at remote sites and branch offices. Encrypted replication is included as standard and made all the more valuable as a single appliance supports up to 150 sources.</p><p>The appliance has four 1TB SATA hard disks preconfigured as a RAID-5 array. This is split into virtual volumes handling a variety of functions including the index, database, system applications, data cache and repository.</p><p>It uses an 820GB backup cache to store incoming data ready for deduplication. This leaves you with a 1TB repository and FalconStor's claimed deduplication ratio of 20:1 increases this to a logical 20TB. If you need more physical capacity, then consider the SA102 model which has a 2TB repository that can be upgraded via a license to 4TB.</p><p>Initial installation starts with the web browser interface and a quick setup page where you name the appliance and assign IP addresses to the four Gigabit Ethernet ports. The interface also provides access for adding licenses, viewing documentation and bonding the network ports into load-balanced teams.</p><p>You then use the FDS Console utility which is installed directly from the web interface. FalconStor supports Symantec's OpenStorage (OST) API allowing it to work with NetBackup's data mover function and the plug-in is installed from here as well.</p><p>The FDS Console takes a while to get to grips with as it's not as the one included with <a href="https://www.itpro.com/625450/quantum-dxi4520-review" target="_blank" data-original-url="https://www.itpro.com/625450/quantum-dxi4520-review">Quantum's DXi4520</a> which is more intuitive. We also found the documentation all too brief and lacking in detailed explanations of the various features.</p><p>Even so, FalconStor has a lot more deduplication options making the SA101 very flexible. Policies are configured at the appliance level in the Console and you have three options where you can allow it to run automatically as data is being received.</p><p>It can be run to a schedule where you set a start date and time and opt to have it recurring hourly, daily, weekly or monthly and add exclusion periods. Alternatively, you can take full manual control and fire up deduplication tasks on demand. Policies include file exclusions with a list of file extensions that you don't want deduplicated. You can also exclude files smaller than a certain size and specify creation and last access dates as criteria.</p><p>The Hosted Backup feature allows backup software installed directly on the appliance to use local deduplicated shares without having to go outside the box. However, FalconStor advised us that there are few backup products that can run on its Linux operating system, so it's currently of limited value.</p><p>To test deduplication ratios we ran our own standard set of lab tests that look at file server performance. We used a 4GB data set consisting of 1,000 files and introduced controlled changes within a percentage of the files during a simulated strategy of daily incremental and weekly full backups.</p><p>We configured a test server with Windows Server 2008 R2 and chose CA's ARCserve as we find it more amenable than Symantec Backup Exec when using network shares as backup locations. After the first full backup was completed, we modified 2 per cent of data in 40 per cent of the files prior to each subsequent backup.</p><p>We used FalconStor's statistics to see what ratios were being achieved and after a one-month simulation we saw it report a deduplication ratio of 8.9:1. This was better than Quantum's DXi4520 which reported a ratio of 7.22:1 for exactly the same test.</p><p>To gauge general performance we used ARCserve to copy a 28GB test folder with over 13,000 files to a new share on the appliance with automatic deduplication enabled. Over Gigabit Ethernet the job was completed at a rate of 168GB/hour as opposed to Quantum's 152GB/hour.</p><p>Our tests show that FalconStor uses more efficient deduplication algorithms than Quantum and is faster for backup operations. However, it costs a lot more and this is highlighted by the size of the repositories offered by each vendor.</p><p>Quantum's entry-level DXi4510 costs around the same as the SA101 but has a repository of 2.2TB. FalconStor's FDS SA102 uses the same chassis as the SA101 but its 2TB repository will set you back nearly 16,000.</p><p>The FalconStor FDS SA101 appliance has versatile policy-based deduplication and superior remote site replication features. However, if cost is a high priority and you're prepared to accept slower performance for data reduction and backup operations then Quantum's DXi4500 family of appliances are better value.</p><h2 id="verdict-26">Verdict</h2><p>FalconStor’s FDS SA101 performed exceptionally well in our lab tests showing it was capable of providing higher backup speeds and better deduplication ratios than much of the competition at this level of the market. Remote site replication is also good as it supports up to 150 sources as standard but the repository is very small considering the high price and it can’t be upgraded.</p><p>SYSTEM SPECIFICATIONS</p><p>Chassis: 2U rack</p><p>CPU: 2 x 2.26GHz Intel Xeon E5520</p><p>Memory: 16GB 1,066MHz DDR3 RAM</p><p>Storage: 4 x 1TB WD Enterprise SATA hard disks in hot-swap carriers</p><p>RAID: Dell PERC 6/i with 256MB cache and BBU</p><p>Network: 4 x Gigabit Ethernet</p><p>Expansion: 4 x PCI Express slots</p><p>Power: 2 x 570W hot-plug power supplies</p><p>Management: Web browser and FalconStor FDS Console</p><p>Software: Symantec OST plug-in included</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/629062/falconstor-fds-sa101</link>
                                                                            <description>
                            <![CDATA[ FalconStor’s latest FDS SA101 data deduplication appliance has a range of unusual data reduction features. It performed very well in our lab tests but is expensive so read this review before buying to find out if it’s worth the extra cash. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">sEwd7Y1oovBR7EzjJ69jS4</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/8A7zM8C3f3gSGBr94cAvvS-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Wed, 01 Dec 2010 15:30:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Servers & Storage]]></category>
                                                    <category><![CDATA[Infrastructure]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/8A7zM8C3f3gSGBr94cAvvS-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[The FalconStor FDS SA101]]></media:description>                                                            <media:text><![CDATA[The FalconStor FDS SA101]]></media:text>
                                <media:title type="plain"><![CDATA[The FalconStor FDS SA101]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/8A7zM8C3f3gSGBr94cAvvS-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Data storage growth is now one of the biggest IT challenges to businesses large and small. Deduplication is an increasingly popular data reduction technology that can keep it under control. It has been gradually filtering down to SMBs and FalconStor's latest FDS (file-interface deduplication system) appliances have some unusual features.</p><p>The FDS SA101 on review is an entry-level rack mount appliance. FalconStor's choice of hardware platform gets our vote of confidence as it is a well specified Dell PowerEdge R710.</p><p>Storage is presented as CIFS and NFS network shares so deployment is simple. Data reduction is carried out locally so it has the advantage of working with any backup software and you can run drag and drop copies to deduplicated shares as well.</p><p>FalconStor aims the SA100 series of appliances specifically as replacements for tape based backup at remote sites and branch offices. Encrypted replication is included as standard and made all the more valuable as a single appliance supports up to 150 sources.</p><p>The appliance has four 1TB SATA hard disks preconfigured as a RAID-5 array. This is split into virtual volumes handling a variety of functions including the index, database, system applications, data cache and repository.</p><p>It uses an 820GB backup cache to store incoming data ready for deduplication. This leaves you with a 1TB repository and FalconStor's claimed deduplication ratio of 20:1 increases this to a logical 20TB. If you need more physical capacity, then consider the SA102 model which has a 2TB repository that can be upgraded via a license to 4TB.</p><p>Initial installation starts with the web browser interface and a quick setup page where you name the appliance and assign IP addresses to the four Gigabit Ethernet ports. The interface also provides access for adding licenses, viewing documentation and bonding the network ports into load-balanced teams.</p><p>You then use the FDS Console utility which is installed directly from the web interface. FalconStor supports Symantec's OpenStorage (OST) API allowing it to work with NetBackup's data mover function and the plug-in is installed from here as well.</p><p>The FDS Console takes a while to get to grips with as it's not as the one included with <a href="https://www.itpro.com/625450/quantum-dxi4520-review" target="_blank" data-original-url="https://www.itpro.com/625450/quantum-dxi4520-review">Quantum's DXi4520</a> which is more intuitive. We also found the documentation all too brief and lacking in detailed explanations of the various features.</p><p>Even so, FalconStor has a lot more deduplication options making the SA101 very flexible. Policies are configured at the appliance level in the Console and you have three options where you can allow it to run automatically as data is being received.</p><p>It can be run to a schedule where you set a start date and time and opt to have it recurring hourly, daily, weekly or monthly and add exclusion periods. Alternatively, you can take full manual control and fire up deduplication tasks on demand. Policies include file exclusions with a list of file extensions that you don't want deduplicated. You can also exclude files smaller than a certain size and specify creation and last access dates as criteria.</p><p>The Hosted Backup feature allows backup software installed directly on the appliance to use local deduplicated shares without having to go outside the box. However, FalconStor advised us that there are few backup products that can run on its Linux operating system, so it's currently of limited value.</p><p>To test deduplication ratios we ran our own standard set of lab tests that look at file server performance. We used a 4GB data set consisting of 1,000 files and introduced controlled changes within a percentage of the files during a simulated strategy of daily incremental and weekly full backups.</p><p>We configured a test server with Windows Server 2008 R2 and chose CA's ARCserve as we find it more amenable than Symantec Backup Exec when using network shares as backup locations. After the first full backup was completed, we modified 2 per cent of data in 40 per cent of the files prior to each subsequent backup.</p><p>We used FalconStor's statistics to see what ratios were being achieved and after a one-month simulation we saw it report a deduplication ratio of 8.9:1. This was better than Quantum's DXi4520 which reported a ratio of 7.22:1 for exactly the same test.</p><p>To gauge general performance we used ARCserve to copy a 28GB test folder with over 13,000 files to a new share on the appliance with automatic deduplication enabled. Over Gigabit Ethernet the job was completed at a rate of 168GB/hour as opposed to Quantum's 152GB/hour.</p><p>Our tests show that FalconStor uses more efficient deduplication algorithms than Quantum and is faster for backup operations. However, it costs a lot more and this is highlighted by the size of the repositories offered by each vendor.</p><p>Quantum's entry-level DXi4510 costs around the same as the SA101 but has a repository of 2.2TB. FalconStor's FDS SA102 uses the same chassis as the SA101 but its 2TB repository will set you back nearly 16,000.</p><p>The FalconStor FDS SA101 appliance has versatile policy-based deduplication and superior remote site replication features. However, if cost is a high priority and you're prepared to accept slower performance for data reduction and backup operations then Quantum's DXi4500 family of appliances are better value.</p><h2 id="verdict-26">Verdict</h2><p>FalconStor’s FDS SA101 performed exceptionally well in our lab tests showing it was capable of providing higher backup speeds and better deduplication ratios than much of the competition at this level of the market. Remote site replication is also good as it supports up to 150 sources as standard but the repository is very small considering the high price and it can’t be upgraded.</p><p>SYSTEM SPECIFICATIONS</p><p>Chassis: 2U rack</p><p>CPU: 2 x 2.26GHz Intel Xeon E5520</p><p>Memory: 16GB 1,066MHz DDR3 RAM</p><p>Storage: 4 x 1TB WD Enterprise SATA hard disks in hot-swap carriers</p><p>RAID: Dell PERC 6/i with 256MB cache and BBU</p><p>Network: 4 x Gigabit Ethernet</p><p>Expansion: 4 x PCI Express slots</p><p>Power: 2 x 570W hot-plug power supplies</p><p>Management: Web browser and FalconStor FDS Console</p><p>Software: Symantec OST plug-in included</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Promise launches low-cost RAID NAS ]]></title>
                                                                                                <dc:content><![CDATA[ <p>Promise has launched a two-bay network attached storage (NAS) device that costs just 145 ex VAT.</p><p>The SmartStor NS2600 has two hard disk bays so supports both RAID 0 and RAID 1. It is then up to the user if it is deployed for either maximum performance or greater data redundancy.</p><p>Promise claimed the NS2600 used just 7W of power when it sleep mode, so it's environmentally friendly too.</p><p>As well as several consumer-oriented features, such as a UPnP media server and a download manager, the NS2600 also has several business-focused features. These included the ability to act as a print server, potentially saving the cost of a dedicated network printer, and the ability to act as a repository for IP security camera footage.</p><p>It supports Microsoft Active Directory and can even be used as a web or SQL server which will be attractive to smaller businesses with tight IT budgets.</p><p>We suspect the NS2600 is the two-bay version the larger and more expensive NS4600, which was favourably reviewed by our colleagues at <a href="http://www.expertreviews.co.uk/network-storage/278329/promise-smartstor-ns4600" target="_blank">Expert Reviews</a>.</p><p>However, Promise isn't as well known as rival NAS manufacturers Synology and Thecus, who make NAS devices with the benefit of broader support amongst third party plug-in developers. It may, therefore, struggle to attract customers not motivated purely by price.</p><p>The SmartStore NS2600 will be available shortly and is backed by a two-year limited warranty.</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/629032/promise-launches-low-cost-raid-nas</link>
                                                                            <description>
                            <![CDATA[ A two-bay RAID capable NAS at a low price has come onto the market, launched by Promise. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">d4wTYGNuWpitDvimMxT8tJ</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/oacznCR5eQVcw642HJy6Li-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Tue, 30 Nov 2010 15:46:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Alan Lu ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/oacznCR5eQVcw642HJy6Li-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[The Promise SmartStor NS2600]]></media:description>                                                            <media:text><![CDATA[The Promise SmartStor NS2600]]></media:text>
                                <media:title type="plain"><![CDATA[The Promise SmartStor NS2600]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/oacznCR5eQVcw642HJy6Li-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Promise has launched a two-bay network attached storage (NAS) device that costs just 145 ex VAT.</p><p>The SmartStor NS2600 has two hard disk bays so supports both RAID 0 and RAID 1. It is then up to the user if it is deployed for either maximum performance or greater data redundancy.</p><p>Promise claimed the NS2600 used just 7W of power when it sleep mode, so it's environmentally friendly too.</p><p>As well as several consumer-oriented features, such as a UPnP media server and a download manager, the NS2600 also has several business-focused features. These included the ability to act as a print server, potentially saving the cost of a dedicated network printer, and the ability to act as a repository for IP security camera footage.</p><p>It supports Microsoft Active Directory and can even be used as a web or SQL server which will be attractive to smaller businesses with tight IT budgets.</p><p>We suspect the NS2600 is the two-bay version the larger and more expensive NS4600, which was favourably reviewed by our colleagues at <a href="http://www.expertreviews.co.uk/network-storage/278329/promise-smartstor-ns4600" target="_blank">Expert Reviews</a>.</p><p>However, Promise isn't as well known as rival NAS manufacturers Synology and Thecus, who make NAS devices with the benefit of broader support amongst third party plug-in developers. It may, therefore, struggle to attract customers not motivated purely by price.</p><p>The SmartStore NS2600 will be available shortly and is backed by a two-year limited warranty.</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ IBM System Storage DS3512 Express review ]]></title>
                                                                                                <dc:content><![CDATA[ <p>SMBs looking for low cost network storage arrays often have to make compromises as SATA hard disks have traditionally been their only option. IBM's new System Storage DS3500 family are arrays built around high-speed 6Gbps SAS disks but have a surprisingly low starting price.</p><p>You have a choice of two head units with the DS3512 reviewed here supporting a dozen 3.5in hard disks. The DS3524 is also a 2U appliance but this can handle up to twenty-four 2.5in drives and has a starting price of 3,087. Both models have a single hot-swap controller module which can be upgraded with a second where they run in active/active mode.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="ZZRE793LVnmmrzjLSy3d6B" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/ZZRE793LVnmmrzjLSy3d6B-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/ZZRE793LVnmmrzjLSy3d6B.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The DS3512 can be fitted with a wide variety of disks. Along with standard SAS and full disk encryption (FDE) SAS disks. you can fit near-line SAS disks which have a spindle speed of 7,200rpm instead of the faster 10,000 and 15,000 rpm speeds of more traditional SAS disks. They have the high capacity and low cost of SATA disks but with SAS drive electronics.</p><p>Generally sold in 2TB capacities, near-line SAS drives are sounding SATA's death knell for business storage applications. They do away with the need for a SATA to SAS interposer thereby reducing manufacturing costs plus potential points of failures and they have the same level of host queuing support as standard SAS drives.</p><p>The controllers have an extensive range of data port options. You start with a pair of fixed 6Gbps SAS ports for DAS connections but there's room for an optional host card. IBM has dual-port 6Gbps SAS or four-port 8Gbps FC and Gigabit iSCSI options. The DS3512 on review came with the FC host card.</p><p>Expansion potential is extremely good as limitations are based on the drive count rather than the number of shelves. Each controller has an embedded 36-port SAS expander linked to its expansion port so a pair of controllers supports up to 96 hard disks. You can daisy-chain as many shelves as you like as long as you don't go over this number of drives.</p><p>You can mix and match IBM's EXP3512 and EXP3524 expansion shelves, join them with multiple redundant SAS paths and have different SAS drive types within the same shelf. The controllers have 1GB of cache but the battery backup plays a different role than usual. In the event of a power failure it keeps the controller running so cache contents can be de-staged to an on-board 8GB SD memory card.</p><p>Deployment in the lab was simple enough as the DS3512 is managed with IBM's Storage Manager 10 Client (SMC10) utility. This kicks off with a discovery routine that searches the network for storage arrays and displays them ready for configuration using a variety of wizards.</p><p>Your first job is to create RAID arrays and SMC10 offers plenty of advice and assistance on the best choices. It also checks all the physical drives and lists them based on capacity, interface and spindle speeds for easier identification. You can take manual control where you select an array type, choose the member drives and decide whether to set any aside for hot-standby duties. SMC10 validates your choices and then offers to carve the storage space up into equal sized logical drives or lets you create them yourself.</p><p>Logical drives are then mapped to hosts and SMC10 automatically identified our test servers connected to the controller via 8Gbps Brocade FC HBAs. During this phase you can decide whether a host has dedicated access to a logical drive or shares the mapping with others.</p><p>Shared host access to logical drives is controlled by host groupings, or partitions. The system comes as standard with support for four partitions which can be increased to a maximum of 64 using IBM's optional premium feature upgrades.</p><p>Premium upgrades are also available for FDE key management and Volume Copy which duplicates one logical drive to another location within the same appliance. FlashCopy snapshots provide point-in-time backups of selected logical drives and you get support for two as standard which can be increased to eight.</p><p>Remote mirroring is not supported on the older DS3000 series of appliances but this is now available allowing you to replicate appliances over their FC ports. Logical volumes can be resized on the fly whilst dynamic capacity expansion allows you to drop in more disks or expansion shelves and add them to existing logical drives.</p><p>For performance testing we started with a Broadberry CyberServe dual Xeon X5560 server running Windows Server 2008 Enterprise R2 and linked via a Brocade 8Gbps FC card. We mapped it to a dedicated volume and saw Iometer report a fast 648MB/s raw read throughput.</p><p>We then added a Dell PowerEdge R715 dual Opteron 6100 server also equipped with a Brocade 8Gbps FC card and mapped a second dedicated volume to it. With Iometer running on both systems we saw a cumulative raw read throughput of 1,280MB/s showing no contention for resources was occurring.</p><p>IBM's System Storage DS3512 delivers a fine blend of SAS-based storage features and is priced right for SMBs. We found it particularly easy to deploy in the lab, performance is excellent and the levels of redundancy and expansion options make it highly versatile.</p><h2 id="verdict-27">Verdict</h2><p>IBM’s System Storage DS3500 arrays are a good choice for SMBs as they can start small and scale easily with demand. Few other SAS storage array vendors can match IBM’s starting price or its support for DAS applications plus optional FC SAN or IP SAN upgrades making it very flexible. We found performance over the lab’s 8Gbps FC SAN to be excellent and the high expansion potential is made all the more impressive as the only limiting factor is the number of disk drives rather than disk shelves.</p><p>Chassis: 2U rack Storage: Supports up to twelve hot-swap 3.5in near-line SAS, SAS and FDE hard disks Controller: 1 x hot-swap controller (max. 2) Processor: 800MHz PowerPC RoC Memory: 1GB cache (upgradeable to 2GB) with BBU and 8GB SD memory card RAID: 0, 1, 3, 5, 6, 10, hot-swap and hot-standby Data ports: 2 x 6Gbps SAS, SAS expansion Network ports: 2 x Gigabit Ethernet management Power: 2 x 585W hot-plug supplies Management: IBM Storage Manager 10 Client Expansion options: Two port 6Gbps SAS, four port 8Gbps FC or four port Gigabit iSCSI host cards</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/628081/ibm-system-storage-ds3512-express-review</link>
                                                                            <description>
                            <![CDATA[ IBM’s latest System Storage DS3500 Express family gives SMBs an affordable entry point into high performance network storage with some unusual expansion options.  In this exclusive review we put the DS3512 model through its paces to see if it has the right mix of features, value and speed. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">5fyya1dRWWxkZD7gHB74YC</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/BF7kzbRoxumsMMVZRwhqhS-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Tue, 26 Oct 2010 17:14:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/BF7kzbRoxumsMMVZRwhqhS-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[IBM System Storage DS3512 Express]]></media:description>                                                            <media:text><![CDATA[IBM System Storage DS3512 Express]]></media:text>
                                <media:title type="plain"><![CDATA[IBM System Storage DS3512 Express]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/BF7kzbRoxumsMMVZRwhqhS-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>SMBs looking for low cost network storage arrays often have to make compromises as SATA hard disks have traditionally been their only option. IBM's new System Storage DS3500 family are arrays built around high-speed 6Gbps SAS disks but have a surprisingly low starting price.</p><p>You have a choice of two head units with the DS3512 reviewed here supporting a dozen 3.5in hard disks. The DS3524 is also a 2U appliance but this can handle up to twenty-four 2.5in drives and has a starting price of 3,087. Both models have a single hot-swap controller module which can be upgraded with a second where they run in active/active mode.</p><figure class="van-image-figure pull-" data-bordeaux-image-check ><div class='image-full-width-wrapper'><div class='image-widthsetter' ><p class="vanilla-image-block" style="padding-top:56.25%;"><img id="ZZRE793LVnmmrzjLSy3d6B" name="" alt="" src="https://cdn.mos.cms.futurecdn.net/ZZRE793LVnmmrzjLSy3d6B-1920-80.jpg" mos="https://cdn.mos.cms.futurecdn.net/ZZRE793LVnmmrzjLSy3d6B.jpg" align="" fullscreen="" width="" height="" attribution="" endorsement="" class="pull-"></p></div></div></figure><p>The DS3512 can be fitted with a wide variety of disks. Along with standard SAS and full disk encryption (FDE) SAS disks. you can fit near-line SAS disks which have a spindle speed of 7,200rpm instead of the faster 10,000 and 15,000 rpm speeds of more traditional SAS disks. They have the high capacity and low cost of SATA disks but with SAS drive electronics.</p><p>Generally sold in 2TB capacities, near-line SAS drives are sounding SATA's death knell for business storage applications. They do away with the need for a SATA to SAS interposer thereby reducing manufacturing costs plus potential points of failures and they have the same level of host queuing support as standard SAS drives.</p><p>The controllers have an extensive range of data port options. You start with a pair of fixed 6Gbps SAS ports for DAS connections but there's room for an optional host card. IBM has dual-port 6Gbps SAS or four-port 8Gbps FC and Gigabit iSCSI options. The DS3512 on review came with the FC host card.</p><p>Expansion potential is extremely good as limitations are based on the drive count rather than the number of shelves. Each controller has an embedded 36-port SAS expander linked to its expansion port so a pair of controllers supports up to 96 hard disks. You can daisy-chain as many shelves as you like as long as you don't go over this number of drives.</p><p>You can mix and match IBM's EXP3512 and EXP3524 expansion shelves, join them with multiple redundant SAS paths and have different SAS drive types within the same shelf. The controllers have 1GB of cache but the battery backup plays a different role than usual. In the event of a power failure it keeps the controller running so cache contents can be de-staged to an on-board 8GB SD memory card.</p><p>Deployment in the lab was simple enough as the DS3512 is managed with IBM's Storage Manager 10 Client (SMC10) utility. This kicks off with a discovery routine that searches the network for storage arrays and displays them ready for configuration using a variety of wizards.</p><p>Your first job is to create RAID arrays and SMC10 offers plenty of advice and assistance on the best choices. It also checks all the physical drives and lists them based on capacity, interface and spindle speeds for easier identification. You can take manual control where you select an array type, choose the member drives and decide whether to set any aside for hot-standby duties. SMC10 validates your choices and then offers to carve the storage space up into equal sized logical drives or lets you create them yourself.</p><p>Logical drives are then mapped to hosts and SMC10 automatically identified our test servers connected to the controller via 8Gbps Brocade FC HBAs. During this phase you can decide whether a host has dedicated access to a logical drive or shares the mapping with others.</p><p>Shared host access to logical drives is controlled by host groupings, or partitions. The system comes as standard with support for four partitions which can be increased to a maximum of 64 using IBM's optional premium feature upgrades.</p><p>Premium upgrades are also available for FDE key management and Volume Copy which duplicates one logical drive to another location within the same appliance. FlashCopy snapshots provide point-in-time backups of selected logical drives and you get support for two as standard which can be increased to eight.</p><p>Remote mirroring is not supported on the older DS3000 series of appliances but this is now available allowing you to replicate appliances over their FC ports. Logical volumes can be resized on the fly whilst dynamic capacity expansion allows you to drop in more disks or expansion shelves and add them to existing logical drives.</p><p>For performance testing we started with a Broadberry CyberServe dual Xeon X5560 server running Windows Server 2008 Enterprise R2 and linked via a Brocade 8Gbps FC card. We mapped it to a dedicated volume and saw Iometer report a fast 648MB/s raw read throughput.</p><p>We then added a Dell PowerEdge R715 dual Opteron 6100 server also equipped with a Brocade 8Gbps FC card and mapped a second dedicated volume to it. With Iometer running on both systems we saw a cumulative raw read throughput of 1,280MB/s showing no contention for resources was occurring.</p><p>IBM's System Storage DS3512 delivers a fine blend of SAS-based storage features and is priced right for SMBs. We found it particularly easy to deploy in the lab, performance is excellent and the levels of redundancy and expansion options make it highly versatile.</p><h2 id="verdict-27">Verdict</h2><p>IBM’s System Storage DS3500 arrays are a good choice for SMBs as they can start small and scale easily with demand. Few other SAS storage array vendors can match IBM’s starting price or its support for DAS applications plus optional FC SAN or IP SAN upgrades making it very flexible. We found performance over the lab’s 8Gbps FC SAN to be excellent and the high expansion potential is made all the more impressive as the only limiting factor is the number of disk drives rather than disk shelves.</p><p>Chassis: 2U rack Storage: Supports up to twelve hot-swap 3.5in near-line SAS, SAS and FDE hard disks Controller: 1 x hot-swap controller (max. 2) Processor: 800MHz PowerPC RoC Memory: 1GB cache (upgradeable to 2GB) with BBU and 8GB SD memory card RAID: 0, 1, 3, 5, 6, 10, hot-swap and hot-standby Data ports: 2 x 6Gbps SAS, SAS expansion Network ports: 2 x Gigabit Ethernet management Power: 2 x 585W hot-plug supplies Management: IBM Storage Manager 10 Client Expansion options: Two port 6Gbps SAS, four port 8Gbps FC or four port Gigabit iSCSI host cards</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Super Talent unveils new SSD RAID devices ]]></title>
                                                                                                <dc:content><![CDATA[ <p><a href="http://www.supertalent.com" target="_blank">Super Talent</a> has announced three new ranges of <a href="https://www.itpro.com/612562/flash-price-rise-to-hit-ssd-says-report" target="_blank" data-original-url="https://www.itpro.com/612562/flash-price-rise-to-hit-ssd-says-report">SSD</a> RAID devices.</p><p>All are due for release later this year.</p><p>The PCI Express RAIDDrive SSDs are designed to increase bandwidth by replacing the SATA bus and the company claimed it supports more than ten times the bandwidth of the SATA II at 4Gbps.</p><p>The three ranges are aimed at different market areas. The RAIDDrive ES, available in capacities of up to 1TB, is designed for the <a href="https://www.itpro.com/614407/ibm-releases-enterprise-level-storage-for-mid-tier-businesses" target="_blank" data-original-url="https://www.itpro.com/614407/ibm-releases-enterprise-level-storage-for-mid-tier-businesses">enterprise server</a> for use in a range of scenarios including business intelligence or virtualisation applications. It can be configured as either RAID 0 or RAID 5 before it is sent out and fits into a 3U rack chassis.</p><p>There is also a RAIDDrive WS for workstation users also offering up to 1TB capacity as well as the RAIDDrive GS with 2TB of capacity designed for gamers to "supercharge their IO subsystem."</p><p>Super Talent claimed that its RAIDDrives can support read speeds of 1.4Gbps and has 1Gb of DRAM cache inside enabling write speeds of up to 1.2Gbps.</p><p>CH Lee, chief operating officer of Super Talent, said in a statement: "RAIDDrive SSDs are a quantum leap ahead of existing SSDs in sequential transfer speeds... [It] shatters previous storage system bottlenecks and sets a new standard in performance."</p><p>The products will start shipping in early next month with OEM pricing for the 1TB RAIDDrive GS at $4,999 (3,022).</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/615262/super-talent-unveils-new-ssd-raid-devices</link>
                                                                            <description>
                            <![CDATA[ Storage firm Super Talent has announced a new range of RAID products designed for both work and play. ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">q7GGNdkqpZ7VPLixLQLZcV</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/aqfQEyDQkhmSPyymT4osvL-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Thu, 17 Sep 2009 12:42:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Jennifer Scott ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/aqfQEyDQkhmSPyymT4osvL-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[SSD technology]]></media:description>                                                            <media:text><![CDATA[SSD technology]]></media:text>
                                <media:title type="plain"><![CDATA[SSD technology]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/aqfQEyDQkhmSPyymT4osvL-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p><a href="http://www.supertalent.com" target="_blank">Super Talent</a> has announced three new ranges of <a href="https://www.itpro.com/612562/flash-price-rise-to-hit-ssd-says-report" target="_blank" data-original-url="https://www.itpro.com/612562/flash-price-rise-to-hit-ssd-says-report">SSD</a> RAID devices.</p><p>All are due for release later this year.</p><p>The PCI Express RAIDDrive SSDs are designed to increase bandwidth by replacing the SATA bus and the company claimed it supports more than ten times the bandwidth of the SATA II at 4Gbps.</p><p>The three ranges are aimed at different market areas. The RAIDDrive ES, available in capacities of up to 1TB, is designed for the <a href="https://www.itpro.com/614407/ibm-releases-enterprise-level-storage-for-mid-tier-businesses" target="_blank" data-original-url="https://www.itpro.com/614407/ibm-releases-enterprise-level-storage-for-mid-tier-businesses">enterprise server</a> for use in a range of scenarios including business intelligence or virtualisation applications. It can be configured as either RAID 0 or RAID 5 before it is sent out and fits into a 3U rack chassis.</p><p>There is also a RAIDDrive WS for workstation users also offering up to 1TB capacity as well as the RAIDDrive GS with 2TB of capacity designed for gamers to "supercharge their IO subsystem."</p><p>Super Talent claimed that its RAIDDrives can support read speeds of 1.4Gbps and has 1Gb of DRAM cache inside enabling write speeds of up to 1.2Gbps.</p><p>CH Lee, chief operating officer of Super Talent, said in a statement: "RAIDDrive SSDs are a quantum leap ahead of existing SSDs in sequential transfer speeds... [It] shatters previous storage system bottlenecks and sets a new standard in performance."</p><p>The products will start shipping in early next month with OEM pricing for the 1TB RAIDDrive GS at $4,999 (3,022).</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
                                <item>
                                                            <title><![CDATA[ Iomega StorCenter Pro 200rL ]]></title>
                                                                                                <dc:content><![CDATA[ <p>Iomega has without doubt been in the small business and home NAS market longer than just about any other vendor and for its higher end products has always offered them only with Windows Storage Server 2003 R2 (WSS2003) installed, The StorCenter Pro 200rL represents a break with tradition as this is its first rack appliance to run a Linux kernel.</p><p>WSS2003 brings a number of pros and cons with it as it offers a vastly superior range of features to most Linux based systems but these do come at a comparatively high price. It's clear price is the biggest bonus for the 200rL as the 1TB model on review costs a lot less than Iomega's WSS2003 versions but here we find out whether it stacks up in the features department as well.</p><p>The 200rL is a well built 1U rack system and the review model came with a quartet of 250GB SATA hard disks mounted in solid hot-swap carriers easily accessible at the front. The system is supplied with them preconfigured as a four drive RAID-5 array but you can break this and create a stripe, a dual-drive mirrored stripe or just use them as separate drives.</p><p>The hardware specification is a mixed bag as processing comes courtesy of a 3.2GHz Celeron D module but this is only teamed up with a meagre 512MB of DDR memory. You can't upgrade this as the cooling shield covering the processor and memory sockets is glued in place. The network connection is handled by a single Gigabit Ethernet port and you get three USB ports for adding external storage devices and sharing printers over the network. Cooling is handled by a pair of fans at the rear but noise levels are high enough to make it quite obtrusive in a small office environment. It'll be fine in a rack enclosure but it's not something we'd want sitting on a desk near us.</p><p>The bundled Iomega Discovery utility makes light work of installation as it hunts down the appliance on the network and provides quick links for mapping drives and running the web management interface. We also noticed that Iomega has now implemented secure management access over HTTPS although you can't enforce this.</p><p>The web interface is easy enough to use and is almost identical to that offered by Iomega's desktop Linux appliances. The home page provides a basic status report on the appliance and available storage space along with a control panel alongside for restarting and shutting down the appliance and returning it to factory defaults. System alerts can be sent to up to three email accounts and the appliance supports SMTP server authentication. You can also connect an intelligent UPS to one of the USB ports where the appliance will monitor battery power and shut down before it runs out.</p><p>Firmware upgrades can be performed directly from the web interface and Iomega has resolved earlier problems on its Linux appliances where this process would reset the system back to factory defaults. The drives can be monitored from the web interface and you can enable or disable support for USB storage devices. However, there no facilities for spinning the drives down to save power during extended idle periods and no SMART support is available either.</p><p>For access security you have a local user and group database and the appliance also supports NT domain or AD server authentication. Folders can be made public or restricted to specific user and groups where you can further specify read and write privileges. Quotas can also be applied to selected users to limit the amount of storage they can consume. Client support is up with the best as the 200rL supports CIFS/SMB, NFS and AFP protocols so will work happily with Windows, Linux and Macintosh systems.</p><p>CIFS access can't be switched off but you can decide whether NFS and AFP are enabled on each folder. The appliance runs an FTP server but features here are very limited as it only supports anonymous access and only one folder of your choice may be made available to FTP clients. Any USB storage device will be automatically shared as soon as it's inserted and global settings are provided for determining user access restrictions to all USB devices.</p><p>The 200rL delivered a very good performance in our real world tests. We used a dual socket quad-core Xeon Dell PowerEdge 1950 rack server and copying a 2.52GB video clip between this system and the appliance returned average read and write speeds of 48MB/sec. FTP performance was even better with the FileZilla client utility reporting read and write speeds of 71MB/sec and 58MB/sec.</p><p>Backup features need to be good in a business environment and Iomega offers a reasonably good package. You can run backup tasks that secure selected local folders from the appliance to a USB device or to another system over the network. A scheduler allows jobs to be automatically run daily or weekly but only full backups are supported. It can create a new backup folder each time the job is run or you can set it to overwrite the previous backup.</p><p>Workstation backup gets a better deal as Iomega includes a copy of EMC's Retrospect licensed for five users. Note that this is the Express version which doesn't support tape drive and cannot be installed on Windows Server systems. Nevertheless, it's easy enough to use as it provides plenty of wizards to assist with backup and restoration tasks. Schedules can be created to secure workstation data to the appliance at regular intervals and a useful feature is that once the first full backup has completed all subsequent jobs will only copy new and changed files.</p><p>The small business NAS appliance market is intensively competitive with a large number of vendors now looking for a piece of the action. If you want a simple, well built and easily deployed storage solution then the StorCenter 200rL is well worth considering but systems such as Netgear's ReadyNAS 1100 rack appliances deliver far more features for your money.</p><h2 id="verdict-28">Verdict</h2><p>As a basic business NAS appliance the StorCenter 200rL gets the job done, although for the price we would have expected more. Performance is good, it’s well built and is very easy to install and use but compared with the latest raft of products from vendors such as Netgear, Qnap, Synology and Thecus the 200rL is short on features.</p><p>Chassis: 1U rack</p><p>CPU: 3.2GHz Celeron D</p><p>Memory: 512MB DDR SDRAM</p><p>Storage: 4 x 250GB Seagate Barracuda SATA in hot-swap carriers</p><p>Array support: RAID0, 10, 5, JBOD</p><p>Network: Gigabit Ethernet</p><p>Ports: 3 x USB2</p><p>Management: web browser</p><p>Software: EMC Retrospect Express 7.5 with 5 client licenses</p> ]]></dc:content>
                                                                                                                                            <link>https://www.itpro.com/608625/iomega-storcenter-pro-200rl</link>
                                                                            <description>
                            <![CDATA[ Iomega delivers a solid Linux based small business NAS appliance, but how does it compare with the competition for features? ]]>
                                                                                                            </description>
                                                                                                                                <guid isPermaLink="false">reSK3qvHPgYmagzMzPnU37</guid>
                                                                                                <enclosure url="https://cdn.mos.cms.futurecdn.net/rGZ5WkaPPa8ZVupX5UzWA8-1920-80.jpg" type="image/jpeg" length="0"></enclosure>
                                                                        <pubDate>Tue, 25 Nov 2008 16:28:00 +0000</pubDate>                                                                                                                                                                                                                                <category><![CDATA[Storage]]></category>
                                                    <category><![CDATA[Hardware]]></category>
                                                    <category><![CDATA[Desktops]]></category>
                                                                                                                    <dc:creator><![CDATA[ Dave Mitchell ]]></dc:creator>                                                                                    <dc:source><![CDATA[ null ]]></dc:source>
                                                                <dc:description><![CDATA[ null ]]></dc:description>
                                                                                                                                <cf:isSponsored>false</cf:isSponsored>
                <cf:hasAffiliateLinks>false</cf:hasAffiliateLinks>
                <cf:isPaid>false</cf:isPaid>
                                                                                                                                <media:content type="image/jpeg" url="https://cdn.mos.cms.futurecdn.net/rGZ5WkaPPa8ZVupX5UzWA8-1920-80.jpg">
                                                            <media:credit><![CDATA[null]]></media:credit>
                                                                                                                                                                                                                                    <media:description><![CDATA[Iomega StorCenter Pro 200rL]]></media:description>                                                            <media:text><![CDATA[Iomega StorCenter Pro 200rL]]></media:text>
                                <media:title type="plain"><![CDATA[Iomega StorCenter Pro 200rL]]></media:title>
                                                    </media:content>
                                                    <media:thumbnail url="https://cdn.mos.cms.futurecdn.net/rGZ5WkaPPa8ZVupX5UzWA8-1920-80.jpg" />
                                                                                                                                                                    <content:encoded >
                            <![CDATA[
                            <article>
                                <p>Iomega has without doubt been in the small business and home NAS market longer than just about any other vendor and for its higher end products has always offered them only with Windows Storage Server 2003 R2 (WSS2003) installed, The StorCenter Pro 200rL represents a break with tradition as this is its first rack appliance to run a Linux kernel.</p><p>WSS2003 brings a number of pros and cons with it as it offers a vastly superior range of features to most Linux based systems but these do come at a comparatively high price. It's clear price is the biggest bonus for the 200rL as the 1TB model on review costs a lot less than Iomega's WSS2003 versions but here we find out whether it stacks up in the features department as well.</p><p>The 200rL is a well built 1U rack system and the review model came with a quartet of 250GB SATA hard disks mounted in solid hot-swap carriers easily accessible at the front. The system is supplied with them preconfigured as a four drive RAID-5 array but you can break this and create a stripe, a dual-drive mirrored stripe or just use them as separate drives.</p><p>The hardware specification is a mixed bag as processing comes courtesy of a 3.2GHz Celeron D module but this is only teamed up with a meagre 512MB of DDR memory. You can't upgrade this as the cooling shield covering the processor and memory sockets is glued in place. The network connection is handled by a single Gigabit Ethernet port and you get three USB ports for adding external storage devices and sharing printers over the network. Cooling is handled by a pair of fans at the rear but noise levels are high enough to make it quite obtrusive in a small office environment. It'll be fine in a rack enclosure but it's not something we'd want sitting on a desk near us.</p><p>The bundled Iomega Discovery utility makes light work of installation as it hunts down the appliance on the network and provides quick links for mapping drives and running the web management interface. We also noticed that Iomega has now implemented secure management access over HTTPS although you can't enforce this.</p><p>The web interface is easy enough to use and is almost identical to that offered by Iomega's desktop Linux appliances. The home page provides a basic status report on the appliance and available storage space along with a control panel alongside for restarting and shutting down the appliance and returning it to factory defaults. System alerts can be sent to up to three email accounts and the appliance supports SMTP server authentication. You can also connect an intelligent UPS to one of the USB ports where the appliance will monitor battery power and shut down before it runs out.</p><p>Firmware upgrades can be performed directly from the web interface and Iomega has resolved earlier problems on its Linux appliances where this process would reset the system back to factory defaults. The drives can be monitored from the web interface and you can enable or disable support for USB storage devices. However, there no facilities for spinning the drives down to save power during extended idle periods and no SMART support is available either.</p><p>For access security you have a local user and group database and the appliance also supports NT domain or AD server authentication. Folders can be made public or restricted to specific user and groups where you can further specify read and write privileges. Quotas can also be applied to selected users to limit the amount of storage they can consume. Client support is up with the best as the 200rL supports CIFS/SMB, NFS and AFP protocols so will work happily with Windows, Linux and Macintosh systems.</p><p>CIFS access can't be switched off but you can decide whether NFS and AFP are enabled on each folder. The appliance runs an FTP server but features here are very limited as it only supports anonymous access and only one folder of your choice may be made available to FTP clients. Any USB storage device will be automatically shared as soon as it's inserted and global settings are provided for determining user access restrictions to all USB devices.</p><p>The 200rL delivered a very good performance in our real world tests. We used a dual socket quad-core Xeon Dell PowerEdge 1950 rack server and copying a 2.52GB video clip between this system and the appliance returned average read and write speeds of 48MB/sec. FTP performance was even better with the FileZilla client utility reporting read and write speeds of 71MB/sec and 58MB/sec.</p><p>Backup features need to be good in a business environment and Iomega offers a reasonably good package. You can run backup tasks that secure selected local folders from the appliance to a USB device or to another system over the network. A scheduler allows jobs to be automatically run daily or weekly but only full backups are supported. It can create a new backup folder each time the job is run or you can set it to overwrite the previous backup.</p><p>Workstation backup gets a better deal as Iomega includes a copy of EMC's Retrospect licensed for five users. Note that this is the Express version which doesn't support tape drive and cannot be installed on Windows Server systems. Nevertheless, it's easy enough to use as it provides plenty of wizards to assist with backup and restoration tasks. Schedules can be created to secure workstation data to the appliance at regular intervals and a useful feature is that once the first full backup has completed all subsequent jobs will only copy new and changed files.</p><p>The small business NAS appliance market is intensively competitive with a large number of vendors now looking for a piece of the action. If you want a simple, well built and easily deployed storage solution then the StorCenter 200rL is well worth considering but systems such as Netgear's ReadyNAS 1100 rack appliances deliver far more features for your money.</p><h2 id="verdict-28">Verdict</h2><p>As a basic business NAS appliance the StorCenter 200rL gets the job done, although for the price we would have expected more. Performance is good, it’s well built and is very easy to install and use but compared with the latest raft of products from vendors such as Netgear, Qnap, Synology and Thecus the 200rL is short on features.</p><p>Chassis: 1U rack</p><p>CPU: 3.2GHz Celeron D</p><p>Memory: 512MB DDR SDRAM</p><p>Storage: 4 x 250GB Seagate Barracuda SATA in hot-swap carriers</p><p>Array support: RAID0, 10, 5, JBOD</p><p>Network: Gigabit Ethernet</p><p>Ports: 3 x USB2</p><p>Management: web browser</p><p>Software: EMC Retrospect Express 7.5 with 5 client licenses</p>
                                                            </article>
                            ]]>
                        </content:encoded>
                                                </item>
            </channel>
</rss>