I'm trying to scp files from a Linux box to a remote server, but after i put the root password for the server, it gives the message "Hello, I'm freeFTPd 1.0" I tried using put command but nothing is happening.. .. Any idea please

link|improve this question
please show exactly what you're typing, and exactly what the response is. – marto Jun 8 '11 at 21:01
[root@--]#scp (file name) admin@(remote server ip):/DATA The authenticity of host '(remote server ip)" cant be established. RSA key fingerprint is ----- Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added '(remote server ip)' (RSA) to the list of known hosts. root@(remote server ip)'s password: Hello, I'm freeFTPd 1.0 so what we do now????? – user679095 Jun 8 '11 at 21:07
feedback

migrated from stackoverflow.com Jun 12 '11 at 14:11

This question came from our site for professional and enthusiast programmers.

1 Answer

An FTP server is (unexpectedly) running on port 22, which is usually used for SSH. Find out the SSH port on the server. Then specify the port scp should connect to using the -P (uppercase P) command line option.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown