|
From: Brad K. <br...@kn...> - 2025-10-27 23:20:00
|
Hello, I am getting customer complaints about the transfer speeds. I need some help to try to diagnose what is going on. Proftp has a public ip address, so there are no NATs and is firewalled on the host with ufw. The host is a nfs server with user home dir. Proftpd allows pam users to access the files in their home dir. I am not sure how to diagnose this. The internet feed is a 1Gb/s. I get an upload speed of 34.9 MiB/s. on a 620 M file. I realize there are a lot of factors that can play a role in this transfer. For now I want to focus on proftpd and see if it is performing like it should. Thoughts on how to go about this? TY Brad Build Config: ./configure \ --sysconfdir=/etc/proftpd \ --disable-ident \ --enable-dso \ --with-modules=mod_tls:mod_sftp Config: ServerName "File Transfer Server" ServerType standalone DefaultServer on # Port 21 is the standard FTP port. Port 2222 # Don't use IPv6 support by default. UseIPv6 off Umask 003 MaxInstances 30 # Set the user and group under which the server will run. User nobody Group nogroup # To cause every FTP user to be "jailed" (chrooted) into their home directory DefaultRoot ~ # Normally, we want files to be over writeable. AllowOverwrite on MaxLoginAttempts 3 AllowRetrieveRestart on DeferWelcome on HiddenStores on DeleteAbortedStores on #sFTP config SFTPEngine on SFTPAuthMethods password SFTPOptions IgnoreSFTPUploadPerms IgnoreSCPUploadPerms IgnoreSFTPSetOwners IgnoreSFTPSetExtendedAttributes IgnoreSFTPUploadExtendedAttributes SFTPCompression off SFTPMaxChannels 10 RequireValidShell off SFTPHostKey /etc/ssh/ssh_host_rsa_key SFTPHostKey /etc/ssh/ssh_host_ecdsa_key # logging SyslogLevel warn SystemLog /var/log/proftpd/system.log TransferLog none # Bar use of SITE CHMOD by default <Limit SITE_CHMOD> DenyAll </Limit> |