1. Enable the FTP and SSH on the Source NAS

2. Putty into the Source NAS with valid user name( own the files directory you want to transfer) to find the directory path

3. Destination NAS has “wget” enabled

4. Use the command

wget -mirror  -np -x –no-host-directories -o “directory/logfilename” ftp://user:password@source NAS ip-address/Directory(copy from)

user is valid user own the files directory

Replace “password” with the user password for the source NAS

Replace “ip-address” witht the ip-address of the source NAS you would like to copy From

“-mirror” means recursively drill down unlimited depth

“-np” keeps recursion below the parent (probably not needed)

“-x” creates even empty directories if they exist

“–no-host-directories” means do not prepend the ip-address to the local directory structure

“directory/logfilename”, create a long for copy operation.

————–Very Helpful to transfer lots files from one NAS to the other.