Linux - Proftpd configre tlsrenegotiate, Proftp client does not timeout

Proftpd configre tlsrenegotiate

Normally in proftd when mod_tls is enabled, sometime user might face issue with ftp connection, There might be error like aborting transfer: Link to file server lost
 TLSRenegotiate [ [\"ctrl\" secs] [\"data\" Kbytes] [\"timeout\" secs]|[\"required\" on|off]|\"none\"]

Default TLS connection setup
 TLSRenegotiate    ctrl 3600 data 512000 required off timeout 300

Change renegotiations to occur on control channels after 1 hour
 TLSRenegotiate ctrl 3600

Change renegotiations to occur on data channels after 500 MB
 TLSRenegotiate data 512000

Change renegotiations so that they are not required, only requested
 TLSRenegotiate required off

Change only the timeout for renegotiations to be 5 minutes
 TLSRenegotiate timeout 300

Change all of the above renegotiation threshholds using one directive
 TLSRenegotiate ctrl 3600 data 512000 required off timeout 300

To disable renegotiations entirely
    TLSRenegotiate none

The topic on Linux - Proftpd configre tlsrenegotiate is posted by - Math

Hope you have enjoyed, Linux - Proftpd configre tlsrenegotiateThanks for your time

Tech Bluff