- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- maximum ftp users
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
02-01-2005 01:50 AM
02-01-2005 01:50 AM
maximum ftp users
Please advise
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2005 02:44 AM
02-01-2005 02:44 AM
Re: maximum ftp users
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2005 03:52 AM
02-01-2005 03:52 AM
Re: maximum ftp users
man ftpaccess for more information.
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2005 04:34 AM
02-02-2005 04:34 AM
Re: maximum ftp users
Each ftp session is also a distinct process, so there will be a limit at the maximum number of processes - nproc.
Of course, CPU utilization and RAM consumption will come into play, as well as network bandwidth available to the host.
The writeups are a bit old, so the constants may not be "right" but the ideas still hold, so the "ftp" and/or software download writeups at:
ftp://ftp.cup.hp.com/dist/networking/briefs/
may be of some use.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2005 06:21 AM
02-02-2005 06:21 AM
Re: maximum ftp users
at any point of time, so I will not go into that.
When you say "manually tweak" the limit, what do
you exactly mean? If you want to control the
number of incoming FTP sessions on your server
(like, for ex, you want to allow only 100 FTP
sessions at any point of time and no more), then
you could use IPFilter to achieve that. If that's what
you want, then configure the IPFilter with following
options and rules:
1) Execute the following command:
$ /sbin/ipf -m e
The above command should say "DCA MODE is
enabled"
2) Configure the following rule:
$ /sbin/ipf -f -
pass in quick proto tcp from any to any port = 21 keep limit 100 cumulative
The above configuration will allow only 100 incoming
FTP connections and will block any connection
beyond that. New FTP connections will only be
allowed when older connection closes.
- Biswajit