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 - Тарых жана география Навигация менюсу

            Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

            What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company