- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ftp result - Netout :Connection reset by peer
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
Discussions
Discussions
Discussions
Forums
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
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
тАО10-12-2004 06:09 AM
тАО10-12-2004 06:09 AM
Through a vpn connection, here's what happens when I do an ftp to an HP-UX 11.00 server:
ftp> bin
200 Type set to I.
ftp> put openssh-3.9p1-B.11.00-RISC20.depot
200 PORT command successful.
150 Opening BINARY mode data connection for openssh-3.9p1-B.11.00-
RISC20.depot.
> Netout :Connection reset by peer
426 Data Connection: Connection reset by peer.
ftp: 65535 bytes sent in 189.28Seconds 0.35Kbytes/sec.
ftp>
seems like the connection fails every time I do an ftp.
Pls help.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-12-2004 06:19 AM
тАО10-12-2004 06:19 AM
Re: ftp result - Netout :Connection reset by peer
May be your VPN connection fails becouse of a timeout. Try the hash command before you issue the get.
Now a # is printed when a k is transmitted and there will remain some activity on the line between you and your provider.
Regards,
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-12-2004 06:20 AM
тАО10-12-2004 06:20 AM
Re: ftp result - Netout :Connection reset by peer
Also can put/get a small file?(small in size)
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-12-2004 06:22 AM
тАО10-12-2004 06:22 AM
Re: ftp result - Netout :Connection reset by peer
mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-12-2004 05:44 PM
тАО10-12-2004 05:44 PM
Re: ftp result - Netout :Connection reset by peer
What do you mean by filing a file system?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-13-2004 04:24 AM
тАО10-13-2004 04:24 AM
SolutionThat there was only 65535 bytes of data in 189 seconds seems to suggest there was trouble transfering data across the VPN. There are likely TCP retransmissions and retransmission timeouts in the netstat -p tcp output, and those would probably track as you try to send the file again.
If it happens with the same file over and over, it suggests that some piece of equipment between the two ends is encountering a data-dependent failure - that is the data pattern in the file transfer is unmasking a bug in some bit of kit along the way. You can test that by transfering a different file - you could even try doing a gzip -9 on the .depot file, and transfer the .gz version to change the pattern.
Filling a file system is just what it sounds like. A file system has a fixed capacity (just like a disc), and if you reach that capacity it can take no more.
You could also try some netperf TCP_STREAM tests between the two endpoints http://www.netperf.org/
(However, I'm a bit suspicious of the 65535 byte count there - sounds more like what made it into the socket buffer rather than what might have made it across the network. That the remote reset the connection makes the transfer count a bit suspect as well - there was no exchange of FIN's so there is no real knowledge of what bytes made it. In that sense, the ftp client on your sending system (btw, what is the sending system) is a bit buggy by giving that output.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-13-2004 12:58 PM
тАО10-13-2004 12:58 PM
Re: ftp result - Netout :Connection reset by peer
ftp> passive
Might help
Tyler