AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • Início
  • system&network
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • Início
  • system&network
    • Recentes
    • Highest score
    • tags
  • Ubuntu
    • Recentes
    • Highest score
    • tags
  • Unix
    • Recentes
    • tags
  • DBA
    • Recentes
    • tags
  • Computer
    • Recentes
    • tags
  • Coding
    • Recentes
    • tags
Início / unix / Perguntas / 751704
Accepted
admstg
admstg
Asked: 2023-07-18 01:04:44 +0800 CST2023-07-18 01:04:44 +0800 CST 2023-07-18 01:04:44 +0800 CST

Problema de chave SSH - Fedora 38

  • 772

Tenho um servidor remoto com pelo menos 2 usuários (root e eu). Eu tenho as mesmas chaves em .ssh/authorized_keys em ambas as pastas $HOME. Eu consigo me conectar com a conta root, mas na minha conta eu tenho um Server refused our keyerro " ". Verifiquei o sshd_config (no servidor) e a pasta .ssh para verificar se há erros. Como estou usando para ambas as contas a mesma chave ed25519, não tenho ideia. a única coisa que posso ver está UsePAM yesem /etc/ssh/sshd_config.d/50-redhat.conf, mas se eu removê-lo, não consigo fazer login com passwd.

Aqui está o resultado ssh -v

[stan@DEL-3KC0G63 ~]$ ssh -v -i /mnt/c/Users/s.garret
/.ssh/id_ed25519 stan@192.168.1.28
OpenSSH_8.0p1, OpenSSL 1.1.1k  FIPS 25 Mar 2021
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Reading configuration data /etc/ssh/ssh_config.d/05-redhat.conf
debug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config
debug1: configuration requests final Match pass
debug1: re-parsing configuration
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Reading configuration data /etc/ssh/ssh_config.d/05-redhat.conf
debug1: Reading configuration data /etc/crypto-policies/back-ends/openssh.config
debug1: Connecting to 192.168.1.28 [192.168.1.28] port 22.
debug1: Connection established.
debug1: identity file /mnt/c/Users/s.garret/.ssh/id_ed25519 type 3
debug1: identity file /mnt/c/Users/s.garret/.ssh/id_ed25519-cert type -1
debug1: Local version string SSH-2.0-OpenSSH_8.0
debug1: Remote protocol version 2.0, remote software version OpenSSH_9.0
debug1: match: OpenSSH_9.0 pat OpenSSH* compat 0x04000000
debug1: Authenticating to 192.168.1.28:22 as 'stan'
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: algorithm: curve25519-sha256
debug1: kex: host key algorithm: ecdsa-sha2-nistp256
debug1: kex: server->client cipher: aes256-gcm@openssh.com MAC: <implicit> compression: none
debug1: kex: client->server cipher: aes256-gcm@openssh.com MAC: <implicit> compression: none
debug1: kex: curve25519-sha256 need=32 dh_need=32
debug1: kex: curve25519-sha256 need=32 dh_need=32
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ecdsa-sha2-nistp256 SHA256:LjRh07mgxeC37wDufL2WmbYVYTY0tKHptZSSZGc1Q3U
debug1: Host '192.168.1.28' is known and matches the ECDSA host key.
debug1: Found key in /home/stan/.ssh/known_hosts:3
debug1: rekey out after 4294967296 blocks
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: rekey in after 4294967296 blocks
debug1: Will attempt key: /mnt/c/Users/s.garret/.ssh/id_ed25519 ED25519 SHA256:DF1VjlJzo51HzV0TQgCcKnRCZXlhr9rCwiJuZBZzVZU explicit
debug1: SSH2_MSG_EXT_INFO received
debug1: kex_input_ext_info: server-sig-algs=<ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com>
debug1: kex_input_ext_info: publickey-hostbound@openssh.com (unrecognised)
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: Next authentication method: gssapi-with-mic
debug1: Unspecified GSS failure.  Minor code may provide more information
No Kerberos credentials available: Invalid UID in persistent keyring name


debug1: Unspecified GSS failure.  Minor code may provide more information
No Kerberos credentials available: Invalid UID in persistent keyring name


debug1: Next authentication method: publickey
debug1: Offering public key: /mnt/c/Users/s.garret/.ssh/id_ed25519 ED25519 SHA256:DF1VjlJzo51HzV0TQgCcKnRCZXlhr9rCwiJuZBZzVZU explicit
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: Next authentication method: password
stan@192.168.1.28's password:
debug1: Authentication succeeded (password).

E o resultado de ls -la na pasta ssh:

[stan@metal ~]$ ls -la .ssh/
total 24
drwx------.  2 stan stan 4096 17 juil. 18:20 .
drwxrwxr-x. 53 stan stan 4096 17 juil. 18:38 ..
-rw-------.  1 stan stan  115  4 juil. 08:34 authorized_keys
-rw-------.  1 stan stan 2622 16 févr.  2020 id_rsa
-rw-------.  1 stan stan  582 16 févr.  2020 id_rsa.pub
-rw-------.  1 stan stan 1361 16 mai   18:33 known_hosts
[stan@metal ~]$
ssh
  • 1 1 respostas
  • 33 Views

1 respostas

  • Voted
  1. Best Answer
    Rui F Ribeiro
    2023-07-18T21:29:48+08:002023-07-18T21:29:48+08:00

    O SSH faz algumas restrições de segurança para sua própria segurança. Embora tudo em ~/.ssh pareça ok, stan $HOME está muito aberto em 775/rwxrwxr-x por sua lssaída de diretório .ssh.

    Se estiver logado como stan run:

    chmod 700 $HOME
    

    Ou se root:

    chmod 700 ~stan 
    

    Agora seu ssh deve funcionar.

    • 2

relate perguntas

  • Por que o utilitário ssh é considerado um pty?

  • Auto-SSH funciona manualmente, mas não em segundo plano

  • Execute o aplicativo X remotamente, execute a GUI no host remoto [fechado]

  • rsync porta 22 e 873 uso

  • Aborto repentino do SCP: tubo quebrado, código de autenticação de mensagem incorreto

Sidebar

Stats

  • Perguntas 205573
  • respostas 270741
  • best respostas 135370
  • utilizador 68524
  • Highest score
  • respostas
  • Marko Smith

    Possível firmware ausente /lib/firmware/i915/* para o módulo i915

    • 3 respostas
  • Marko Smith

    Falha ao buscar o repositório de backports jessie

    • 4 respostas
  • Marko Smith

    Como exportar uma chave privada GPG e uma chave pública para um arquivo

    • 4 respostas
  • Marko Smith

    Como podemos executar um comando armazenado em uma variável?

    • 5 respostas
  • Marko Smith

    Como configurar o systemd-resolved e o systemd-networkd para usar o servidor DNS local para resolver domínios locais e o servidor DNS remoto para domínios remotos?

    • 3 respostas
  • Marko Smith

    apt-get update error no Kali Linux após a atualização do dist [duplicado]

    • 2 respostas
  • Marko Smith

    Como ver as últimas linhas x do log de serviço systemctl

    • 5 respostas
  • Marko Smith

    Nano - pule para o final do arquivo

    • 8 respostas
  • Marko Smith

    erro grub: você precisa carregar o kernel primeiro

    • 4 respostas
  • Marko Smith

    Como baixar o pacote não instalá-lo com o comando apt-get?

    • 7 respostas
  • Martin Hope
    user12345 Falha ao buscar o repositório de backports jessie 2019-03-27 04:39:28 +0800 CST
  • Martin Hope
    Carl Por que a maioria dos exemplos do systemd contém WantedBy=multi-user.target? 2019-03-15 11:49:25 +0800 CST
  • Martin Hope
    rocky Como exportar uma chave privada GPG e uma chave pública para um arquivo 2018-11-16 05:36:15 +0800 CST
  • Martin Hope
    Evan Carroll status systemctl mostra: "Estado: degradado" 2018-06-03 18:48:17 +0800 CST
  • Martin Hope
    Tim Como podemos executar um comando armazenado em uma variável? 2018-05-21 04:46:29 +0800 CST
  • Martin Hope
    Ankur S Por que /dev/null é um arquivo? Por que sua função não é implementada como um programa simples? 2018-04-17 07:28:04 +0800 CST
  • Martin Hope
    user3191334 Como ver as últimas linhas x do log de serviço systemctl 2018-02-07 00:14:16 +0800 CST
  • Martin Hope
    Marko Pacak Nano - pule para o final do arquivo 2018-02-01 01:53:03 +0800 CST
  • Martin Hope
    Kidburla Por que verdadeiro e falso são tão grandes? 2018-01-26 12:14:47 +0800 CST
  • Martin Hope
    Christos Baziotis Substitua a string em um arquivo de texto enorme (70 GB), uma linha 2017-12-30 06:58:33 +0800 CST

Hot tag

linux bash debian shell-script text-processing ubuntu centos shell awk ssh

Explore

  • Início
  • Perguntas
    • Recentes
    • Highest score
  • tag
  • help

Footer

AskOverflow.Dev

About Us

  • About Us
  • Contact Us

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve