1 Answer
- Newest
- Most votes
- Most comments
2
When creating a Transfer server with FTPS (TLS) support, the default mode for TLS session resumption is ENFORCED
which means the FTPS client needs to resume the same TLS session between control and data connections.
Not all FTPS clients can support TLS session resumption between control and data connections so this setting may need adjusting in your case.
answered 3 years ago
Thats it! Awesome. Thanks.
The solution is to switch from ENFORCED to ENABLED
aws transfer update-server --server-id SERVER_ID --protocol-details TlsSessionResumptionMode=ENABLED
Thanks also to Christopher H. from Amazon, who also helped me successfully via AWS support.
Relevant content
- asked a year ago
- asked 2 years ago
- asked 2 years ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 4 months ago
- AWS OFFICIALUpdated 6 days ago
Julian I have to thank you for posting your follow up to this question. It's been a week of suffering (including deploying a FTP server to ECS instead of using AWS Transfer) but your solution posted I think has solved my problems.
Thank you!