• 0 Posts
  • 7 Comments
Joined 1 year ago
cake
Cake day: June 4th, 2023

help-circle

  • The typical way involves something outside your network acting as a proxy. Your home network VPNs to this proxy, then the proxy sends requests down to your homelab.

    I used a VPS and a VPN, I would connect to the VPN endpoint on the VPS, and then route all traffic back down to home.

    You can also run a reverse proxy on the VPS, so it does TLS for clients, and speaks to the servers direct over the VPN.

    Another option is things like Cloudflare tunnels, which means cloudflare does the “VPS and VPN” part of the above, but the tradeoff is that your have to trust cloudflare, rather than yourself (may be a positive or not depending on your perspective).

    Lastly you could use something like tinc (which needs something on the outside to act as a negotiator) to form a mesh between NAT’d devices.





  • I have a Windows AD domain and have my preferences and some apps as GPOs.

    In the server world we use Ansible, or in some cases maybe PowerShell DSC.

    Ansible is much more focused on Linux and orchestration, but does have some support for Windows, and DSC is for Windows Servers.

    Both use YAML or similar structured config to impart a state, e.g.

    - name: Install Firefox
      Ansible.builtin.package:
        name: firefox
        state: present
    

    Meaning that ansible does the legwork to make sure FF is installed.