i want to remotely ssh to my home server, and I was wondering if I could just forward port 22 with disabling password login and use pubkey authentication will be safe enough?

  • AnApexBread@alien.topB
    link
    fedilink
    English
    arrow-up
    3
    ·
    3 years ago

    disabling password login and use pubkey authentication will be safe enough?

    Just make sure you actually disable password login. Simply enabling key doesn’t disable password. So as long as the password is disabled then you’re fine.

  • kaipee@alien.topB
    link
    fedilink
    English
    arrow-up
    3
    ·
    3 years ago

    Disable password auth.

    Enable key only auth.

    Add in TOTP 2FA (google authenticator).

    Randomize the port (reduce bots) that forwards to 22.

    Configure lockout to block upon 3 failed attempts, for a long duration like 1 year. (Have a backup access on LAN).

    Ensure only the highest encryption ciphers are accepted.

    Ensure upgrades are applied to sshd at least monthly.

      • kaipee@alien.topB
        link
        fedilink
        English
        arrow-up
        1
        ·
        3 years ago

        Easy to do with known internal networks.

        Difficult to manage when roaming.

        • gnordli@alien.topB
          link
          fedilink
          English
          arrow-up
          1
          ·
          3 years ago

          Absolutely, just sometimes people forget those tools even exist. Of course, you can easily do the same thing with firewall rules as well.

          Also, that was a great tidbit about the pam email notification on successful logon. I haven’t seen that one before, thank you!!

    • ennova2005@alien.topB
      link
      fedilink
      English
      arrow-up
      1
      ·
      3 years ago

      Good summaries. How does the TOTP 2FA article handle drop/reconnects? TOTP needed for each reconnect attempt?

  • brandontaylor1@alien.topB
    link
    fedilink
    English
    arrow-up
    3
    ·
    3 years ago

    As long as password auth is disabled you’re fine. No one is cracking your RSA key. You can add Fail2Ban to reduce the log noise, but security wise it’s fine.

  • chaplin2@alien.topB
    link
    fedilink
    English
    arrow-up
    3
    ·
    3 years ago

    If you disable password authentication, and use public key authentication, yes.

    • kaipee@alien.topB
      link
      fedilink
      English
      arrow-up
      3
      ·
      3 years ago

      How is a VPN service more secure than an SSH service?

      Both accept login.

      Both provide can be brute forced / if using password.

      • Internal-Initial-835@alien.topB
        link
        fedilink
        English
        arrow-up
        1
        ·
        3 years ago

        Generally speaking. VPN is easier to setup securely out of the box for most especially with limited knowledge. You can choose a random port and then have access to any server on your network. Scanners won’t usually test all ports unless they find something that’s tempting.

        Normally just the normal ports will be poked including 22. SSH can be secured well but not without jumping through a few hoops. It’s easier imho to accidentally allow access through incorrect ssh setup than vpn.

        When you think vpn has been developed with this exact purpose in mind. It’s fair to assume the protection will be better out of the box. If you have a vpn then a hacker needs to get through the vpn and then also the ssh so there’s not really any disadvantage to using a vpn and then also harden ssh if you want to.

        It’s about making things difficult. Nobody is going to spend days or weeks battering a vpn if they don’t think there’s anything useful behind it. A VPN also shows somewhat that you’ve given things consideration and are not an easy target.

        Don’t get me wrong. If somebody is determined enough and has the resources then they will find a way but given the choice between an easy target and one that’s ever so slightly more difficult, they will almost always go for the easiest.

    • Scruffy-Nerd@alien.topB
      link
      fedilink
      English
      arrow-up
      1
      ·
      3 years ago

      I think many ppl are missing a step here. Setup a VPN with wireguard or similar. Then in ur sshd configs only allow ssh from ur VPN local subnet. That on top of ssh key login is pretty secure. Unless one of ur other services gets compromised and they pivot to ur VPN network. Then u prob have more problems tbh

      • ayoungblood84@alien.topB
        link
        fedilink
        English
        arrow-up
        1
        ·
        3 years ago

        With a VPN there’s no need to change the port. Unless you change all of your ssh ports to another set pretty across all of your hosts, you’re just asking for a headache at scale.

        • Sekhen@alien.topB
          link
          fedilink
          English
          arrow-up
          1
          ·
          3 years ago

          I have a “prep script” that takes care of everything.

          It takes less than 2 minutes to run on a fresh install and does all kind of fun things.

  • InfaSyn@alien.topB
    link
    fedilink
    English
    arrow-up
    1
    ·
    3 years ago

    With PubKey and Fail2Ban its probably ok but wouldnt chance it personally. Can you use a different port too?

  • jerwong@alien.topB
    link
    fedilink
    English
    arrow-up
    1
    ·
    3 years ago

    Yes, it’s perfectly safe. Keep it patched, use strong ciphers, use key authentication, and set up an IDS like Fail2Ban or CrowdSec.

  • dev_all_the_ops@alien.topB
    link
    fedilink
    English
    arrow-up
    1
    ·
    3 years ago

    Port forwarding will work, but it has major downsides

    1. Will draw attention of bots
    2. Secure as long as there are no security holes in openssh (which is rare but has happened)
    3. You _must_ harden the ssh server by disabling password auth, putting behind fail2ban

    There are far better and safer alternatives that I would recommend over exposing a raw port to the world.

    1. Tailscale
    2. Wireguard/OpenVPN
    • Innominate8@alien.topB
      link
      fedilink
      English
      arrow-up
      1
      ·
      3 years ago
      1. The bots are looking anyways.
      2. The other options being presented are various VPNs. OpenSSH has far more eyes on it, for much longer than any of the VPNs. Both generally run as root on the host and so have similar attack surfaces.
      3. Disabling password auth is less important than having good passwords, but is still a good idea since turning off passwords guarantees no bad passwords. Fail2ban provides no security.
  • returnofblank@alien.topB
    link
    fedilink
    English
    arrow-up
    1
    ·
    3 years ago

    A VPN will always be better for this purpose, but as long as you properly secure your SSH server, shouldn’t be a problem