PDA

View Full Version : (Critical) SSL transfer speeds??


Pichento
02-19-2003, 05:24 PM
I thought I had dumped RaidenFTPD for good (so I thought) and spent a few days setting up new site.

But today i discovered that ssl transfer speeds are aput 50% og the speed i can get on clear connections. This cant be right, but until the problem is solved - i cannot really change ftpd.

Maybe the new core update will take care of this?

Best of luck.

Pichento
02-19-2003, 06:04 PM
Heya d1.

I did a few tests and :

Ftp_Send_Buffer = 65536 # FTP Data send buffer size

will give me max speed on my 2 mbit line..

The default value capped the speeds at 80 kb/s

How high a valiue can you enter here?

Pichento
02-19-2003, 06:13 PM
Set my buffers like this (keeping MTU size)

Ftp_Send_Buffer = 1048576 # FTP Data send buffer size
Ftp_Receive_Buffer = 1048576 # FTP Data receive buffer size
Max_Send_Size = 15360 # Max bytes to send at once
Internal_Transfer_Buffer = 16777216 # Internal transfer buffer size

Will this harm anything?

darkone
02-19-2003, 06:17 PM
Limit for socket buffer sizes is int (32bit signed variable; = 2^32 / 2 - 1.. try removing those buffer (FTP_Send/Receive) lines from config) Note that internal transfer buffer is per connection, so everytime user is downloading file it's consuming 16megs of mem :p