PDA

View Full Version : A question about ftp-listen device


stLancer_2
10-27-2003, 11:14 PM
[FTP-Data]
Host = 0.0.0.0
Ports = 1024-2048
Random = True
Global_Inbound_bandwidth = 0 # Inbound bandwidth in kb/sec
Global_Outbound_bandwidth = 0 # Outbound bandwidth in kb/sec

[FTP-Listen]
Host = 0.0.0.0
Global_Inbound_bandwidth = 0 #limit overall speeds
Global_Outbound_bandwidth = 0 #limit overall speeds
Client_Inbound_bandwidth = 0 #limit per user speeds
Client_Outbound_bandwidth = 0 #limit per user speeds

[FTP_Service]
Type = FTP
Device_Name = FTP-Listen
Data_Devices = FTP-Data
Port = 874
Description = myftpd
User_Limit = 200
Allowed_Users = *
;Messages = ..\text\ftp



i set it like this in my ioftpd.ini
and i want know, if i set the bandwidth control setting in FTP-Listen Device to 10kb/s and FTP-Data DEVICE with the unlimited , the total bandwidth of my ftp will be 10kb/s only or unlimited?
anyone help me plz?

darkone
10-27-2003, 11:36 PM
Total will be unlimited, while control channel is guaranteed to use 10kb/s max

darkone
10-27-2003, 11:38 PM
Setting up 10kb/s limit for listen device, will make your site act sluggish - as each send/receive operation reserves 1kb from the pool. (this will be changed, once I get socket priorities in)

stLancer_2
10-27-2003, 11:59 PM
thanks for you reply.
:D