• [C#]Connecting to linux terminal from windows.
    9 replies, posted
Basically i want to access my netbook terminal from my pc. Is there an api that helps me do that in C# or C++? Got inspired to do this, but google isn't helping me :(
PuTTY [editline]16th December 2012[/editline] Unless you have other intentions you're keeping secret
i'm not looking for a program, i know putty and winscp. I'm looking for an api to make my own ssh tool. Not intending to hack though. Btw i have found what i needed, thanks. [editline]16th December 2012[/editline] Any advice is still welcome.
sockets? write up a server program on linux with c write up a client program with c#
[QUOTE=DarkCybo7;38846592]sockets? write up a server program on linux with c write up a client program with c#[/QUOTE] For now ssh protocol will be enough i think. But eventually i'll need to work with sockets to achieve what i want.
libssh? I'm not sure if there are C# bindings for it.
There are various C# SSH libraries, my personal favorite is SSH.NET: [url]http://sshnet.codeplex.com/[/url]
[QUOTE=MatheusMCardoso;38846288]Btw i have found what i needed, thanks.[/QUOTE] Want to share?
[QUOTE=DarkCybo7;38846592]sockets? write up a server program on linux with c write up a client program with c#[/QUOTE] No need to write the server in C on linux. He can write it in c# and run it using [URL="http://www.mono-project.com/Main_Page"]Mono[/URL] and everything will run fine unless he uses DllImports to WinAPI... That's the only way I have broke mono support in the past.
[QUOTE=Jookia;38851809]Want to share?[/QUOTE] SSH.NET I was just googling wrong.
Sorry, you need to Log In to post a reply to this thread.