<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: IT And Office</title>
    <description>The latest articles on DEV Community by IT And Office (@itandoffice).</description>
    <link>https://dev.to/itandoffice</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3987950%2Fc8200256-adc2-42e2-9767-271f1ee74c13.png</url>
      <title>DEV Community: IT And Office</title>
      <link>https://dev.to/itandoffice</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/itandoffice"/>
    <language>en</language>
    <item>
      <title>SAN vs NAS for your home lab: which used storage to buy</title>
      <dc:creator>IT And Office</dc:creator>
      <pubDate>Fri, 19 Jun 2026 19:28:03 +0000</pubDate>
      <link>https://dev.to/itandoffice/san-vs-nas-for-your-home-lab-which-used-storage-to-buypublished-13ik</link>
      <guid>https://dev.to/itandoffice/san-vs-nas-for-your-home-lab-which-used-storage-to-buypublished-13ik</guid>
      <description>&lt;p&gt;If you're building out a home lab and need shared storage, you'll eventually hit the SAN vs NAS question. Both solve "storage that multiple machines can reach," but they do it differently — and the wrong choice will haunt your weekend troubleshooting sessions for years.&lt;/p&gt;

&lt;p&gt;This guide focuses on &lt;strong&gt;used/refurbished enterprise gear&lt;/strong&gt;, which is where the real value is. New prosumer NAS appliances are fine, but for $300–600 you can run production-grade hardware that Fortune 500 companies retired last year.&lt;/p&gt;




&lt;h2&gt;
  
  
  The core difference (no hand-waving)
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;NAS (Network Attached Storage)&lt;/strong&gt; presents storage as a file system over the network. Your clients talk SMB (Windows), NFS (Linux/VMware), or AFP (old Macs). The NAS owns the filesystem; clients just see folders. Think of it as a file server with a good OS baked in.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SAN (Storage Area Network)&lt;/strong&gt; presents raw block devices over the network (Fibre Channel, iSCSI, or NVMe-oF). Clients see a disk — or something that looks exactly like one — and they manage their own filesystem on top of it. The SAN has no idea what's inside the blocks.&lt;/p&gt;

&lt;p&gt;This distinction drives almost every practical difference between them.&lt;/p&gt;




&lt;h2&gt;
  
  
  When NAS makes sense for a home lab
&lt;/h2&gt;

&lt;p&gt;Use NAS when your primary use case is &lt;strong&gt;file sharing&lt;/strong&gt; or &lt;strong&gt;backup targets&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Media server (Plex, Jellyfin) pulling files from a central library&lt;/li&gt;
&lt;li&gt;Time Machine / rsync backup destination&lt;/li&gt;
&lt;li&gt;Docker volumes that are mostly config + small data&lt;/li&gt;
&lt;li&gt;Shared project folders across dev machines&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Used NAS hardware worth looking at
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Synology DS1821+&lt;/strong&gt; — if you want appliance simplicity, the DS1821+ is the gold standard. But it's not cheap even used. An alternative is to build a DIY NAS on a used &lt;strong&gt;Dell PowerEdge R230&lt;/strong&gt; or similar — TrueNAS Scale runs great on it, you get ECC RAM, and the IPMI is a life-saver for remote management.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;QNAP TS-h886&lt;/strong&gt; — uses ZFS natively, 10GbE ports included, can handle iSCSI if you later need it. Used units show up regularly.&lt;/p&gt;

&lt;p&gt;For NFS performance in a VMware or Proxmox environment, you want at minimum &lt;strong&gt;1GbE&lt;/strong&gt; between NAS and hypervisor. 10GbE is worth it if you plan to store VM disks there — you'll feel the difference during live migrations.&lt;/p&gt;

&lt;h3&gt;
  
  
  What to check before buying a used NAS
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Drive bays count&lt;/strong&gt; and whether it supports the form factor you need (3.5" vs 2.5" vs M.2)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;RAM expandability&lt;/strong&gt; — ZFS loves RAM; some units are soldered&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;NIC speed&lt;/strong&gt; — many budget NAS boxes ship 1GbE only, 10GbE adapters for them are sometimes proprietary&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Firmware support&lt;/strong&gt; — Synology especially locks down OS versions by model&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fan noise&lt;/strong&gt; — some units designed for quiet office use are genuinely acceptable; rackmount NAS gear is loud&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  When SAN makes sense for a home lab
&lt;/h2&gt;

&lt;p&gt;Use SAN when your use cases involve:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Hypervisor shared storage&lt;/strong&gt; for live VM migration (vMotion, Proxmox live migration)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;High IOPS workloads&lt;/strong&gt; — databases, write-intensive apps&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multi-host clustering&lt;/strong&gt; — shared disk presented to a cluster for failover&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;iSCSI SAN is the practical choice for home labs because it runs on standard Ethernet and you don't need a dedicated FC switch. FC is worth learning if you can acquire the gear cheaply, but the SFP+ fiber infrastructure adds complexity and cost.&lt;/p&gt;

&lt;h3&gt;
  
  
  Used SAN hardware worth looking at
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Dell EMC PowerVault MD3420 / MD3820f&lt;/strong&gt; — direct-attach SAS storage, can be repurposed with a used RAID controller. Not technically a SAN but bridges the gap.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;HP MSA 2040 / 2050&lt;/strong&gt; — dual-controller iSCSI/FC SAN. These show up at good prices once hardware refresh cycles hit. They support 10GbE iSCSI natively with the right SFPs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;NetApp FAS2554 / FAS2650&lt;/strong&gt; — ONTAP is a serious enterprise OS; the learning curve pays off if you ever touch NetApp at work. These units can do both NFS and iSCSI simultaneously, which gives you flexibility.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;IBM DS3500 / DS4700&lt;/strong&gt; — solid workhorse for iSCSI. Less common now, but spares are still around.&lt;/p&gt;

&lt;h3&gt;
  
  
  What to check before buying used SAN gear
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Controller firmware version&lt;/strong&gt; — on dual-controller units, both controllers must be on the same firmware version or you'll get mysterious I/O errors&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cache battery / supercapacitor status&lt;/strong&gt; — write-back cache is disabled if the backup power unit is dead; performance tanks&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Port type&lt;/strong&gt; — 8Gb FC vs 16Gb FC vs 10GbE iSCSI matters. Make sure your HBAs or NICs match&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Expansion shelf compatibility&lt;/strong&gt; — if you buy a head unit expecting to add shelves, verify the shelf-to-controller compatibility matrix before buying&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Noise and power draw&lt;/strong&gt; — dual-controller SANs are datacenter hardware. Budget 200–400W idle and significant fan noise&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  The hybrid option: software-defined storage
&lt;/h2&gt;

&lt;p&gt;Before spending money on dedicated hardware, consider running &lt;strong&gt;TrueNAS Scale&lt;/strong&gt; or &lt;strong&gt;Ceph&lt;/strong&gt; on existing servers. TrueNAS Scale can serve NFS, SMB, and iSCSI from the same pool. Ceph is complex but extremely powerful for multi-node setups.&lt;/p&gt;

&lt;p&gt;A used &lt;strong&gt;Dell R720&lt;/strong&gt; or &lt;strong&gt;HP DL380 Gen9&lt;/strong&gt; with a bunch of drives inside, running TrueNAS, covers 80% of home lab storage needs without a dedicated storage appliance.&lt;/p&gt;

&lt;p&gt;The trade-off is management overhead and the fact that your storage host is also burning CPU.&lt;/p&gt;




&lt;h2&gt;
  
  
  Speed expectations on real gear
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Setup&lt;/th&gt;
&lt;th&gt;Realistic throughput&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;1GbE NFS/SMB&lt;/td&gt;
&lt;td&gt;110–115 MB/s sequential&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;10GbE NFS&lt;/td&gt;
&lt;td&gt;800–950 MB/s sequential (SSD backend)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;iSCSI on 10GbE&lt;/td&gt;
&lt;td&gt;700–900 MB/s, lower latency than NFS for IOPS&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;FC 8Gb&lt;/td&gt;
&lt;td&gt;~800 MB/s, very low latency&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;FC 16Gb&lt;/td&gt;
&lt;td&gt;~1.5 GB/s&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;iSCSI latency is typically 200–500 µs over 10GbE on decent hardware. NFS adds overhead from the protocol stack. Neither approaches local NVMe, but for home lab workloads both are more than adequate.&lt;/p&gt;




&lt;h2&gt;
  
  
  My recommendation
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Start with NAS&lt;/strong&gt; (TrueNAS on an old server, or a used Synology/QNAP) unless you specifically need live VM migration or block storage clustering.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Add iSCSI SAN&lt;/strong&gt; when you run Proxmox or ESXi clusters and need shared block storage.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Don't buy FC infrastructure&lt;/strong&gt; unless you're using it to learn for a job that requires it — the additional cost and complexity of HBAs and fiber switches is hard to justify.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you want tested and reset gear without the lottery of eBay auctions, resellers like &lt;a href="https://itandoffice.com/collections/nas-stockage-reseau-doccasion" rel="noopener noreferrer"&gt;IT and Office&lt;/a&gt; stock used enterprise NAS and storage hardware with basic checks done — worth browsing before you commit to a blind buy from a surplus pallet.&lt;/p&gt;




&lt;p&gt;What's your current storage setup? Are you running a software-defined solution like TrueNAS or Ceph, or did you go the dedicated appliance route? Curious what workloads pushed you toward SAN vs NAS in the end.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>homelab</category>
      <category>storage</category>
      <category>selfhosting</category>
      <category>sysadmin</category>
    </item>
    <item>
      <title>How to Build a Pro-Grade Home Lab on a Budget with Refurbished Enterprise Gear</title>
      <dc:creator>IT And Office</dc:creator>
      <pubDate>Tue, 16 Jun 2026 21:26:47 +0000</pubDate>
      <link>https://dev.to/itandoffice/how-to-build-a-pro-grade-home-lab-on-a-budget-with-refurbished-enterprise-gear-58dm</link>
      <guid>https://dev.to/itandoffice/how-to-build-a-pro-grade-home-lab-on-a-budget-with-refurbished-enterprise-gear-58dm</guid>
      <description>&lt;p&gt;Enterprise hardware depreciates faster than almost anything in tech. A switch or firewall that cost €2,000 new is often €150 three years later — not because it stopped working, but because the company that bought it moved to a support contract on a newer model. For a home lab, that depreciation curve is a cheat code: you get &lt;strong&gt;real production-grade features for a fraction of the price&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Here's a practical guide to building a serious home lab with used enterprise gear — what to buy, what each piece gives you, and the traps to avoid.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why refurbished enterprise gear beats consumer kit
&lt;/h2&gt;

&lt;p&gt;Consumer "prosumer" gear fakes the features you actually want to learn. Real enterprise hardware gives you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Managed switching&lt;/strong&gt; — VLANs, 802.1Q trunking, LACP, STP, QoS, SNMP. The exact CLI you'll use at work.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Out-of-band management&lt;/strong&gt; — iDRAC (Dell) / iLO (HPE) let you power-cycle and install an OS over the network, headless.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ECC RAM and redundant PSUs&lt;/strong&gt; — stability for 24/7 virtualization.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;PoE&lt;/strong&gt; — power your APs, IP cameras and phones over the same cable.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You learn on the same equipment that runs datacenters, and you can break things safely.&lt;/p&gt;

&lt;h2&gt;
  
  
  The shopping list
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. A managed switch (the backbone)
&lt;/h3&gt;

&lt;p&gt;Start here. A used &lt;strong&gt;Cisco Catalyst 2960X&lt;/strong&gt; (Layer 2) or &lt;strong&gt;3750X / 3850&lt;/strong&gt; (Layer 3) gives you VLANs, inter-VLAN routing and PoE for very little.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Check before buying:&lt;/strong&gt; the PoE budget (e.g. 370W vs 740W), the IOS feature set (IP Base vs IP Services for L3), and fan noise — some 1U switches are loud for a bedroom.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. A firewall / router
&lt;/h3&gt;

&lt;p&gt;A used &lt;strong&gt;Fortinet FortiGate&lt;/strong&gt; (or similar) lets you segment your network, run VPNs and inspect traffic — invaluable for learning real security.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The catch:&lt;/strong&gt; without an active subscription you lose live threat feeds and some auto-updates. For a lab that's fine; just buy on hardware merit and know the model isn't end-of-support. Generate fresh config on a factory-reset unit.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. A server (the workhorse)
&lt;/h3&gt;

&lt;p&gt;A &lt;strong&gt;Dell PowerEdge&lt;/strong&gt; (R620/R630/R720) or &lt;strong&gt;HPE ProLiant&lt;/strong&gt; (DL360/DL380) Gen8–Gen10 runs Proxmox, ESXi or a Kubernetes cluster comfortably.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Check:&lt;/strong&gt; RAM type/amount (ECC RDIMM), the RAID controller (PERC / Smart Array) mode, the iDRAC/iLO license level, and — again — noise and power draw. A 2U server idles around 80–120W.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Storage
&lt;/h3&gt;

&lt;p&gt;SAS/SSD disks pulled from servers are cheap and fast. A small &lt;strong&gt;NAS&lt;/strong&gt; (or a server with a RAID controller) gives you shared storage for VM images and backups. For SAS drives, check the SMART health and remaining life.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Don't forget power
&lt;/h3&gt;

&lt;p&gt;Rack gear needs &lt;strong&gt;clean, sufficient power&lt;/strong&gt;. A rack &lt;strong&gt;PDU&lt;/strong&gt; distributes it; a &lt;strong&gt;UPS&lt;/strong&gt; rides out brownouts and lets VMs shut down gracefully. Size the PDU to your total load with ~20% headroom — a 16A PDU gives ~3.7 kVA, a 32A ~7.4 kVA.&lt;/p&gt;

&lt;h2&gt;
  
  
  The five traps when buying used
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Firmware / license locks&lt;/strong&gt; — some vendors disable features without an active contract. Verify what works &lt;em&gt;without&lt;/em&gt; a subscription.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;End-of-support models&lt;/strong&gt; — fine for a lab, risky if you need security patches. Check the EoL date.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Missing components&lt;/strong&gt; — caddies, rails, PSUs, SFP modules and licenses are often &lt;em&gt;not&lt;/em&gt; included. Confirm what's in the box.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Noise and heat&lt;/strong&gt; — 1U gear screams. If it lives where you sleep, prefer 2U or tower form factors.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No reset / dirty config&lt;/strong&gt; — insist the unit is &lt;strong&gt;factory-reset (zeroized)&lt;/strong&gt; so you start clean and inherit no one else's keys or rules.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Buy tested, not blind
&lt;/h2&gt;

&lt;p&gt;Auctions are a gamble — untested units, missing parts, dead PSUs. If you'd rather skip the lottery, specialist refurbishers test and reset gear before shipping. I've sourced switches, firewalls and PDUs from &lt;a href="https://itandoffice.com" rel="noopener noreferrer"&gt;IT and Office&lt;/a&gt;, which sells tested, reset enterprise hardware (Cisco, Fortinet, Dell, HPE and more) with EU shipping — handy when you want kit that boots and works on day one.&lt;/p&gt;

&lt;h2&gt;
  
  
  Wrap-up
&lt;/h2&gt;

&lt;p&gt;A capable home lab — managed switch, firewall, a virtualization host, shared storage and proper power — can be built for the price of a single new mid-range switch if you buy used. You'll learn the real tools, break things without fear, and run services that would cost a fortune to host elsewhere.&lt;/p&gt;

&lt;p&gt;What's in your rack? Drop your build in the comments — always curious what people are running. 👇`&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
