Hey guys,

I finally come around and started the journey of self-hosting and decided to get a VPS. After securing it, by making login via public-key default, I installed CasaOS and instantly regretted it since it now can be reached freely from the internet. A while ago, I read that you can limit the incoming connection to only VPN and ssh. And configured a Wireguard-VPN on the server via pivpn. But the server can still be reached from the internet. So what do I have to do now? Is it even the right choice, or am I missing something? How do you guys secure your VPS?

  • notepass@feddit.de
    link
    fedilink
    English
    arrow-up
    2
    ·
    10 months ago

    You can set up firewall rules that limit connections to certain ports. For example, you can disallow connections to everything but port 22 (which ssh runs on) to only allow access to the ssh server from outside. Same with VPN.

    Read up on ufw (or iptables if you want to do it lower level and have a drink on hand).

      • notepass@feddit.de
        link
        fedilink
        English
        arrow-up
        1
        ·
        10 months ago

        ufw makes it way nicer to use tho. I only use iptables as I have a configuration script I wrote way back in the day.

        • TexMexBazooka@lemm.ee
          link
          fedilink
          English
          arrow-up
          2
          arrow-down
          1
          ·
          10 months ago

          Yeah UFW is the way to go, but when you run into an embedded Linux device that only runs iptables and can only be accessed via ssh?

          Well…. Keep that drink handy

    • Algenza Algenza@sos.nekoweb.my.id
      link
      fedilink
      arrow-up
      1
      arrow-down
      1
      ·
      10 months ago

      @notepass@feddit.de @rmstyle@feddit.de Also, you can change the SSH port to something not 22. Some guide here. To connect to SSH, just use ssh -p PORT site.com

      • notepass@feddit.de
        link
        fedilink
        English
        arrow-up
        1
        ·
        10 months ago

        You can, but you should configure your server in a way that this shouldn’t be a security feature of your setup (e.g. key-auth as OP did). It does help to cut back on uninvited guests a lot tho.