Silverlight compatible Telnet/SSH library
Is 开发者_运维问答there a Silverlight compatible Telnet or SSH library.
Our SecureBlackbox product includes SSH client components, which can be used in Silverlight (subject to network access restrictions, imposed by Microsoft on Silverlight code). Telnet is "low-level" TCP access + handling of some control sequences. While SecureBlackbox doesn't include control sequence interpretation (neither it does for SSH), you can use TElSocket class for simple synchronous socket access (also in Silverlight) and add control sequence handling.
There are a number of open source projects out there that implement SSH, mostly deriving from SharpSSH, such as SharpSSH2 which is "updated for the v3.5 framework", and a rewrite for the v4 framework is SSH.Net (although it also claims to support ".NET 3.5, Silverlight and Windows Phone"). There are other projects such as Granados as well, so depending on your preference of open source licence, you may find one of these will suit your needs.
精彩评论