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
06-07-2004 10:54 PM
06-07-2004 10:54 PM
FTPD
Data port : 20
exiting on signal 11
and we see the next message in the ftp client:
421 Service not available, remote server has closed connection
What`s the solution for this problem?
Please help me!
Steve Derka
system manager
steve@sze.hu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2004 10:58 PM
06-07-2004 10:58 PM
Re: FTPD
Could you check your /etc/services file if someone removed/uncommented ftp ?
ftp-data 20/tcp # File Transfer Protocol (Data)
ftp 21/tcp # File Transfer Protocol (Control)
Hope this helps,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2004 10:58 PM
06-07-2004 10:58 PM
Re: FTPD
Is ftpd enabled in /etc/inetd.conf?
if not enable and do an #inetd -c
Both ports reserved in /etc/services?
20 and 21
Regards,
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2004 11:04 PM
06-07-2004 11:04 PM
Re: FTPD
Also check whether you have blocked ports 20(ftpdata) and 21(ftp) on your firewall/router end.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2004 11:07 PM
06-07-2004 11:07 PM
Re: FTPD
Also pls check if a ftp deny clause exist into /var/adm/inetd.sec
i.e:
ftp deny *
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2004 11:23 PM
06-07-2004 11:23 PM
Re: FTPD
I faced the same error a couple of days ago. I sorted out it by putting an IP address of the client station in /var/adm/inetd.sec.
ftp allow
regards,
Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2004 05:04 AM
06-09-2004 05:04 AM
Re: FTPD
$ grep 11 /usr/include/sys/signal.h
* @(#)B.11.11_LR common/sys/signal.h $Revision: $
# define SIGSEGV 11 /* Segmentation violation */
basically, that means the ftpd died in an unpleasant fashion. Presuming you are running the HP-supplied ftpd, you might check the ITRC for patches.
You might also want to consider getting started on an upgrade from 11i v1.6 (11.22) to 11i v2 (11.23) although I cannot say that would eliminate the SIGSEGV issue, it would be good to be on a more current OS rev.
Now, if you are up for a bit more detective work... you might download a copy of tusc from ftp://ftp.cup.hp.com/dist/networking/tools/ and then when you know that only you are going to be doing new FTP or telnet or whatnot - anything that runs as a child of inetd, use tusc, with the option to follow fork(), and display the pid, and take a system call trace of the inetd starting just before you initiate the ftp session. You might then be able to determine just how far the FTPD gets before it goes belly-up. That would probably be of great assistance to the Response Centre when you call them (after seeing there isn't already an ftp patch) to report the bug in the FTPD.