DIY NAS / Router

Logo

A 2-bay, low power, ARM-based NAS and router

View the Project on GitHub bburky/NAS

Goals

Parts

Quantity Part Cost
Banana Pi BPI-R2 $89 (Aliexpress)
Athena Power BP-SAC2131B 3.5” HDD Hot-Swap Backplane Module $20 (Newegg sale)
Laser cut acrylic panel $20, some scrap acrylic included
Jentec JTA0512 Power Supply $15 (eBay used)
SATA power splitter cable $5
Thin SATA Cables $4 total
Acrylic cement  
Motherboard standoffs and screws  
Adhesive rubber feet  
WD Easystore 8TB External Hard Drive $260 ($130 each, 2017 black friday)
  Approximate total excluding hard drives and shipping $153

Enclosure

The enclosure is an Athena Power BP-SAC2131B 3.5” HDD Hot-Swap Backplane Module. This is a a 3-bay hot swap backplane intended to go into two 5.25” bays of a server. This is not a trayless backplane, the hard disks must be mounted using four included screws.

This is a 3-bay case, but I only need the top two bays for hard drives. In the bottom bay I will put the computer that runs the NAS. Something like a Pico-ITX or 3.5” SBC computer will fit within the footprint of a hard dive.

The main problem with using an internal enclosure as a case is that all the SATA connections go out the back of the case, not internal for connections to a computer.

Luckily there is a slot on the back of the case. Using something like these very thin blue SATA cables, I can connect an internal computer to the back of the case.

Connect the cables by running them out the side...
NAS with SATA cables run through side
...and plugging them into the back
NAS with SATA cables connected to back

Yes, this looks a little crazy. But whatever.

Silence the fan

The enclosure’s included fan is very loud. Which is understandable considering it was intended for server environments.

I considered replacing it with a quiet computer fan but it uses a nonstandard fan size, it is thinner than a standard 80mm fan. Also, while it’s just a voltage controlled fan, it doesn’t use the standard 3-pin CPU fan connector.

Disconnecting the fan is difficult because a buzzer alarm sounds when the enclosure detects 0 RPM on the fan. The alarm may be silenced by pressing the “reset” button, but it will sound each time the NAS is power cycled. However, it appears two pins on the back of the case are connected to the front reset button, so you can simply put a jumper across them to permanently silence the buzzer.

The bigger problem is that HDDs actually get hot. Not much, but they do require some cooling. With the fan disconnected the disks quickly got up to 45°C and kept climbing towards 50°C.

There is a “HIGH–LOW” switch on the back of the enclosure to slow the fan down, but it doesn’t significantly reduce the fan noise. Measuring with a voltmeter, it switches the input of the fan from 12V to ~9V.

Instead I connected the fan’s power directly to the 5V line. Do note that this doesn’t work with all computer fans, not all will start with significantly reduced voltage. It seemed to work fine with this specific fan though. Supposedly, another option is to to run the fan at 7V by leaving the fan connected to 12V and connecting it’s ground pin to the 5V line, but I didn’t try it.

With the fan running very slowly at 5V, the HDD temperatures measured with SMART gets no higher than 44°C which I decided was acceptable.

Following traces by eye and verifying with a multimeter I found a 5V pin on the right side of the board to run the fan from. I clipped the center power pin from the fan connector and removed it completely so I could run a new wire into the connector through the old hole.

Power to fan soldered to 5V line

Yes, this looks kind of terrible. Whatever.

Power

Because the case is an intended to be mounted inside a computer, it takes either Molex or SATA power as input. There are two of each power connector, but only one needs to be connected.

The BPI-R2 board I used claims to require 12V 2A, but it does not appear to ever pull close to 2A. Each hard disk is marked “5V 400mA, 12V 550mA”. I decided to look for a combination 5V 3A + 12V 3A power supply. I bought a used Jentec JTA0512 power supply off eBay. This power supply came with a 6 pin connector providing both 12V and 5V.

To connect the power supply, I reterminated it with a modular SATA power connector. The easiest way to get these connectors without scavenging them seems to be from a SATA power splitter. The back of each connector can be popped off. Inside they are punch down blades that cut through the cables’ insulation to make connection.

Remove one of the male SATA connectors and chop off the PSU's plug
Unmodified power supply cable and SATA power splitter cable
With the back of the SATA connector removed new cables can be connected
SATA power connector and stripped power supply cable
Connect all the wires... somehow
Wires connected to SATA power cable

Connecting both ground pins in the SATA power connector is probably unnecessary because all the ground pins are connected in the backplane. It also makes it impossible to put the cover back on the connector.

SBC

Because no standard PC motherboard will fit in this enclosure, we are in the realm of single board computers (SBC). However, there are very few boards that have SATA support. And of the few that do have SATA, very very few have more than one SATA port.

I selected the Banana Pi BPI-R2 because it had two SATA connectors and gigabit Ethernet. As a bonus, it actually has a total of 5 GbE ports (that do share some bandwidth), this is nice if I want some router functionality also. This board connects the SATA ports to the SoC via a ASM1061 SATA controller connected via PCIe. Most cheaper boards only connect their SATA ports via USB, so this should be a good choice.

Since I started this project a few other boards with multiple SATA have become available. The BPI-R2 is still one of the cheapest with 2 SATA ports though.

One problem with this board is it requires manually powering it on by holding the power button. It does not automatically power on when connected to power. Let’s fix that by shorting the pins on the power button.

Enable auto power on by shorting PIN1 and PIN2 of RST
PWR and RST pin schematic.
PIN1 and PIN2 bridged
RST pins bridged on underside of board

A minor issue is that recent kernel versions actually shutdown when the reset button is pressed when the system is running. That can be fixed by disabling the kernel module that handles the buttons.

$ echo "blacklist mtk_pmic_keys" >/etc/modules-load.d/mtk_pmic_keys.conf

The second issue is that I want to power the board from the enclosure’s SATA backplane. The backplane’s SATA power connector’s can provide the required 12V, but there is no way to power the BPI-R2 except for it’s barrel connector. (There is a battery connector, but apparently it is useless.)

Instead, I decided to solder a wire directly to the pins of the barrel connector. While desoldering it I discovered there are holes in the pins. This made it easy to just loop the wire through the pins and resolder them. It’s probably a good idea to cover up the original barrel connector now (desoldering it completely was too difficult.)

Power connected to barrel connector pins
One black power wire connected to barrel connector pin

Connect the power wires to a male modular SATA power connector. I had to snap the edges off of the connector to allow it to fit beside a SATA data connector on the backplane.

Male SATA power connector with snapped off edges
Male SATA power connector with snapped off edges

Connect the board to the bottom SATA port. It all barely fits in the case.

Initial test

At this point the board can be connected to the backplane and tested. I also installed some hard drives for testing.

It's alive!
Side view of NAS with bottom removed and board powered on
Front view of NAS with bottom removed and board powered on

Acrylic side panel

Now I had to figure out a way to cut holes for all the I/O ports in the side of the enclosure. I suppose I could have CNC cut the aluminum… or 3D printed a side panel. Instead I decided to get a piece of acrylic laser cut for the side panel. (And I’m pretty sure It’s a law that all custom computer cases have to have a window, so it’s good for that too.)

To get near perfect measurements of the original side panel and the I/O ports, I just put them on a flatbed scanner. I also included a ruler while scanning, but the scale was already perfect.

Scanned original side panel and I/O ports [PDF]
Scanned image of original side panel and BPI-R2 I/O ports

Then I outlined the original side panel and each of the I/O ports. I measured the height of the BPI-R2 with motherboard standoffs attached, then placed the I/O port outlines at that height. I also took a lot of measurements to ensure I used the right thickness of acrylic.

Outlines for laser cutting [PDF]
Scanned image of original side panel and BPI-R2 I/O ports

In reality, the acrylic is too thick and some ports are too recessed to be usable. The HDMI port usually works, but requires firmly pushing the cable all the way in. The micro USB port isn’t really usable, but I don’t need it. All the other ports are fine.

Weld acrylic

The downside of laser cutting is that it is only two dimensional: I had to find some way to attach rails for the hard drive bays.

I cut thin strips of acrylic for the hard drive rails. Using acrylic cement I glued the rails to the side panel. (Actually acrylic cement is not really a glue, it is a solvent for solvent welding acrylic. The bond can be very strong.) The acrylic cement I used is water thin, so I used capillary action to wick the solvent underneath the rails for welding.

I cut a second piece of acrylic for the bottom front panel below the two hard drive bays. The BPI-R2 has a front SD card slot I did not want to block, so I cut a slot in the front panel to allow access. I tried to dip the acrylic vertically in the solvent for welding, which worked but fogged up the material that was softened.

It’s probably a good idea to do this step in a well ventilated area and wear appropriate gloves. The acrylic cement has a fairly scary SDS sheet. Also the stuff evaporates quickly at room temperature.

Mount SBC

Mark all the screw locations on the bottom metal plate and drill them out using a drill press. Make sure the board is as far close to the front edge as possible so the SD card slot will be accessible.

Mount the board using whatever size of motherboard standoffs. I used some short M2 motherboard standoffs I think.

Melt screw threads

At this point I had to figure out how to mount the acrylic panel on the side of the enclosure. Ideally, I could just reuse the original screws… but acrylic is very brittle, so tapping holes with a tap is unlikely to work. Instead I melted the threads into it!

First, mark all the original holes and drill them out to their full depth. Ensure these pilot holes are sufficiently large. Unlike with normal tapping, no material is going to be removed, just melted plastic pushed out of the way. Using a drill press and drilling very slowly is probably a good idea.

Then using the original screws, heat them up and screw them into the holes. I used pliers to hold the screw in a gas flame and then quickly screwed them in. If the screw gets stuck, stop and reheat it.

This may discolor the screws some, but you can rearrange them when done to hide them all on the bottom.

Enclosure with acrylic and SBC mounted
NAS with acrylic panel and no hard drives installed

Done!

Stick some adhesive rubber feet on the bottom and plug it in.

Finished NAS powered on with lights

The finished product sits with the rest of my networking equipment under my TV:

NAS and other home networking equipment on a wire shelf

Shuck hard drives

These instructions did not cover the hard drives themselves. I used some 8TB drives from shucked from inside Western Digital EasyStore external hard drives. Internally these drives contain a white labeled disk equivalent to a WD Red.

The only quirk these drives have is that they require that the 3.3V line on pin 3 of the SATA power connector to actually follow the SATA spec. Active high on this pin is used to signal to the drive that it should power down. Some enclosures connect it to 3.3V permanently and the disks will not power up. In cheaper enclosures like the one I use, there is no 3.3V line at all and there is no problem.

There are a lot of details about EasyStores on Reddit and some photo instructions on removing the drives from the enclosures.

Regrets

After completing this project, I have discovered a few things I’m unhappy with. Basically ARM boards only make so-so servers.

Conclusion

Overall I consider the project a success. I haven’t found any other projects online building a computer inside of a hot-swap enclosure and I think that worked well. The BPI-R2 is still plenty capable if I limit the server to only NAS tasks. I am very happy with the professional finish of the project. And learning about acrylic welding was fun.