Hi guys.

I need to use the tor to avoid a blocking of the codereview.qt-project.org (in my country sad). The git-ssh configuration described here: http://wiki.qt.io/Setting_up_Gerrit
I need to do it on ArchLinux.
I successfully do it on Windows with following ~/.ssh/config:

[code]
Host codereview.qt-project.org
Port 29418
User <my-login-name>
ProxyCommand ncc -X 5 -x localhost:9050 %h %p
[/code]

but same config does not work with ArchLinux (where I just replace 'ncc' with 'nc'),
it returns with an error:

[quote]
    [denis@arch qtlocation]$ git fetch ssh://<my-login-name>@codereview.qt-project.org:29418/qt/qtlocation refs/changes/92/237992/1 && git checkout FETCH_HEAD     Unable to negotiate with UNKNOWN port 65535: no matching cipher found. Their offer: aes128-cbc,aes192-cbc,aes256-cbc,blowfish-cbc
    fatal: Could not read from remote repository.

    Please make sure you have the correct access rights
    and the repository exists.
[/quote]

Then I have created another config as described in "Setting_up_Gerrit":

[code]
Host http://codereview.qt-project.org-gerrit
    Hostname http://codereview.qt-project.org
    Port 29418
    User <my-login-name>
    Ciphers +aes256-cbc
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/id_rsa.pub
    ProxyCommand socat STDIO SOCKS4A:127.0.0.1:%h:%p,socksport=9050
[/code]

then It returns with another error:

[quote]
    [denis@arch qtlocation]$ git fetch ssh://<my-login-name>@codereview.qt-project.org:29418/qt/qtlocation refs/changes/92/237992/1 && git checkout FETCH_HEAD     Unable to negotiate with 54.229.21.112 port 29418: no matching cipher found. Their offer: aes128-cbc,aes192-cbc,aes256-cbc,blowfish-cbc
    fatal: Could not read from remote repository.

    Please make sure you have the correct access rights
    and the repository exists.
[/quote]

Of course, I have added the SSH-keys to the my gerrit profile, have installed and started the tor service (via systemctl), and have installed the socat && openbsd-netcat.

PS: I have checked the tor service via chromium browser with configured socks5 proxy.

Could someone help me please?

BR,
Denis
_______________________________________________
Development mailing list
[email protected]
http://lists.qt-project.org/mailman/listinfo/development

Reply via email to