- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- FTP fails after 40 files ftped
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2004 05:47 AM
08-31-2004 05:47 AM
FTP fails after 40 files ftped
For some reason it stops after 40 files and then it loses connection.
Can anyone help me with this ....
- Tags:
- ftp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2004 05:57 AM
08-31-2004 05:57 AM
Re: FTP fails after 40 files ftped
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2004 06:26 AM
08-31-2004 06:26 AM
Re: FTP fails after 40 files ftped
Is there a firewall in between the two. Could be the firewall has a timeout. Are you getting anything in the logs.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2004 06:49 AM
08-31-2004 06:49 AM
Re: FTP fails after 40 files ftped
I dont think timeout is problem .
No idea why it stops suddenly in between .
Is there a way within FTP utility,
no. of file transferrd can be controlled ..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2004 11:52 AM
08-31-2004 11:52 AM
Re: FTP fails after 40 files ftped
Ours is set to ...
ftp> idle
200 Current IDLE time limit is 900 seconds; max 7200
hope this helps
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2004 12:16 PM
08-31-2004 12:16 PM
Re: FTP fails after 40 files ftped
FTP uses two ports 20 and 21 for communication.
20 is uses for COMMANDS and 21 is used for DATA.
If you are tranferring BIG files, port 20 will be idle till the time next command is issued. Some firewalls will consider as an idle connection and will RST the connection.
Is this like an intermittent problem or something that can be reproduced ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2004 12:25 PM
08-31-2004 12:25 PM
Re: FTP fails after 40 files ftped
Which version of HP-UX? Which version of Sun?
What is the value of maxfiles on both the HP-UX and the Sun side? At some points in the past, the default was 60 and while that would seem to allow a file descritpor leak to go beyond 40 files transfered (each file transfered will be a separate FTP data connection) who knows. You migth try to tusc on the HP side and truss on the Sun side and see what is happening with the file descriptors as things progress. Perhaps one side is forgetting to call close().
FWIW, I can do an mget/mput on 60 files without trouble over loopback on an 11.11 system.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2004 08:39 PM
08-31-2004 08:39 PM
Re: FTP fails after 40 files ftped
You enable ftp logging under HP-Ux as follows: -
1) vi /etc/inetd.conf
2) Find the line: -
"ftp stream tcp nowait /usr/lbin/ftpd ftpd"
change "ftpd" to "ftpd -l"
(-l enables logging).
3)Save file and exit vi.
4) inetd -c
5) ftp connection logging will go to /var/adm/syslog/syslog.log as default.