Deploying an SSH Server in C # /. Net

In the project we are working on, a new requirement is added: it should be able to receive files via SFTP (SSH) using key / pair authentication. We managed to find an interesting collection of SSH client libraries (such as SSH.Net), but not server ones. The closest we have found so far is the Python library, which we are discussing with IronPython.

How should we do this? Are we missing any libraries or should we work on its implementation ourselves?

+7
source share
2 answers

A quick search of the ".NET SSH server" in google shows our SecureBlackbox in 4th position. Among many other features, SecureBlackbox offers SSH / SFTP server components for .NET.

+2
source

In addition, FxSsh is a pure C # server-side server part. At this point, the supported EXEC method and backward flow are supported.

Welcome Plug and contribute to https://github.com/Aimeast/FxSsh

+1
source

All Articles