-
Notifications
You must be signed in to change notification settings - Fork 763
Win32 OpenSSH RoadMap
This is now obsolete. Please check Project Status
The current implementation of the POSIX IO wrapper ("select" and "fd" IO) for Windows has some limitations. Specifically, since it spawns numerous threads (one for each set fd in fd_sets passed to select), it does not scale. The overhead of synchronization between these threads impacts performance and reliability. We are currently working on replacing this with one that takes advantage of the native asynchronous IO support available in Windows (Overlapped IO) - hoping that many of the random IO related issues being reported will be resolved with this change.
Our current implementation requires the SSH daemon to run as Local System with high privileges. We are working on moving to a more secure model that runs the daemon with the least privileges required (and most likely as Network Service). We will also address other Windows relevant security aspects including key-based authentication and secure credential/passphrase management.
The goal of this port is to ultimately converge in OpenSSH's main repo. Over the next couple of months, we will progressively seek feedback from the the OpenSSH community, prepare and refactor code as needed, with a plan to integrate into the main repo by end of 2016.
Date | Task | Comments |
---|---|---|
3/31/2016 | Reliability Enhancements | |
5/15/2016 | Security Enhancements | |
10/15/2016 | Code Prep for integration | |
10/30/2016 | Integration in main repo |
The intention is to be close in feature parity with OpenSSH by end of this year, following OpenSSH features will however will NOT be ready by this deadline:
- VerifyHostKeyDNS
- Client ControlMaster
- Background ssh execution mode
- VPN forwarding
- PKCS based smart cards
- GSSAPI based authentication
- Host based authentication (needs security review closure)
- Authentication forwarding (needs security review closure)
- Compression
Following Windows specific feature/work items are not in scope for this deadline:
- MINGW build support
- Use MS CNG (instead of OpenSSL)
- Key management using MS CNG
- Xterm, VT220 terminal modes
- ETW Logging (syslog alternative in Windows)
If you are looking for a specific feature not in above list and not in here, feel free to add it issue list.
- MSI Install Instructions
- Script Install Instructions
- Alternative installation using the universal installer
- Retrieving download links for the latest packages