SSHD on Cygwin: can't connect as “root” from a Linux boxssh authentication nfsHow do you manage ssh keys to add a second user?How do I connect to a server behind an socks5 proxy through SSH on mac/linux?ssh_exchange_identification: Connection closed by remote hostSSH accepts publickey authetication but won't connect with an identify file?OpenSSH disable ControlMaster for given hostnameCan't SSH into Amazon EC2Is it possible to ssh or rsync into a system whose file-system has remounted itself read-only?AWS :: Ubuntu instance consistently denying my private keysHow to properly use rsync Push with SSH on local macOS to remote Debian

A player is constantly pestering me about rules, what do I do as a DM?

Symbol for "not absolutely continuous" in Latex

How to write or read powers (math) by words?

Does ultrasonic bath cleaning damage laboratory volumetric glassware calibration?

How to convert object fill in to fine lines?

Avoid bfseries from bolding pm in siunitx

Why is a blank required between "[[" and "-e xxx" in ksh?

Confusion about multiple information Sets

Zombie Diet, why humans

Going to get married soon, should I do it on Dec 31 or Jan 1?

Do we or do we not observe (measure) superpositions all the time?

Analog is Obtuse!

How was film developed in the late 1920s?

If a high rpm motor is run at lower rpm, will it produce more torque?

What does 2>&1 | tee mean?

Is adding a new player (or players) a DM decision, or a group decision?

Can a US president have someone sent to prison?

“Transitive verb” + interrupter+ “object”?

Signing using digital signatures?

Are there any vegetarian astronauts?

How can I check type T is among parameter pack Ts... in C++?

Alphabet completion rate

What are good ways to spray paint a QR code on a footpath?

What happens when your group is victim of a surprise attack but you can't be surprised?



SSHD on Cygwin: can't connect as “root” from a Linux box


ssh authentication nfsHow do you manage ssh keys to add a second user?How do I connect to a server behind an socks5 proxy through SSH on mac/linux?ssh_exchange_identification: Connection closed by remote hostSSH accepts publickey authetication but won't connect with an identify file?OpenSSH disable ControlMaster for given hostnameCan't SSH into Amazon EC2Is it possible to ssh or rsync into a system whose file-system has remounted itself read-only?AWS :: Ubuntu instance consistently denying my private keysHow to properly use rsync Push with SSH on local macOS to remote Debian






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I'm trying to connect a Linux (CentOS 6.5 x64) server and another server, a Windows Server 2008 R2 running Cygwin, and transfer files daily via SSHD from Linux to Windows, and I will use public keys for authentication. The Windows server is recognized and is a know host in Linux SSH, but when I try to copy the Linux public key to Windows server via scp command, it returns:



Connection closed by <host IP> lost connection`


In sshd_config file, there's a line allowing connections as root (commented as default), I uncommented and remained the same. I tried turn off Windows Firewall, but not worked. Is something wrong with my Cygwin/SSHD settings, or Linux SSHD?



ssh -v output:



ssh -v <Windows server user>@<Host IP>
OpenSSH_5.3p1, OpenSSL 1.0.1e-fips 11 Feb 2013
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to 192.168.1.23 [192.168.1.23] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: identity file /root/.ssh/identity type -1
debug1: identity file /root/.ssh/identity-cert type -1
debug1: identity file /root/.ssh/id_rsa type 1
debug1: identity file /root/.ssh/id_rsa-cert type -1
debug1: identity file /root/.ssh/id_dsa type -1
debug1: identity file /root/.ssh/id_dsa-cert type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.6.1
debug1: match: OpenSSH_6.6.1 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.3
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host '192.168.1.23' is known and matches the RSA host key.
debug1: Found key in /root/.ssh/known_hosts:1
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password,keyboard-interactive
debug1: Next authentication method: publickey
debug1: Trying private key: /root/.ssh/identity
debug1: Offering public key: /root/.ssh/id_rsa
Connection closed by <Host IP>









share|improve this question
























  • Is the Windows firewall opened? Try a simple ssh connection witht the -v option instead if using scp and see if you get any useful errors.

    – Zoredache
    Oct 10 '14 at 22:17











  • I opened port 22 and turned down the firewall, there's ssh output (resumed, the entire output is too long): debug1: Next authentication method: publickey debug1: Trying private key: /root/.ssh/identity debug1: Offering public key: /root/.ssh/id_rsa Connection closed by <host IP> Once the port is opened, will be the same output. Looks like something only in the server.

    – jiyamesu
    Oct 10 '14 at 22:20












  • entire output is too long - Edit your question and add it to the question.

    – Zoredache
    Oct 10 '14 at 22:25











  • @Zoredache There is

    – jiyamesu
    Oct 10 '14 at 22:31











  • You seem to be connecting to the server just fine. You probably need to check the logs on the SSH server next.

    – Zoredache
    Oct 10 '14 at 23:36

















0















I'm trying to connect a Linux (CentOS 6.5 x64) server and another server, a Windows Server 2008 R2 running Cygwin, and transfer files daily via SSHD from Linux to Windows, and I will use public keys for authentication. The Windows server is recognized and is a know host in Linux SSH, but when I try to copy the Linux public key to Windows server via scp command, it returns:



Connection closed by <host IP> lost connection`


In sshd_config file, there's a line allowing connections as root (commented as default), I uncommented and remained the same. I tried turn off Windows Firewall, but not worked. Is something wrong with my Cygwin/SSHD settings, or Linux SSHD?



ssh -v output:



ssh -v <Windows server user>@<Host IP>
OpenSSH_5.3p1, OpenSSL 1.0.1e-fips 11 Feb 2013
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to 192.168.1.23 [192.168.1.23] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: identity file /root/.ssh/identity type -1
debug1: identity file /root/.ssh/identity-cert type -1
debug1: identity file /root/.ssh/id_rsa type 1
debug1: identity file /root/.ssh/id_rsa-cert type -1
debug1: identity file /root/.ssh/id_dsa type -1
debug1: identity file /root/.ssh/id_dsa-cert type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.6.1
debug1: match: OpenSSH_6.6.1 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.3
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host '192.168.1.23' is known and matches the RSA host key.
debug1: Found key in /root/.ssh/known_hosts:1
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password,keyboard-interactive
debug1: Next authentication method: publickey
debug1: Trying private key: /root/.ssh/identity
debug1: Offering public key: /root/.ssh/id_rsa
Connection closed by <Host IP>









share|improve this question
























  • Is the Windows firewall opened? Try a simple ssh connection witht the -v option instead if using scp and see if you get any useful errors.

    – Zoredache
    Oct 10 '14 at 22:17











  • I opened port 22 and turned down the firewall, there's ssh output (resumed, the entire output is too long): debug1: Next authentication method: publickey debug1: Trying private key: /root/.ssh/identity debug1: Offering public key: /root/.ssh/id_rsa Connection closed by <host IP> Once the port is opened, will be the same output. Looks like something only in the server.

    – jiyamesu
    Oct 10 '14 at 22:20












  • entire output is too long - Edit your question and add it to the question.

    – Zoredache
    Oct 10 '14 at 22:25











  • @Zoredache There is

    – jiyamesu
    Oct 10 '14 at 22:31











  • You seem to be connecting to the server just fine. You probably need to check the logs on the SSH server next.

    – Zoredache
    Oct 10 '14 at 23:36













0












0








0








I'm trying to connect a Linux (CentOS 6.5 x64) server and another server, a Windows Server 2008 R2 running Cygwin, and transfer files daily via SSHD from Linux to Windows, and I will use public keys for authentication. The Windows server is recognized and is a know host in Linux SSH, but when I try to copy the Linux public key to Windows server via scp command, it returns:



Connection closed by <host IP> lost connection`


In sshd_config file, there's a line allowing connections as root (commented as default), I uncommented and remained the same. I tried turn off Windows Firewall, but not worked. Is something wrong with my Cygwin/SSHD settings, or Linux SSHD?



ssh -v output:



ssh -v <Windows server user>@<Host IP>
OpenSSH_5.3p1, OpenSSL 1.0.1e-fips 11 Feb 2013
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to 192.168.1.23 [192.168.1.23] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: identity file /root/.ssh/identity type -1
debug1: identity file /root/.ssh/identity-cert type -1
debug1: identity file /root/.ssh/id_rsa type 1
debug1: identity file /root/.ssh/id_rsa-cert type -1
debug1: identity file /root/.ssh/id_dsa type -1
debug1: identity file /root/.ssh/id_dsa-cert type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.6.1
debug1: match: OpenSSH_6.6.1 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.3
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host '192.168.1.23' is known and matches the RSA host key.
debug1: Found key in /root/.ssh/known_hosts:1
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password,keyboard-interactive
debug1: Next authentication method: publickey
debug1: Trying private key: /root/.ssh/identity
debug1: Offering public key: /root/.ssh/id_rsa
Connection closed by <Host IP>









share|improve this question
















I'm trying to connect a Linux (CentOS 6.5 x64) server and another server, a Windows Server 2008 R2 running Cygwin, and transfer files daily via SSHD from Linux to Windows, and I will use public keys for authentication. The Windows server is recognized and is a know host in Linux SSH, but when I try to copy the Linux public key to Windows server via scp command, it returns:



Connection closed by <host IP> lost connection`


In sshd_config file, there's a line allowing connections as root (commented as default), I uncommented and remained the same. I tried turn off Windows Firewall, but not worked. Is something wrong with my Cygwin/SSHD settings, or Linux SSHD?



ssh -v output:



ssh -v <Windows server user>@<Host IP>
OpenSSH_5.3p1, OpenSSL 1.0.1e-fips 11 Feb 2013
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to 192.168.1.23 [192.168.1.23] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: identity file /root/.ssh/identity type -1
debug1: identity file /root/.ssh/identity-cert type -1
debug1: identity file /root/.ssh/id_rsa type 1
debug1: identity file /root/.ssh/id_rsa-cert type -1
debug1: identity file /root/.ssh/id_dsa type -1
debug1: identity file /root/.ssh/id_dsa-cert type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.6.1
debug1: match: OpenSSH_6.6.1 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.3
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host '192.168.1.23' is known and matches the RSA host key.
debug1: Found key in /root/.ssh/known_hosts:1
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password,keyboard-interactive
debug1: Next authentication method: publickey
debug1: Trying private key: /root/.ssh/identity
debug1: Offering public key: /root/.ssh/id_rsa
Connection closed by <Host IP>






centos ssh windows-server-2008-r2 cygwin cygwin-sshd






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Oct 11 '14 at 3:39







jiyamesu

















asked Oct 10 '14 at 22:00









jiyamesujiyamesu

13 bronze badges




13 bronze badges












  • Is the Windows firewall opened? Try a simple ssh connection witht the -v option instead if using scp and see if you get any useful errors.

    – Zoredache
    Oct 10 '14 at 22:17











  • I opened port 22 and turned down the firewall, there's ssh output (resumed, the entire output is too long): debug1: Next authentication method: publickey debug1: Trying private key: /root/.ssh/identity debug1: Offering public key: /root/.ssh/id_rsa Connection closed by <host IP> Once the port is opened, will be the same output. Looks like something only in the server.

    – jiyamesu
    Oct 10 '14 at 22:20












  • entire output is too long - Edit your question and add it to the question.

    – Zoredache
    Oct 10 '14 at 22:25











  • @Zoredache There is

    – jiyamesu
    Oct 10 '14 at 22:31











  • You seem to be connecting to the server just fine. You probably need to check the logs on the SSH server next.

    – Zoredache
    Oct 10 '14 at 23:36

















  • Is the Windows firewall opened? Try a simple ssh connection witht the -v option instead if using scp and see if you get any useful errors.

    – Zoredache
    Oct 10 '14 at 22:17











  • I opened port 22 and turned down the firewall, there's ssh output (resumed, the entire output is too long): debug1: Next authentication method: publickey debug1: Trying private key: /root/.ssh/identity debug1: Offering public key: /root/.ssh/id_rsa Connection closed by <host IP> Once the port is opened, will be the same output. Looks like something only in the server.

    – jiyamesu
    Oct 10 '14 at 22:20












  • entire output is too long - Edit your question and add it to the question.

    – Zoredache
    Oct 10 '14 at 22:25











  • @Zoredache There is

    – jiyamesu
    Oct 10 '14 at 22:31











  • You seem to be connecting to the server just fine. You probably need to check the logs on the SSH server next.

    – Zoredache
    Oct 10 '14 at 23:36
















Is the Windows firewall opened? Try a simple ssh connection witht the -v option instead if using scp and see if you get any useful errors.

– Zoredache
Oct 10 '14 at 22:17





Is the Windows firewall opened? Try a simple ssh connection witht the -v option instead if using scp and see if you get any useful errors.

– Zoredache
Oct 10 '14 at 22:17













I opened port 22 and turned down the firewall, there's ssh output (resumed, the entire output is too long): debug1: Next authentication method: publickey debug1: Trying private key: /root/.ssh/identity debug1: Offering public key: /root/.ssh/id_rsa Connection closed by <host IP> Once the port is opened, will be the same output. Looks like something only in the server.

– jiyamesu
Oct 10 '14 at 22:20






I opened port 22 and turned down the firewall, there's ssh output (resumed, the entire output is too long): debug1: Next authentication method: publickey debug1: Trying private key: /root/.ssh/identity debug1: Offering public key: /root/.ssh/id_rsa Connection closed by <host IP> Once the port is opened, will be the same output. Looks like something only in the server.

– jiyamesu
Oct 10 '14 at 22:20














entire output is too long - Edit your question and add it to the question.

– Zoredache
Oct 10 '14 at 22:25





entire output is too long - Edit your question and add it to the question.

– Zoredache
Oct 10 '14 at 22:25













@Zoredache There is

– jiyamesu
Oct 10 '14 at 22:31





@Zoredache There is

– jiyamesu
Oct 10 '14 at 22:31













You seem to be connecting to the server just fine. You probably need to check the logs on the SSH server next.

– Zoredache
Oct 10 '14 at 23:36





You seem to be connecting to the server just fine. You probably need to check the logs on the SSH server next.

– Zoredache
Oct 10 '14 at 23:36










1 Answer
1






active

oldest

votes


















0














If you are trying to copy keys to the Windows box then I assume you are just getting set up. Make sure you are allowed to connect with a password and if you are connecting as root allow that as well. Make sure public key authentication is enabled as well.



RSAAuthentication yes
PubkeyAuthentication yes
PasswordAuthentication yes
PermitRootLogin yes


As important as these are it's just as important to be sure the opposite settings don't exist (i.e. RSAAuthentication no somewhere). Before you try scp, go ahead and just ssh into it with the user and password you are trying to copy with. Examples assume username is joe and server is devsrv:



ssh joe@devsrv


Once you see this works then try your copy with:



scp mykey.pub joe@devsrv:/tmp/foo


Once you have your keys copied over disable password authentication with PasswordAuthentication no






share|improve this answer

























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "2"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f635193%2fsshd-on-cygwin-cant-connect-as-root-from-a-linux-box%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    If you are trying to copy keys to the Windows box then I assume you are just getting set up. Make sure you are allowed to connect with a password and if you are connecting as root allow that as well. Make sure public key authentication is enabled as well.



    RSAAuthentication yes
    PubkeyAuthentication yes
    PasswordAuthentication yes
    PermitRootLogin yes


    As important as these are it's just as important to be sure the opposite settings don't exist (i.e. RSAAuthentication no somewhere). Before you try scp, go ahead and just ssh into it with the user and password you are trying to copy with. Examples assume username is joe and server is devsrv:



    ssh joe@devsrv


    Once you see this works then try your copy with:



    scp mykey.pub joe@devsrv:/tmp/foo


    Once you have your keys copied over disable password authentication with PasswordAuthentication no






    share|improve this answer



























      0














      If you are trying to copy keys to the Windows box then I assume you are just getting set up. Make sure you are allowed to connect with a password and if you are connecting as root allow that as well. Make sure public key authentication is enabled as well.



      RSAAuthentication yes
      PubkeyAuthentication yes
      PasswordAuthentication yes
      PermitRootLogin yes


      As important as these are it's just as important to be sure the opposite settings don't exist (i.e. RSAAuthentication no somewhere). Before you try scp, go ahead and just ssh into it with the user and password you are trying to copy with. Examples assume username is joe and server is devsrv:



      ssh joe@devsrv


      Once you see this works then try your copy with:



      scp mykey.pub joe@devsrv:/tmp/foo


      Once you have your keys copied over disable password authentication with PasswordAuthentication no






      share|improve this answer

























        0












        0








        0







        If you are trying to copy keys to the Windows box then I assume you are just getting set up. Make sure you are allowed to connect with a password and if you are connecting as root allow that as well. Make sure public key authentication is enabled as well.



        RSAAuthentication yes
        PubkeyAuthentication yes
        PasswordAuthentication yes
        PermitRootLogin yes


        As important as these are it's just as important to be sure the opposite settings don't exist (i.e. RSAAuthentication no somewhere). Before you try scp, go ahead and just ssh into it with the user and password you are trying to copy with. Examples assume username is joe and server is devsrv:



        ssh joe@devsrv


        Once you see this works then try your copy with:



        scp mykey.pub joe@devsrv:/tmp/foo


        Once you have your keys copied over disable password authentication with PasswordAuthentication no






        share|improve this answer













        If you are trying to copy keys to the Windows box then I assume you are just getting set up. Make sure you are allowed to connect with a password and if you are connecting as root allow that as well. Make sure public key authentication is enabled as well.



        RSAAuthentication yes
        PubkeyAuthentication yes
        PasswordAuthentication yes
        PermitRootLogin yes


        As important as these are it's just as important to be sure the opposite settings don't exist (i.e. RSAAuthentication no somewhere). Before you try scp, go ahead and just ssh into it with the user and password you are trying to copy with. Examples assume username is joe and server is devsrv:



        ssh joe@devsrv


        Once you see this works then try your copy with:



        scp mykey.pub joe@devsrv:/tmp/foo


        Once you have your keys copied over disable password authentication with PasswordAuthentication no







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Oct 28 '14 at 14:07









        DeezCashewsDeezCashews

        1012 bronze badges




        1012 bronze badges



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Server Fault!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f635193%2fsshd-on-cygwin-cant-connect-as-root-from-a-linux-box%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

            Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

            Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070