OC: Debian 8 Jessie
Положить файл с локальной дирректории в удаленную
$ scp file.tar.gz user@ip:/home/user
Положить файл с локальной дирректории в удаленную через нестандартный порт SSH(2500)
$ scp -P 2500 la-serv.tar.gz user@ip:/home/user
Следует знать что:
By default scp uses the Triple-DES cipher to encrypt the data being sent. Using the Blowfish cipher has been shown to increase speed. This can be done by using option -c blowfish in the command line.
На Debian опция -c blowfish
дает ошибку:
no matching cipher found: client blowfish-cbc server aes128-ctr,aes192-ctr,aes256-ctr,[email protected],[email protected],[email protected]
Соответственно следует использовать один из предлженых режимов шифрования:
$ scp -c [email protected] test_file user@ip:/home/user