"Legacy Backup" slow FTP upload
When i backup my accounts and ftp them using the following script i have over 20MBps upload speed: (users.txt is my selection accounts)
cat /backup/users.txt | while read CPUSER; do
echo "Now processing ${CPUSER} ..."
/scripts/pkgacct ${CPUSER} /path/tofile/
done
## Here we will put the backups to our FTP server
HOST='x.x.x.x'
USER='ouruser'
PASS='ourpass'
TARGETFOLDER='/'
SOURCEFOLDER='/path/tofile'
# login to remote server
ftp -n -i $HOST <
but when i check FTP server for upload speed of automatic backups of ""Legacy Backup" i see they are less than 200kbps!!!!
How to fix this and where to check the issue? What is the reason and how to resolve it? Previously the server where not like this but currently it acts like this.
** It is noteworthy that my FTP server for backups is FileZilla Server on a windows server.
Kind Regards-
It is strange but i managed to fix it by disabling task offload on my network interface 0 -
New It is strange but i managed to fix it by disabling task offload on my network interface
Hello :) I'm happy to see you were able to address the issue. Thank you for updating us with the outcome.0
Please sign in to leave a comment.
Comments
2 comments