fast scp with no encryption
From thelinuxwiki
openssh client/server version: 6.4_p1-r1
client
openssh client options for the "none" cipher are enabled on the command line as follows...
# scp -o NoneSwitch=yes -o NoneEnabled=yes [[user@]host1:]file1 ... [[user@]host2:]file2
I tried putting the settings in ssh_config, but I received this error...
You may only use this configuration option from the command line
server
edit and add/configure the following line in /etc/ssh/sshd_config
NoneEnabled yes
Restart sshd after changing the config.