Difference between revisions of "fast scp with no encryption"

From thelinuxwiki
Jump to: navigation, search
(Created page with "openssh client/server version: 6.4_p1-r1 == client == # scp -o NoneSwitch=yes -o NoneEnabled=yes [[user@]host1:]file1 ... [[user@]host2:]file2 I tried putting the setting...")
 
 
Line 4: Line 4:
 
== client ==
 
== client ==
  
  # scp -o NoneSwitch=yes -o NoneEnabled=yes [[user@]host1:]file1 ... [[user@]host2:]file2
+
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...
 
I tried putting the settings in ssh_config, but I received this error...

Latest revision as of 03:54, 9 March 2014

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.