OpenWrt Forum Archive

Topic: how to download a flie from the openwrt .

The content of this topic has been archived on 23 Apr 2018. There are no obvious gaps in this topic, but there may still be some posts missing at the end.

i want download some files from teh wrt54g with openwrt, is there some smart way?

wget -O <filename on the local filesystem> http:// or ftp:// ... file ...

thanks

you could use scp, like this:

from your PC:

scp root@<linksys-ip>:/path/to/file local-file-name

the opositive is also posible:

scp local-file-name root@<linksys-ip>:/path/to/file

you can copy more than one file if the destiny is one directory (ie, it ends with "/").

Hope this helps!.

The discussion might have continued from here.