Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Implementing SSH Server in C#/.Net

Tags:

c#

.net

ssh

A project we're working on just got a new requirement added to it: it has to be able to receive files through SFTP (SSH) using key/pair authentication. We've been able to find an interesting collection of SSH client libraries (such as SSH.Net), but no server ones. The closest we've found so far is a Python library that we're debating implementing through IronPython.

How should we go about doing this? Are we missing any libraries, or should we work on implementing it ourselves?

like image 203
Graeme K. Hefner Avatar asked Jul 12 '12 16:07

Graeme K. Hefner


1 Answers

Also, FxSsh is a pure C# implementing SSH server side. In this stage, supported EXEC method and return stream.

you are welcome Fork and Contribute on https://github.com/Aimeast/FxSsh

like image 76
Aimeast Avatar answered Oct 12 '22 03:10

Aimeast