Scp command

From DD-WRT Wiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 02:13, 3 September 2006 (edit)
Drakcap (Talk | contribs)
(rv. spam (great, that's just great))
← Previous diff
Current revision (19:18, 8 May 2010) (edit) (undo)
Glenn (Talk | contribs)
(catchg)
 
(10 intermediate revisions not shown.)
Line 1: Line 1:
 +You are here: '''[[Main_Page|DD-WRT wiki mainpage]] / [[Index:Scripting|Scripting]] / [[Telnet/SSH_and_the_Command_Line|SSH/Telnet & The CLI]] / scp '''
 +Secure Copy - Copy files via SSH
 +
 +<pre>
 +usage: scp [-1246BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file]
 + [-l limit] [-o ssh_option] [-P port] [-S program]
 + [[user@]host1:]file1 [...] [[user@]host2:]file2
 +</pre>
 +
 +
 +<u>Example</u>: <font color=red>Flashing with SCP</font>
 +
 +Occasionally the DD-WRT web interface will decline to accept a valid firmware. SCP is a good alternate as long as you've enabled sshd on the 'Services' page.
 +
 +'''scp -rp local_firmware_name.trx root@192.168.1.1:/tmp/remote_name.trx'''
 +
 +Login with ssh and
 +
 +'''mtd -r write /tmp/remote_name.trx linux'''
 +
 +
 +[[WinSCP]] (easy to use GUI for SCP)
 +
 +[[Category:Command-line reference]]

Current revision

You are here: DD-WRT wiki mainpage / Scripting / SSH/Telnet & The CLI / scp

Secure Copy - Copy files via SSH

usage: scp [-1246BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file]
           [-l limit] [-o ssh_option] [-P port] [-S program]
           [[user@]host1:]file1 [...] [[user@]host2:]file2


Example: Flashing with SCP

Occasionally the DD-WRT web interface will decline to accept a valid firmware. SCP is a good alternate as long as you've enabled sshd on the 'Services' page.

scp -rp local_firmware_name.trx root@192.168.1.1:/tmp/remote_name.trx

Login with ssh and

mtd -r write /tmp/remote_name.trx linux


WinSCP (easy to use GUI for SCP)