1838661 Members
10231 Online
110128 Solutions
New Discussion

ftpd

 
Bart_6
Advisor

ftpd

How many active ftp connections canb the ftpd handle?
oh no.... not THAT again
8 REPLIES 8
Karthik S S
Honored Contributor

Re: ftpd

I dont think is there any limit. Inetd counts the number of connection occuring within a minute. If that number exceeds some threshold, is assumes the ftp service is broken (or under attack) and keeps getting restarted - and shuts down the service. In most systems, this can be overcome by adding a parameter to the inetd.conf file like .... nowait.400 (400 connections per minute).

Courtesy:
http://www.wu-ftpd.org/wu-ftpd-faq.html
For a list of all the ways technology has failed to improve the quality of life, please press three. - Alice Kahn
Vincent Fleming
Honored Contributor

Re: ftpd

If I remember correctly, (everyone correct me if I'm wrong!) you get an ftpd process for every connection. So, the number of connections you can support is dependent on other things.

Why do you ask? What's the problem?

Vince
No matter where you go, there you are.
Robert-Jan Goossens
Honored Contributor

Re: ftpd

Hi,

Think this is related to maxusers.

Robert-Jan.
Bart_6
Advisor

Re: ftpd

The actual FTP traffic on this particular system is quite low but there are many connections. Sometimes users are unable to connect to the system which implies there is some kind threshold...
oh no.... not THAT again
Paul Hawkins
Frequent Advisor

Re: ftpd

You are more likely to run out of other system resources before you hit a threshold on ftp connections.
Vincent Fleming
Honored Contributor

Re: ftpd

Well, then you should check your kernel tunables...

I have limited experience tuning HP-UX myself, so you would be better off listening to others than myself... perhaps someone like Harry will post a reply... but some of the resources to check are:

# of processes (NPROC)
memory utilization
most of the TCP/IP-related tunables
inetd configuration

Good luck!

Vince
No matter where you go, there you are.
Ravi_8
Honored Contributor

Re: ftpd

Hi,

I am not sure, active ftp connections are equal to number of telnet session that system can handle (nsrtel)
also check the NIC whether auto negotiation is off and it is full duplex which makes ftp faster
never give up
Sridhar Bhaskarla
Honored Contributor

Re: ftpd

Hi,

If you enabled ftp with -a which tells it to use /etc/ftpd/ftpaccess file, they have a look at that file. See if someone might have set a limit. You will find an entry similar to

limit all 10 Any /var/adm/syslog/ftpmsg.dead

In the above case, it will limit upto 10 sessions only for any user.

-Sri
You may be disappointed if you fail, but you are doomed if you don't try