• 0 Posts
  • 32 Comments
Joined 3 years ago
cake
Cake day: September 14th, 2023

help-circle



  • Similar thing happen to me. Had a lightning strike fry the ONT port outside, the charge went through to the UPS cat5e surge protector and to my opnsense box and fried it. Luckily it stopped there.

    This is where I tell everyone to never buy UPSs from CyberPower. I sent them the thing to inspect because it was guaranteed paying for the damages from power surges and they claimed there was nothing wrong with it and their inspection came clean. But they sent me a new one and said they won’t pay for my lost firewall.

    Sorry to hear you got 10k in damages, that sucks. I’ve now got a whole house surge protector to try my best to avoid that (and I STILL unplug expensive things like my TV and stereo system).




  • This is exactly how my network is setup. All devices log to my syslog server which I feed into a database with a self made python app, and Grafana goes from there. It’s been running nonstop for like 5 years without any problems, so I’d say your in the right path!

    It’s also helped me catch things like:

    • finding out android leaked IPs outside VPN tunnels on connect (prior to headlines claiming this)
    • finding out nslookup on termux ignores the phone’s DNS settings and tries to use Google instead
    • finding other devices that ignore my DNS server settings
    • noticing that my work Mac will turn itself on in some weird silent passive mode in the middle of the night to try and send data to apple (sleep or powered off don’t matter) - caught this from the logs sent by my router






  • I bought a separate laptop and set it up with an encrypted password that both my wife and I know. It contains instructions on everything from my self hosted stuff to anything else related to my personal life that she would need. It’s 100% offline to keep it safe from a network compromise. This whole thing was especially important since I wanted to make sure my family could access all photos, calendar, contacts, etc for the last decade that are stored on my server.

    It takes time to transfer everything to it (all in Obsidian) since it’s a brain dump… But it actually benefits me too. I’ve had a few times where I was like “how the hell did I set that up?” and had some instructions on there the helped lol.

    Definitely recommend this to others to consider.




  • I’ve got it setup automated on all my external domains, but trying to automate it on my internal-only domain is rather tedious since not only do I NOT want to open a port for it to confirm, but I have 2 other devices/services on the network not behind my primary reverse proxy that share the same cert.

    What In need to do is setup my own custom cron that hits the hosting provider to update the DNS txt entries. Then I need to have it write and restart the services that use the cert. I’ve tried to automate this once before and it did not go so smoothly so I’ve been hesitant on wasting time to try it again… But maybe it’s time to.

    What would be ideal is if I could allow it to be automated just by getting a one time dns approval and storing a local private/public key to prove to them that I’m the owner of the domain or something. Not aware of this being possible though.



  • Daily on my Gentoo server, through a Cronjob every morning. It’s a custom script though, so there’s more than just doing an emerge update. It’ll send me ntfy notifications for the update results, if there are new news items, and if there are any time config merge updates to make. A few other things as well but that’s the main stuff.

    Other servers, typically weekly or only manually when I ssh into them (for the ones I don’t really feel the need to update frequently).