Yep, that would work fine for the first line of defense. Eventually, you can expand it to copy, replicate, or drive swap the onprem backups offsite somewhere (e.g., cloud, office, or family member) if you want to protect your data from site loss (e.g., house fire).
- 0 Posts
- 15 Comments
The only thing missing is a good backup.
If you are storing anything important – especially Immich and Vaultwarden data – you should have a good offsite protection strategy. And even the HASS config should be backed up with versioning because rebuilding from scratch could be painful once you get deep into it.
I’ll let others chime in on possible good backup options because I use Veeam and Azure, which really isn’t in the spirit of this community, and I’d be interested in good open source options myself.
Also, RAID (mirroring) is NOT a backup.
IHawkMike@lemmy.worldto
politics @lemmy.world•Trump says Iran and Israel agree to a ceasefire
2·1 year agoThat just the summary aggregated from multiple sources. Below it you should be able to drill into the actual published articles.
IHawkMike@lemmy.worldto
politics @lemmy.world•Walmart’s Billionaire Heiress Buys Full-Page Ad Urging People To ‘Mobilize’ At June 14 Anti-Trump Protests
109·1 year agoTotally not disagreeing, but for some more context she married into the Walton family, inherited a 1.9% stake in the company when her husband died in 2005, and has never had a role in the organization.
IHawkMike@lemmy.worldto
Selfhosted@lemmy.world•Setting up a private network in shared apartmentEnglish
2·1 year agoThe easiest way that doesn’t affect the main network would be to use a travel router. Its WAN IP would be the private IP it gets from the main network (over wireless since that’s your only option). And it would NAT your network onto that IP and then you can do whatever you want on your network.
I’m not sure if that Mikrotik router will do this but it might. You basically need something that can connect to an SSID and use that interface as its WAN interface. The wireless factor here is really limiting your choices. If you had a wired uplink to the main network you could use any router/gateway/firewall you wanted. You could also use an AP in bridge mode to connect to the main network’s SSID and wire it to the WAN port of any router of your choice.
You don’t really need to use VLANs to separate your network from the main network unless you want to share any of the same layer 2 segments (basically wired Ethernet) while keeping it isolated. But it doesn’t really sound like that applies in your scenario. Of course using VLANs within your network would still make sense if that applies (for example, to separate your server traffic from your IoT traffic).
IHawkMike@lemmy.worldto
Selfhosted@lemmy.world•Looking for personal cloud storage alternativesEnglish
9·2 years agoYep that’s how I have Syncthing set up. All global and local discovery disabled, no firewall ports open on the clients, no broadcasting, no relay servers. Just syncing through a central server which maintains versioning and where the backups run. Works like a charm.
IHawkMike@lemmy.worldto
Selfhosted@lemmy.world•WebDAV on Windows 11 - HTTPS Not Working & Sync Issues (Local Network Only)English
3·2 years agoNot that it’s my first recommendation for security reasons, and I would never do this in prod, but you can just add the self-signed cert to the local trusted root CA store and it should work fine. No reg changes needed.
If you do this, put it in the store of the user running the client, not LocalMachine. Then you just need to make sure you connect as something in the cert’s SAN list. An IP might work (don’t know since I never try to put IPs in the SAN list), but just use a hosts entry if you can’t modify local DNS.
Edit: after reading the full OP post (sorry), I don’t think it’s necessarily the self-signed cert. If the browser is connecting with https:// and presenting a basic auth prompt, then https is working. It almost sounds like there is a 301/302 redirect back to http after login. Check the Network tab of the browser’s dev pane (F12) to see what is going on.
IHawkMike@lemmy.worldto
Selfhosted@lemmy.world•[Question] Does USB4 increase the number of available endpoints?English
20·2 years agoThis is like the epitome of the XY Problem.
IHawkMike@lemmy.worldto
politics @lemmy.world•Republican mega-donors asked their employees who they will vote for in survey
1·2 years agoGrainger seems alright. Better than Uline anyway.
IHawkMike@lemmy.worldto
politics @lemmy.world•Miami-Dade ballots found on side of road in Cutler Bay, worker fired
162·2 years agoThink of how stupid the average person is, and realize half of them are stupider than that.
– George Carlin
Never attribute to malice that which is adequately explained by stupidity.
– Hanlon’s razor
Ding, ding! Here comes the shit-mobile!
I like returning 418 instead of 404 or 403 on the files the script kiddies are hunting for on my web servers. I’m sure it does nothing but I’d like to think I’ve wasted some of their time at least once.



Most DNS queries are UDP.
I’d do a modified scream test and change old.domain to something like 1.2.3.4. Then run sudo netstat or ss with -tpn, grepping for 1.2.3.4.
Or something like grep -r old.domain /etc.