• 0 Posts
  • 24 Comments
Joined 1 year ago
cake
Cake day: July 2nd, 2023

help-circle










  • I have a hot storage NAS that backups to a warm storage NAS.

    I backup every week and scrub every month.

    I have 2 x ZFS1 pools that contains 3 x 20TB disks each.

    With ECC ram, scrubbing, and independent pools, it’ll take a house fire to kill my local storage.

    I also have a constant backing to Backblaze and yearly encrypted backup that I ship to a friend across the world.



  • This is the exact script I use to install tailscale on my VPN server

    Installing Tailscale

     curl -fsSL https://tailscale.com/install.sh | sh 
    

    Enable IP forwarding

     echo 'net.ipv4.ip_forward = 1' | sudo tee -a /etc/sysctl.conf 
     echo 'net.ipv6.conf.all.forwarding = 1' | sudo tee -a /etc/sysctl.conf 
     sudo sysctl -p /etc/sysctl.conf 
    

    Advertise subenets and exit node

     tailscale up --advertise-exit-node --advertise-routes=192.168.0.0/24,192.168.2.0/28,192.168.5.0/24,192.168.10.0/24