this post was submitted on 30 Jul 2024
20 points (88.5% liked)

Selfhosted

39167 readers
382 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

I'm strongly considering adding another backup location in the form of an old Raspberry Pi and a USB HDD.

I want the Pi to exclusively use the available network to connect to my Wireguard Server, so other devices (local to the Wireguard Server and remote connected to the server) can use it as a secondary backup location.

I'm kind of worried about a scenario, where my network is compromised and, through the VPN connection of the Pi in the external network, the external network is as well.

What are the best practices to secure such a setup?

top 10 comments
sorted by: hot top controversial new old
[–] cmbabul@lemmy.world 8 points 1 month ago (1 children)

I just did this over the weekend, I’ll try to remember to come back after work and add in my steps. It can be really confusing to parse over a bunch of tutorials

[–] Emotet@slrpnk.net 1 points 1 month ago

I'd appreciate it very much!

[–] jet@hackertalks.com 6 points 1 month ago (1 children)

This is a exercise in network DMZ planning. Assume the NAS will be compromised, so you limit its access to the rest of the network.

put the NAS on its own VLAN in both locations, setup firewall rules so that only select protocols are allowed to/from the NAS.

[–] Emotet@slrpnk.net 1 points 1 month ago (1 children)

That'd be the gold standard. Unfortunately, the external network utilizes infrastructure that doesn't support specifying firewall rules on the existing separate VLAN, so all rules would have to be applied on the Pi itself or on yet another device between, which is something I'd like to avoid. Great general advice, though!

[–] Trainguyrom@reddthat.com 5 points 1 month ago

so all rules would have to be applied on the Pi itself

Sounds like you'll want to setup IPTables

[–] possiblylinux127@lemmy.zip 4 points 1 month ago (1 children)

Go the other way. Have the backup server connect in to the rest of the network.

[–] Strit@lemmy.linuxuserspace.show 1 points 1 month ago

I was considering doing something similar to OP, but I also think it's better to do it the other way around, having the backup server connect to the network when it's time to do a backup. Then you can just use the trusty ssh/rsync combo for backup.

[–] istanbullu@lemmy.ml 3 points 1 month ago

I think you can have password auth in Samba.

That being said, the more important thing is to protect your VPN network.

[–] Nomecks@lemmy.ca 2 points 1 month ago* (last edited 1 month ago) (1 children)

Use object storage and enable immutability for the backups. If they compromise your site they shouldn't be able to delete your backups unless they have the NAS password too.

[–] Emotet@slrpnk.net 0 points 1 month ago

Great suggestion to secure the backups themselfes, but I'm more concerned about the impact an attacker on my network might have on the external network and vice versa.