- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- FTP Transfers over 1MB fail
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
09-20-2004 07:34 AM
09-20-2004 07:34 AM
any help would be greatly appreciated.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2004 07:37 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2004 07:39 AM
09-20-2004 07:39 AM
Re: FTP Transfers over 1MB fail
I've seen some similar things happen when the speed and/or duplex of the LAN card was mismatched with the setting on the other end.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2004 07:40 AM
09-20-2004 07:40 AM
Re: FTP Transfers over 1MB fail
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2004 07:44 AM
09-20-2004 07:44 AM
Re: FTP Transfers over 1MB fail
This used to be an administrative issue when system limits were small due to the limitations imposed by 8- and 16-bit systems. 32-bit systems gave use doube-wide integers (if I'm recalling this correctly) and correspondingly larger numbers to set limits to.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2004 07:46 AM
09-20-2004 07:46 AM
Re: FTP Transfers over 1MB fail
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2004 08:01 AM
09-20-2004 08:01 AM
Re: FTP Transfers over 1MB fail
I'd be pretty surprised if an inode problem manifested itself by not allowing files of a certain size to transfer. If you run out of inodes in the filesystem, you won't be able to add any files to the filesystem - regardless of size. Also, this is only really applicable to HFS filesystems, since VxFS filesystems add inodes dynamically when they run out.
This sounds like a networking problem of some kind. My suggestion would be to collect a network trace of a "working" file transfer session and a "failing" file transfer session and analyze the traces to see why the connection is shutting down during the failing case. Are packets being sent to the server that don't get acknowledged? Is the server sending a RST on the connection? etc.
The results of analyzing the network traces will hopefully give you an idea what is causing the connection to close, or at least point you in the direction of where to look next.
Regards,
Dave
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2004 02:52 PM
09-20-2004 02:52 PM
Re: FTP Transfers over 1MB fail
You can disable source quench in HP-UX 11.0 by executing this command:
ndd -set /dev/ip ip_send_source_quench 0
To disable Source Quench so that it can survive a reboot, modify the /etc/rc.config.d/nddconf file as follows :
TRANSPORT_NAME[X]=ip
NDD_NAME[X]=ip_send_source_quench
NDD_VALUE[X]=0
Where X is the next logical numerical sequence in a table of values, with X starting at 0.