Operating System - HP-UX
1752770 Members
5489 Online
108789 Solutions
New Discussion юеВ

Re: 226-Scan result: Skip scanning large file

 
SOLVED
Go to solution
administratorccs
Occasional Contributor

226-Scan result: Skip scanning large file

Hi,
I use FTP to get the files from a remote node. I get this error:

ftp> get /backup/oracle_backup.dmp /oracle/backup/

200 PORT command successful.

150 Opening BINARY mode data connection for /backup/oracle_backup.dmp (327237632

bytes).

226-Scan result:
Skip scanning large file /backup/oracle_backup.dmp



226 Transfer complete.

Please help me to solve the problem with skipping the file scan from FTP.

Thank you

4 REPLIES 4
Suraj K Sankari
Honored Contributor

Re: 226-Scan result: Skip scanning large file

Hi,

try with ftp -i servername

Suraj
Ganesan R
Honored Contributor
Solution

Re: 226-Scan result: Skip scanning large file

Hi,

>>>
ftp> get /backup/oracle_backup.dmp /oracle/backup/
<<<

What is this /oracle/backup? Is it destination directory where you want to put the ftp file? I don't think you can specify destination directory in get command. You should use lcd command for that purpose like this.

ftp>lcd /oracle/backup
ftp>get /backup/oracle_backup.dmp
Best wishes,

Ganesh.
Steven Schweda
Honored Contributor

Re: 226-Scan result: Skip scanning large file

> [...] a remote node [...]

Not a particularly complete or useful
description of the remote system.

> Please help me to solve the problem with
> skipping the file scan from FTP.

Why do you call this a "problem"? An FTP
status code "2xx" implies success.

Knowing nothing about the "remote node", I'd
guess that its FTP server runs some kind of
anti-virus scan on files which it serves.
The message implies that it doesn't do it for
large files (like, say, an Oracle data base
backup file). Do you care?

> 226 Transfer complete.

Did you get the file or not?
administratorccs
Occasional Contributor

Re: 226-Scan result: Skip scanning large file

Hi all,
Thank you all for your replies.
Actually I added lcd and it works:

ftp> lcd /backup
Local directory now /oracle/backup

ftp> get /backup/oracle_backup.dmp
200 PORT command successful.
150 Opening BINARY mode data connection for /backup/oracle_backup.dmp (32723763
bytes).
226-Scan result:
Skip scanning large file /backup/oracle_backup.dmp

226 Transfer complete.
327237632 bytes received in 75.11 seconds (4254.59 Kbytes/s)
ftp> bye
221-You have transferred 327237632 bytes in 1 files.
221-Total traffic for this session was 327239953 bytes in 2 transfers.
221-Thank you for using the FTP service on dbsrv2.
221 Goodbye.
# cd /backup
# ll
total 646676
-rw-r--r-- 1 root sys 327237632 May 11 07:14 oracle_backup.dmp
-rw-rw-rw- 1 root sys 3852259 May 11 03:55 test

In my previous case the file was not copied, as I did wrongly specified the destination on GET command.
But still it shows:
226-Scan result:
Skip scanning large file /backup/oracle_backup.dmp

Maybe this is comming from an antivirus software, I am not aware of.

Thank you for supporting.