Bitbucket ssh clone на AIX 7.1 не работает

Я столкнулся с проблемой при попытке клонировать тестовое репо (общедоступное) из битбакета, как показано ниже. Как ни странно, ssh auth не проходит для битбакета и отлично работает для github, когда к обеим учетным записям добавлен один и тот же открытый ключ. Я предполагаю, что существует какая-то разновидность согласования ssh между github и bitbucket, которая не работает с версией opnessh на моем сервере aix 7.1. Есть какие-нибудь подсказки, что здесь можно сделать, чтобы найти первопричину? Обратите внимание, что клон https на битбакете работает нормально.

версия ssh и git

max-08$ ssh -V
OpenSSH_7.5p1, OpenSSL 1.0.2p  14 Aug 2018

max-08$ git --version
git version 2.18.0 

разрешения на каталог .ssh

max-08$ ls -lrt .ssh
total 40
-rw-r--r--    1 max staff            57 Jan 14 16:36 config
-rwx------    1 max staff          1989 Jan 14 16:38 authorized_keys
-rw-------    1 max staff          3243 Jan 14 16:40 id_rsa
-rw-r--r--    1 max staff           755 Jan 14 16:40 id_rsa.pub
-rwx------    1 max staff          2040 Jan 14 17:00 known_hosts

ssh / git clone trace для битбакета

max-08$ GIT_SSH_COMMAND="ssh -vvv -i /home/max/.ssh/id_rsa" git clone [email protected]:max/testing.git
Cloning into 'testing'...
OpenSSH_7.5p1, OpenSSL 1.0.2p  14 Aug 2018
debug1: Reading configuration data /home/max/.ssh/config
debug1: /home/max/.ssh/config line 1: Applying options for *
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Failed dlopen: /usr/krb5/lib/libkrb5.a(libkrb5.a.so): Could not load module /usr/krb5/lib/libkrb5.a(libkrb5.a.so).
System error: No such file or directory

debug1: Error loading Kerberos, disabling Kerberos auth.
debug2: resolving "bitbucket.org" port 22
debug2: ssh_connect_direct: needpriv 0
debug1: Connecting to bitbucket.org [18.205.93.2] port 22.
debug1: Connection established.
debug1: identity file /home/max/.ssh/id_rsa type 1
debug1: key_load_public: No such file or directory
debug1: identity file /home/max/.ssh/id_rsa-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.5
debug1: Remote protocol version 2.0, remote software version conker_1.1.17-9953920 app-133
debug1: no match: conker_1.1.17-9953920 app-133
debug2: fd 3 setting O_NONBLOCK
debug1: Authenticating to bitbucket.org:22 as 'git'
debug3: hostkeys_foreach: reading file "/home/max/.ssh/known_hosts"
debug3: record_hostkey: found key type RSA in file /home/max/.ssh/known_hosts:3
debug3: load_hostkeys: loaded 1 keys from bitbucket.org
debug3: order_hostkeyalgs: prefer hostkeyalgs: [email protected],rsa-sha2-512,rsa-sha2-256,ssh-rsa
debug3: send packet: type 20
debug1: SSH2_MSG_KEXINIT sent
debug3: receive packet: type 20
debug1: SSH2_MSG_KEXINIT received
debug2: local client KEXINIT proposal
debug2: KEX algorithms: curve25519-sha256,[email protected],ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512,diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha256,diffie-hellman-group14-sha1,ext-info-c
debug2: host key algorithms: [email protected],rsa-sha2-512,rsa-sha2-256,ssh-rsa,[email protected],[email protected],[email protected],[email protected],ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,ssh-ed25519
debug2: ciphers ctos: aes128-ctr,aes192-ctr,aes256-ctr,[email protected],[email protected],[email protected],aes128-cbc,aes192-cbc,aes256-cbc
debug2: ciphers stoc: aes128-ctr,aes192-ctr,aes256-ctr,[email protected],[email protected],[email protected],aes128-cbc,aes192-cbc,aes256-cbc
debug2: MACs ctos: [email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],hmac-sha2-256,hmac-sha2-512,hmac-sha1
debug2: MACs stoc: [email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],hmac-sha2-256,hmac-sha2-512,hmac-sha1
debug2: compression ctos: none,[email protected],zlib
debug2: compression stoc: none,[email protected],zlib
debug2: languages ctos:
debug2: languages stoc:
debug2: first_kex_follows 0
debug2: reserved 0
debug2: peer server KEXINIT proposal
debug2: KEX algorithms: [email protected],ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1
debug2: host key algorithms: ssh-dss,ssh-rsa
debug2: ciphers ctos: aes128-ctr,aes192-ctr,aes256-ctr,[email protected],[email protected],arcfour256,arcfour128
debug2: ciphers stoc: aes128-ctr,aes192-ctr,aes256-ctr,[email protected],[email protected],arcfour256,arcfour128
debug2: MACs ctos: [email protected],hmac-sha2-256,hmac-sha1,hmac-sha1-96
debug2: MACs stoc: [email protected],hmac-sha2-256,hmac-sha1,hmac-sha1-96
debug2: compression ctos: none
debug2: compression stoc: none
debug2: languages ctos:
debug2: languages stoc:
debug2: first_kex_follows 0
debug2: reserved 0
debug1: kex: algorithm: [email protected]
debug1: kex: host key algorithm: ssh-rsa
debug1: kex: server->client cipher: aes128-ctr MAC: [email protected] compression: none
debug1: kex: client->server cipher: aes128-ctr MAC: [email protected] compression: none
debug3: send packet: type 30
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug3: receive packet: type 31
debug1: Server host key: ssh-rsa SHA256:zzXQOXSRBEiUtuE8AikJYKwbHaxvSc0ojez9YXaGp1A
debug3: hostkeys_foreach: reading file "/home/max/.ssh/known_hosts"
debug3: record_hostkey: found key type RSA in file /home/max/.ssh/known_hosts:3
debug3: load_hostkeys: loaded 1 keys from bitbucket.org
debug3: hostkeys_foreach: reading file "/home/max/.ssh/known_hosts"
debug3: record_hostkey: found key type RSA in file /home/max/.ssh/known_hosts:3
debug3: load_hostkeys: loaded 1 keys from 18.205.93.2
debug1: Host 'bitbucket.org' is known and matches the RSA host key.
debug1: Found key in /home/max/.ssh/known_hosts:3
debug3: send packet: type 21
debug2: set_newkeys: mode 1
debug1: rekey after 4294967296 blocks
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug3: receive packet: type 21
debug1: SSH2_MSG_NEWKEYS received
debug2: set_newkeys: mode 0
debug1: rekey after 4294967296 blocks
debug2: key: /home/max/.ssh/id_rsa (2008c568), explicit
debug3: send packet: type 5
debug3: receive packet: type 6
debug2: service_accept: ssh-userauth
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug3: send packet: type 50
debug3: receive packet: type 51
debug1: Authentications that can continue: publickey
debug3: start over, passed a different list publickey
debug3: preferred publickey,keyboard-interactive,password
debug3: authmethod_lookup publickey
debug3: remaining preferred: keyboard-interactive,password
debug3: authmethod_is_enabled publickey
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /home/max/.ssh/id_rsa
debug3: send_pubkey_test
debug3: send packet: type 50
debug2: we sent a publickey packet, wait for reply
debug3: receive packet: type 60
debug1: Server accepts key: pkalg ssh-rsa blen 535
debug2: input_userauth_pk_ok: fp SHA256:QHbX3ieex06ZuF8XtkQcBFoCfpCooxh2noxyGdTE1uI
debug3: sign_and_send_pubkey: RSA SHA256:QHbX3ieex06ZuF8XtkQcBFoCfpCooxh2noxyGdTE1uI
debug3: send packet: type 106
debug1: Sent ALLOW_PKCS12_KEYSTORE_CLIENT_FLAG packet
debug3: send packet: type 50
Authentication failed.
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists

person Max    schedule 15.01.2019    source источник
comment
Просто охватываю все основы: связали ли вы этот открытый ключ со своей учетной записью на Bitbucket? Есть ли у этой учетной записи доступ для чтения к этому репозиторию?   -  person Jim Redmond    schedule 15.01.2019
comment
debug1: key_load_public: No such file or directory выглядит как использование errno без очистки и без проверки того, что вызов завершился ошибкой ... что произойдет, если вы touch(1) файл, который он пытается dlopen? Есть ли у вас в AIX инструмент, похожий на strace(1)?   -  person o11c    schedule 15.01.2019
comment
@JimRedmond: да, это публичное репо, поэтому мне действительно не нужно указывать какие-либо разрешения. Более того, клон https работает.   -  person Max    schedule 15.01.2019
comment
@ o11c touch работает нормально. Я постараюсь найти вам след.   -  person Max    schedule 15.01.2019
comment
Вы правы в том, что для публичных репозиториев не требуются разрешения, но связали ли вы этот открытый ключ со своей учетной записью? Трафик SSH по-прежнему требует этого, даже для публичных репозиториев.   -  person Jim Redmond    schedule 15.01.2019
comment
@Max, который отслеживает только сам git, а не ssh. но, что важно, НЕ ПУБЛИЧНО РАЗМЕЩАЙТЕ СЛЕД SSH, ЭТО БУДЕТ ВКЛЮЧАТЬ ВАШ ЧАСТНЫЙ КЛЮЧ. Лучше проверьте след самостоятельно.   -  person o11c    schedule 15.01.2019
comment
@JimRedmond подтвердил, что ключ pub связан с учетной записью bitbucket, которая создала репо.   -  person Max    schedule 16.01.2019


Ответы (2)


Похоже, это проблема с Apache Mina:

https://issues.apache.org/jira/browse/SSHD-886

person EdwardP    schedule 03.02.2019

Вот что работало в AIX 7.1 Добавьте следующую конфигурацию в .ssh / config

AllowPKCS12keystoreAutoOpen = нет

Почему это включено по умолчанию в AIX 7.1 с SSH OpenSSH_7.5p1 - это то, что я буду преследовать дальше и начну поток с ребятами из AIX и Atlassian, чтобы увидеть, нужно ли им обрабатывать некоторые сценарии здесь, поскольку это отлично работает для github.

person Max    schedule 01.02.2019
comment
Проблема была исправлена ​​в Bitbucket версии 5.16 путем перемещения формы apache mina в стандартную библиотеку sshd. - person Max; 08.02.2019