Best Backup NAS Build 2026: A Dedicated Second NAS for the 3-2-1 Rule
If you already own a primary NAS, the single most impactful upgrade you can make for data safety is adding a dedicated backup NAS. This isn’t a second server for daily file access or media streaming; it’s a purpose-built target for your backups, designed to enforce the 3-2-1 rule (three copies of your data, on two different media, with one copy off-site). This guide walks you through building a cost-effective backup NAS that prioritizes capacity and reliability over raw performance.
Why a Backup NAS Has Different Hardware Requirements Than a Primary NAS
A primary NAS handles multiple concurrent workloads: file sharing, media serving, Docker containers, and possibly virtualization. This demands a capable CPU, ample RAM, and fast storage. A backup NAS, by contrast, has a single, predictable workload: receiving writes from your primary NAS once or twice a day. It doesn’t need to transcode video, run a database, or serve files to multiple users simultaneously.
This means you can use older, power-efficient hardware. A used business-class mini PC or a low-power motherboard with an Intel Celeron or a low-end Core i3 is more than sufficient. The CPU is rarely the bottleneck during backup transfers; the network link (1 GbE or 2.5 GbE) is. You also don’t need ECC RAM for a backup target, unless you are using ZFS and want to be extra cautious about data corruption during the backup window.
Focus your budget on hard drives, not the CPU or motherboard. A backup NAS lives and dies by its storage capacity and reliability. Spending $100 on a faster CPU won’t speed up a nightly rsync over a 1 GbE link.
HBA Card Use for Maximizing Drive Bays Cheaply on Older Hardware
Many used motherboards or mini PCs come with only 2-4 SATA ports. To attach 4-8 hard drives for a backup NAS, you need an HBA (Host Bus Adapter) card. An HBA in IT mode (or “passthrough” mode) presents each drive directly to the operating system, bypassing any RAID controller logic. This is ideal for software RAID solutions like ZFS, Unraid, or mdadm.
Good HBA Choices
- LSI 9211-8i (SAS 2008 chipset) — widely supported, cheap ($30-$50 used)
- LSI 9207-8i (SAS 2308 chipset) — supports 6 Gbps SATA, still affordable ($40-$60 used)
- Dell H310 or H200 (rebranded LSI cards) — flashed to IT mode, very common in homelabs
What to Avoid
- Hardware RAID cards (e.g., Dell PERC H700, LSI MegaRAID) — they abstract drives and complicate software RAID
- Cheap SATA port multipliers — they can cause performance issues and are less reliable than an HBA
- HBAs with no heatsink or active cooling — they can overheat in a cramped case
When buying a used HBA, always confirm it is already flashed to IT mode, or budget $10-20 for a programmer (like a CH341A) if you need to flash it yourself. Many sellers on eBay and /r/homelabsales offer pre-flashed cards. A SAS to SATA breakout cable (SFF-8087 to 4x SATA) is also required, costing around $10.
An HBA card typically plugs into a PCIe x8 slot. If your motherboard only has x16 slots, the card will still work (it just won’t use the full bandwidth, which is fine for spinning disks). For a backup NAS, a single HBA can handle 8 drives easily, giving you a 6-drive RAIDZ2 or an 8-drive RAID 6 array.
Case and Bay-Count Planning for a Backup Target
For a backup NAS, you are optimizing for storage density and low noise, not hot-swap convenience or high airflow for constant reads. A simple 4-bay or 6-bay tower case is often the best choice. Avoid expensive rack-mount chassis with backplanes unless you already have a rack and need the form factor.
| Bay Count | Typical RAID Setup | Usable Capacity (with 12 TB drives) | Best For |
|---|---|---|---|
| 4 bays | RAID 5 / RAIDZ1 | 36 TB (3 drives) | Small homelab, backing up 1-2 primary NAS units |
| 6 bays | RAID 6 / RAIDZ2 | 48 TB (4 drives) | Medium homelab, larger backup dataset |
| 8 bays | RAID 6 / RAIDZ2 | 72 TB (6 drives) | Heavy backup needs, multiple primary servers |
Don’t over-provision bays. A 4-bay backup NAS with 12 TB drives gives you 36 TB usable in RAID 5, which is enough for most homelabs backing up 10-20 TB of critical data. If you need more later, you can replace drives one at a time (if your RAID supports online expansion) or build a second backup NAS.
RAID is not a backup. Your backup NAS itself uses RAID for uptime and protection against a single drive failure. But if your house floods or someone deletes a file on the primary, the backup NAS still has a copy. A separate off-site backup (e.g., a friend’s house or cloud storage) is still required for the 3-2-1 rule.
Software Options for a Dedicated Backup NAS
The software on your backup NAS should be stable, minimal, and focused on receiving backups. You don’t need a full desktop environment or a media server stack. Here are the most practical options, ranked by suitability.
Proxmox Backup Server (PBS)
If you run Proxmox VE on your primary server, PBS is the obvious choice. It is purpose-built for backup, supports incremental backups, deduplication, and encryption. It runs on Debian and is free and open-source. PBS uses ZFS for its storage backend, which gives you data integrity checks and snapshots. It can also back up non-Proxmox systems via the proxmox-backup-client.
Unraid
Unraid is a popular choice for a backup NAS because it allows mixing different drive sizes and uses parity instead of striping. This means you can add drives over time without rebuilding an entire array. Unraid also supports Docker, so you can run backup apps like Duplicati or rsync right on the server. The downside is the $59+ license fee, but for a backup-only box, the basic plan is sufficient.
For a deeper comparison of TrueNAS vs Unraid for your primary NAS, see our TrueNAS vs Unraid guide. For a backup target, Unraid’s flexibility with drive sizes is a strong advantage.
rsync and Restic on a Minimal Linux Install
For the most control and lowest overhead, install a minimal Debian or Ubuntu Server and use rsync (for file-level syncs) or Restic (for encrypted, incremental snapshots). This approach uses almost no RAM (512 MB is enough) and gives you full control over backup schedules via cron. You can even set up an SSH server with key-based authentication for push-style backups from your primary NAS.
- Install Debian server (no GUI) — uses ~200 MB RAM idle.
- Configure SSH with public key authentication (disable password login).
- Set up a ZFS pool or ext4 + LVM for the storage volume.
- Write a simple rsync script or use Restic for snapshots.
- Schedule with cron (e.g., daily at 2 AM).
Vendor Backup Apps
If your primary NAS runs TrueNAS, you can use its built-in replication feature to push ZFS snapshots to a second TrueNAS system. Similarly, Synology and QNAP have their own backup suites (Hyper Backup, Hybrid Backup Sync). These are easy to set up but lock you into the same ecosystem. Using an open standard like rsync or Restic gives you more flexibility to switch primary NAS platforms later.
Where to Physically Place Your Backup NAS
The 3-2-1 rule requires one copy off-site. For a homelab, “off-site” can mean a friend’s house, a family member’s basement, or a small colocation cage. If that’s not feasible, at minimum place the backup NAS in a different room from the primary, ideally on a different floor or in a fire-resistant area.
Same Room
- Easy to manage and troubleshoot
- Low network latency for backup transfers
- Vulnerable to same physical disaster (fire, flood, theft)
Different Building / Off-Site
- Survives a total home disaster
- Requires a VPN or secure tunnel for connectivity
- Higher latency and potentially slower backup speeds (depending on upload bandwidth)
For most homelabs, a realistic first step is to put the backup NAS in the garage, a basement, or a utility closet. This gives physical separation from the primary NAS (which might be in your home office or living room) without needing a second internet connection. If you have symmetric gigabit fiber, you can even place the backup NAS at a friend’s house across town and back up over WireGuard.
Sample Build: Budget Backup NAS (4-Bay)
This build targets the sweet spot for most homelabs: 4 bays, low power, and under $300 (without drives). It uses a used Dell OptiPlex Micro or similar mini PC with an added external drive enclosure, or a custom build with a cheap motherboard and an HBA.
| Component | Recommended Model | Estimated Cost |
|---|---|---|
| Motherboard + CPU + RAM | Used Dell OptiPlex 3060 Micro (i3-8100T, 8 GB RAM) | $100-$140 |
| Case | Fractal Design Node 304 (6-bay mini ITX) | $90 (new) or $50 (used) |
| PSU | SFX 300W (e.g., Corsair SF300) | $30-$50 (used) |
| HBA | LSI 9211-8i (IT mode) + SFF-8087 cable | $40 |
| Boot Drive | 64 GB SATA SSD (used) | $10 |
| Total (without HDDs) | $270-$340 |
With 4 x 12 TB drives (around $120 each), the total build cost is roughly $750-$820. This gives you 36 TB usable in RAID 5, enough to back up 10-20 TB of primary data with versioning. Idle power draw is around 15-20W, costing about $1.50-$2.00 per month at $0.12/kWh. See our guide on reducing NAS power consumption for more tips on optimizing this build.
Bottom Line: Which Backup NAS Build Should You Choose?
For 90% of homelab owners reading this, the answer is a 4-bay or 6-bay tower with a used HBA, a low-power CPU (Intel 8th gen or newer), and a minimal Linux install running rsync or Restic. This gives you the lowest cost per terabyte, the most flexibility in software, and the physical separation required by the 3-2-1 rule. If you already run Proxmox, use Proxmox Backup Server for seamless integration. If you need to mix drive sizes, Unraid is worth the license fee. The most important step is to start — a backup NAS with 4 TB of storage is infinitely better than no backup NAS at all.
Frequently Asked Questions
Does a backup NAS need to be as powerful as my primary NAS?
No, a backup NAS typically needs far less CPU power and RAM than a primary NAS. A backup NAS’s workload is write-heavy and sequential — it receives files or snapshots once or twice a day. An Intel Celeron J4125 or a used i3-8100T is more than enough. The bottleneck is almost always the network link (1 GbE or 2.5 GbE), not the CPU. You can also get away with 4-8 GB of RAM for most backup applications, though ZFS benefits from 1 GB of RAM per TB of raw storage for deduplication and caching.
What software should I use to back up one NAS to another?
The best choice depends on your primary NAS’s OS and your technical comfort. For TrueNAS primary, use built-in ZFS replication to a second TrueNAS system — it’s efficient and preserves snapshots. For Proxmox primary, Proxmox Backup Server is the gold standard with deduplication. For a mixed environment, rsync over SSH is the most universal option, and Restic adds encryption and incremental snapshots. Unraid users can use the built-in Unraid Backup plugin or rsync. Avoid proprietary backup apps that lock you into one vendor unless you are sure you will never switch.
Should my backup NAS be in the same location as my primary?
Ideally, no. The 3-2-1 backup rule recommends one copy off-site. If a true off-site location (friend’s house, colocation) isn’t possible, at minimum place the backup NAS in a different room, preferably on a different floor or in a fire-resistant area like a basement or garage. This protects against localized disasters like a burst pipe, electrical fire, or theft. If you can place it at a friend’s house, set up a WireGuard VPN for secure, encrypted backups over the internet. Even with a slower upload speed, a nightly backup of 50-100 GB is feasible.
Can I build a backup NAS from old/spare hardware?
Absolutely. Old hardware is ideal for a backup NAS because performance requirements are low. A used Dell OptiPlex, HP ProDesk, or a retired gaming PC with a few SATA ports works fine. The main limitation is drive bays — most office PCs have only 1-2 internal 3.5-inch bays. You can add an external USB 3.0 enclosure (e.g., a 4-bay Mediasonic ProBox) for more drives, but USB-attached drives are less reliable for ZFS than direct SATA. Alternatively, add an HBA card if the motherboard has a free PCIe slot. Just ensure the hardware can run a modern Linux distro and has at least 4 GB of RAM.
Last verified: July 09, 2026. Specifications cross-checked against manufacturer documentation where available.
🛡 Shop Recommended Hardware
Prices and stock verified regularly by our affiliate partners. As an affiliate, HomeLabCost may earn a commission on qualifying purchases at no extra cost to you.
Browse Hardware Picks →