-
Notifications
You must be signed in to change notification settings - Fork 767
Win32 OpenSSH RoadMap
This is a living document
Side by side comparison of OpenSSH 7.1 and the current Windows port features is listed here (will be linked soon).
The primary focus over the next 3-4 months is three fold:
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 around the middle of 2016.
Date | Task | Comments |
---|---|---|
3/31/2016 | Reliability Enhancements | |
5/15/2016 | Security Enhancements | |
6/15/2015 | Code Prep for integration | |
7/15/2015 | Integration in main repo |
- MSI Install Instructions
- Script Install Instructions
- Alternative installation using the universal installer
- Retrieving download links for the latest packages