I have my own ssh server (on raspberry pi 5, Ubuntu Server 23) but when I try to connect from my PC using key authentication (having password disabled), I get a blank screen. A blinking cursor.

However, once I enter the command eval "$(ssh-agent -s)" and try ssh again, I successfully login after entering my passphrase. I don’t want to issue this command every time. Is that possible?

This does not occur when I have password enabled on the ssh server. Also, ideally, I want to enter my passphrase EVERYTIME I connect to my server, so ideally I don’t want it to be stored in cache or something. I want the passphrase to be a lil’ password so that other people can’t accidentally connect to my server when they use my PC.

  • dysprosium@lemmy.dbzer0.comOP
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    28 days ago
    ssh-add -L
    ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCqS5l(redacted)f0phb8x+fUV1w== username@computername
    
    echo $SSH_AUTH_SOCK
    /run/user/1000/gcr/ssh
    
    lsof $SSH_AUTH_SOCK
    COMMAND      PID    USER FD   TYPE             DEVICE SIZE/OFF    NODE NAME
    gcr-ssh-a 778406 username  3u  unix 0x000000007e25ee6b      0t0   30290 /run/user/1000/gcr/ssh type=STREAM (LISTEN)
    gcr-ssh-a 778406 username  6u  unix 0x0000000020f5b559      0t0 2096642 /run/user/1000/gcr/ssh type=STREAM (CONNECTED)
    gcr-ssh-a 778406 username 12u  unix 0x00000000a6756d60      0t0 2100347 /run/user/1000/gcr/ssh type=STREAM (CONNECTED)
    gcr-ssh-a 778406 username 15u  unix 0x00000000625cb05a      0t0 2261237 /run/user/1000/gcr/ssh type=STREAM (CONNECTED)
    gcr-ssh-a 778406 username 21u  unix 0x00000000d0b214f9      0t0 2261238 /run/user/1000/gcr/ssh type=STREAM (CONNECTED)
    gcr-ssh-a 778406 username 23u  unix 0x00000000a2f197fe      0t0 2349665 /run/user/1000/gcr/ssh type=STREAM (CONNECTED)
    gcr-ssh-a 778406 username 27u  unix 0x00000000da22a130      0t0 2349668 /run/user/1000/gcr/ssh type=STREAM (CONNECTED)
    gcr-ssh-a 778406 username 29u  unix 0x000000004f7a1723      0t0 2365382 /run/user/1000/gcr/ssh type=STREAM (CONNECTED)
    gcr-ssh-a 778406 username 33u  unix 0x00000000e26976b3      0t0 2365389 /run/user/1000/gcr/ssh type=STREAM (CONNECTED)
    gcr-ssh-a 778406 username 35u  unix 0x00000000b8185a8a      0t0 2375648 /run/user/1000/gcr/ssh type=STREAM (CONNECTED)
    gcr-ssh-a 778406 username 39u  unix 0x00000000ba41030c      0t0 2375649 /run/user/1000/gcr/ssh type=STREAM (CONNECTED)
    gcr-ssh-a 778406 username 41u  unix 0x000000006867cb01      0t0 2380999 /run/user/1000/gcr/ssh type=STREAM (CONNECTED)
    gcr-ssh-a 778406 username 45u  unix 0x0000000091384b95      0t0 2381008 /run/user/1000/gcr/ssh type=STREAM (CONNECTED)
    gcr-ssh-a 778406 username 47u  unix 0x00000000d5b28b08      0t0 3729149 /run/user/1000/gcr/ssh type=STREAM (CONNECTED)
    gcr-ssh-a 778406 username 51u  unix 0x00000000f65088aa      0t0 3731006 /run/user/1000/gcr/ssh type=STREAM (CONNECTED)
    

    All before issuing the ssh-agent

    • gedhrel@lemmy.world
      link
      fedilink
      arrow-up
      4
      ·
      28 days ago

      It’s the gnome key ring ssh agent.

      It’s possible that this has popped up a window asking gor permission / a passphrase / something and you’re not seeing that.

    • gedhrel@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      28 days ago

      Okay, that agent process is running but it looks wedged: multiple connections to the socket seem to be opened, probably your other attempts to use ssh.

      The ssh-add output looks like it’s responding a bit, however.

      I’d use your package manager to work out what owns it and go looking for open bugs in the tool.

      (Getting a trace of that process itself would be handy, while you’re trying again. There may be a clue in its behaviour.)

      The server reaponse seems like the handshake process is close to completing. It’s not immediately clear what’s up there I’m afraid.

      • gedhrel@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        28 days ago

        Is this problem a recurring one after a reboot?

        If it is it warrants more effort.

        If not and you’re happy with rhe lack of closure, you can potentially fix this: kill the old agent (watch out to see if it respawns; if it does and that works, fine). If it doesn’t, you can (a) remove the socket file (b) launch ssh-agent with the righr flag (-a $SSH_AGENT_SOCK iirc) to listen at the same place, then future terminal sessions that inherit the env var will still look in the right place. Unsatisfactory but it’ll get you going again.

        • dysprosium@lemmy.dbzer0.comOP
          link
          fedilink
          arrow-up
          1
          ·
          edit-2
          26 days ago

          reboot makes no difference. A new terminal gives the symptoms from the start.

          I think I found a bad workaround. If I add this script to ~/.zshrc (because I’m not using bash but zsh)

          SSH_AUTH_SOCK=/tmp/ssh-agent-$USER-socket
          export SSH_AUTH_SOCK
          if [ ! -S "$SSH_AUTH_SOCK" ]; then
              eval $(ssh-agent -a "$SSH_AUTH_SOCK")
          fi
          

          then it works. But I think I’m still using the ssh agent which I actually should not be using. At least it’s asking for the passphrase every time, which is nice. Even in the same terminal after ssh logout.

          EDIT: The first two lines do the trick as well:

          SSH_AUTH_SOCK=/tmp/ssh-agent-$USER-socket
          export SSH_AUTH_SOCK
          

          EDIT: If I change this SSH_AUTH_SOCK to ANYTHING else, it also works. So /run/user/1000/gcr/ssh does not work. I gave ample permission to this file, so that cannot be the problem. Perhaps BECAUSE this is a file. I think the SSH_AUTH_SOCK should point to a nonexisting file because then it makes temporarily a special file that it needs. Ok I’m just shooting in the dark.

          • gedhrel@lemmy.world
            link
            fedilink
            arrow-up
            1
            ·
            26 days ago

            Minimise your windows one at a time and check that the gnome keyring hasn’t popped up a dialog box sonewhere behind everything else that’s asking you if it’s okay to proceed.

              • mvirts@lemmy.world
                link
                fedilink
                arrow-up
                1
                ·
                24 days ago

                Have you considered storing your keys unencrypted? In this case ssh doesn’t need the agent or a password.

                Yes it’s not as secure, but for me it’s good enough considering my systems at home are not doing anything important. If you have an encrypted home partition it’s just as secure when your partition is unmounted.

    • elmicha@feddit.org
      link
      fedilink
      arrow-up
      1
      ·
      28 days ago

      Search for /run/user/1000/gcr/ssh on the Internet. I’m on my phone and didn’t find the solution, but I’m sure you’ll find it.

      • dysprosium@lemmy.dbzer0.comOP
        link
        fedilink
        arrow-up
        3
        ·
        26 days ago

        I searched. When I change this variable (path), it works. So in the startup script for my terminal (~/.zshrc) I added this:

        SSH_AUTH_SOCK=/tmp/ssh-agent-$USER-socket
        export SSH_AUTH_SOCK
        

        Now it works, but I’m not sure why. Anything BUT /run/user/1000/gcr/ssh works I think