Differences
This shows you the differences between the selected revisions of the page.
2018-09-28 | 2018-10-01 | ||
no summary (96.82.9.137) | creating a certificate with correct key usage (martin) | ||
Line 84: | Line 84: | ||
&screenshotpict(iis_certificates) | &screenshotpict(iis_certificates) | ||
+ | |||
+ | Self-signed certificates created by IIS Manager do not work with FTPS clients that check for key usage violations.((E.g. clients that use GnuTLS, like FileZilla.)) To create a certificate with a correct key usage, run the following PowerShell command as an Administrator: | ||
+ | |||
+ | <code powershell> | ||
+ | New-SelfSignedCertificate -FriendlyName "FTP Server" -CertStoreLocation cert:\localmachine\my -DnsName ftp.example.com | ||
+ | </code> | ||
===== [[firewall]] Servers behind external Firewall/NAT ===== | ===== [[firewall]] Servers behind external Firewall/NAT ===== | ||
Line 159: | Line 165: | ||
* Guide to [[guide_upload|uploading files to FTPS server]]; | * Guide to [[guide_upload|uploading files to FTPS server]]; | ||
* Guide to [[guide_automation|automating operations]] (including upload). | * Guide to [[guide_automation|automating operations]] (including upload). | ||
- | * IIS-generated cert may not work in FileZilla. In that case must create cert via PowerShell using these steps at the bottom of this page: https://forums.iis.net/t/1234970.aspx?FTPS+filezilla+3+24+Key+usage+violation+in+certificate+has+been+detected+ | + |