SharpSSH is a .NET framework library for connecting to and retrieving files from an SSH/SFTP server.
0
votes
1answer
42 views
SSH timeout exception error
I am currently having an issue with time out when connecting to a remote server to collect firmware files using an in-house client that is referencing Sharp SSH. The timeout is network based, but I ...
0
votes
0answers
95 views
Sftp exception when trying to get file names with SharpSSH
I am using SharpSsh library to get file names from sftp server. Connection is OK but I get exception of type 'Tamir.SharpSsh.jsch.SftpException' in this code:
_sftp.GetFileList("/outgoing")
When I ...
0
votes
0answers
22 views
SharpSsh Unable to read the full response until the prompt is finished in vb.net
I am connected to a SSH server using SharSSH and when I executed a command it returns just a part of the command with: ssh.readresponse()
sFile.Write(ejecutarCmd("get utrancell=1000AB"))
...
0
votes
1answer
61 views
Vb.net connected with a Unix server by Sharpssh and wait for response
Hello I am conneted to an Unix server by sharpssh with :
Imports Tamir.SharpSsh
Imports Tamir.Streams
Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles ...
0
votes
0answers
179 views
MySQL over SSH “access denied for user 'root'@'localhost' (using password yes)”
I have a remote server hosting an application with a MySQL Database attached. I am trying to write a program to automated a process on the server. This required me to make a connection over SSH then ...
1
vote
0answers
120 views
Auth fail error when using SharpSSH
I am trying to connect to a Solaris/Unix server using a C# class to read system information/configuration, memory usage etc.
My requirement is to run the commands on the server from a C# application ...
0
votes
0answers
26 views
SharpSSH error (ID : 4 Message : ack error: startid=34 seq=186 _ackid=606)
I use C# and SharpSSH library to send file to server sftp, but there is an error
ID : 4 Message : ack error: startid=34 seq=186 _ackid=606
this problem is caused by sending files to sftp server. But ...
0
votes
0answers
215 views
Concurrent SFTP file transfer using c# and SharpSSH
I am using SharpSSH for uploading & downloading files via SFTP.
It works with up to 2 connections at a time. Any more than this fails.
Why won't it work with more than 2 connections at a time?
0
votes
1answer
232 views
to use Tamir.sharpssh namespace, is we need to download any file? [closed]
Tamir.sharpssh namespace is used to connect with the linux system,
my task is "to retrieve the linux system's hardware and software information using C#."
I found this Tamir.sharpssh namespace.
is ...
0
votes
0answers
149 views
C#: Tamir.SharpSsh unable to change directory in unix
I am currently making a File-Dialog-like form in C# that browses directories on a unix server.
I have a bit of a trouble getting the 'cd ..' command to work.
Here is an example of my code
var ...
0
votes
0answers
40 views
writing xml to sftp by SharpSHH
i would like to create some xml(i think XmlDocument would be good for me) and then write it to sftp. I found only one free lib to do that: SharpSSH, but it only provides api that can save existing ...
1
vote
1answer
451 views
SFTP connectivity DNS issue - System.Net.Sockets.SocketException: The requested name is valid, but no data of the requested type was found
I am trying to connect to ftp via SharpSSH as below:
Sftp Connection = new Sftp(ftpAddress, FTPLogin, FTPPasword);
Connection.Connect();
Which results in JSchException:
...
0
votes
1answer
167 views
C# - Check if unix folder exists
I need to verify that a unix folder exists, from my C# application using SharpSsh.
I thought of trying this:
SshExec.RunCommand("-d " + folder)
But the result is always '2' regardless if the folder ...
0
votes
0answers
143 views
getting error Auth fail in SharpSSH program c#
Got stuck with one problem, I am writing a program using sharp ssh samples in c#, in which i want to execute a command on ssh, for which i am passing host, user and password but not the key identity ...
2
votes
1answer
186 views
sharpssh “session is down” during concurrent connections
I'm integrating SharpSSH in on existing .NET 2.0 project. So can't switch to http://sshnet.codeplex.com/ or other newer library...
I have everything working for a single connection with a device and ...
1
vote
1answer
385 views
SharpSSH invalid privatekey
I use SharpSSH to connect to a stfp-server.
This for I need to add a privatekey-file like this:
sftp.AddIdentityFile(KeyFilePath);
But this throws an exception:
invaid privatekey: ...
2
votes
1answer
2k views
SharpSSH Tutorial needed for SFTP-upload
I want to use SharpSSH to upload a file to a SFTP-server.
I got the dll, the file to upload, a public key and sent the private key to the server.
They gave me a username and no password is needed.
...
0
votes
2answers
286 views
Unix / SharpSSH - sshExec.RunCommand(@"chmod 666…) isn't changing file's permission
I'm using SharpSSH to upload files to a remote machine:
public override void WriteFile(string directoryName, string fileName, string localFilePath) {
sftp.Put(localFilePath, directoryName + "/" + ...
1
vote
0answers
69 views
Access user computer or hosting server directory from sftp
I have a sftp server and I developed a interface website between users and sftp files using c#.NET and SharpSSH for download,upload file operations etc
Here is my problem: downloading a file from ...
0
votes
1answer
173 views
SharpSSH - How to set permissions when using Sftp.Put
I'm using SharpSSH to write files to a unix machine. The files are supposed to be read and then deleted up by another application which resides on the unix machine.
The problem is that the unix ...
1
vote
0answers
117 views
C# - SharpSSH transfer in ASCII mode?
I'm using SharpSSH to transfer xml files to a unix machine. Here is the code that writes the files:
public override void WriteFile(string directoryName, string fileName, string responseText) {
...
0
votes
1answer
553 views
System IOException Stream Read End with Sharp SSH
I'm currently facing a really strange problem in one of my projects.
I've implemented Tamir Gal's Sharp SSH Library in my code to upload some files per FTP.
When I run the code in Debug Mode ...
0
votes
0answers
253 views
How to connect SFTP through Http proxy using sharpssh dll
I have some problem in my project. I need the connection code for connecting SFTP Server through HTTP Proxy using sharpssh dll. But i'm new to the SFTP. please any one help me
Thanks in advance
0
votes
1answer
97 views
Do we need a client to accept SFTP file transfers on the client system?
Please forgive if this is a basic question.
I'm working SFTP file transfer using c# (SharpSSH) and I just want to know whether we need to have a client on the other system to recieve the files.
...
0
votes
1answer
207 views
JSchException verify: False C# .NET Scp SSH
I want to connect to remote server to upload some files via SCP/SSH.
I am using SharpSSH for this but it doesnt work.
Everytime the ScpClint wants to connect i get the JSchException verify: False.
...
0
votes
1answer
436 views
Sftp from SharpSSH and public key
I am using SharpSSH's Sftp class to upload files. Someone has requested that I enable RSA authentication. I can't find an info how how to do this. What do I need to do in order to support public ...
0
votes
0answers
148 views
SshExec of SHarpSSH Disconnects When RunCommand Method is Used
I am trying to run some consecutive commands on a routers over SSH connection using SharpSSH in my .NET application. However, when I run a command, after getting the result, it disconnects ...
1
vote
1answer
332 views
Cannot change sftp remote directory using SharpSSH in C#?
I've tried every combination of a path string that I can think of but still I get back "The requested file does not exist"? I've searched the internet for the past few hours and I cannot find an ...
0
votes
3answers
3k views
SFTP SharpSSH dll
I was seeking for a free DLL for .net to handle SFTP connections.
I found out this project SharpSSH, but it lacks of documentation.
I spent a lot of time to figure how the dll works. I created a ...
0
votes
1answer
1k views
SSH connection through Tamir.sharpSsh is not creating
I have made an application, which connects to the device using SSH connection as we do using PUTTY software.
In my application I have used Tamir.sharpSsh C# library.It gives an exception at making SSH ...
1
vote
1answer
656 views
Check if file exist on SFTP remote server
The following code will down the file named file.txt from the SFTP remote server to the local machine.
sftp.Get("/usr/mine/file.txt" , "C:/Folder/");
What i want to do is to Check if the file ...
0
votes
2answers
2k views
Upload Download files from FTP site using SFTP
I need to know a way to connect to a FTP site through SFTP. I am using SharpSSH and i am unable to find an example to do the program.
For now, i have downloaded the SharpSSH .DLL files and added as ...
0
votes
2answers
1k views
Adding DLL as a reference to my SharpSSH C# project
I have downloaded SharpSSH Binaries from the link. When i extracted it i found 3 .DLL files (and also a EXE file).
1.) DiffieHellman.dll
2.) Org.Mentalis.Security.dll
3.) Tamir.SharpSSH.dll
I need ...
0
votes
2answers
351 views
How to run command from a SFTP server programmingly using SharpSSH?
i use Tamir SharpSSH everything is working
but i need to run command with c# code
i put file server but i need to run command for works anybody know this ?
SshTransferProtocolBase sshCp;
const ...
0
votes
1answer
354 views
set Sharpssh sftp connection timeout
I am using sharpssh.dll and want to connect to a sftp server, but if the sftp server is diconnected from network, the program will wait for a long time before "timeout" message is shown, is there ...
0
votes
2answers
831 views
Get list of filenames from a remote directory FTP SSH
I need to get the list of all the filenames through SFTP with VB. I'm trying to place it in an ArrayList, but unsure on the commands to use..
Public Shared Function Retrieve_Directory_list(ByVal ...
1
vote
1answer
339 views
Get a remote file on SFTP with only knowing part of the file name
Okay, well I have the whole file name but the client decided to include timestamps to the end of each name so it really got me confused on how to do this. It was previously a static name plus the ...
0
votes
1answer
1k views
Remotely delete a file through SFTP using a C# program
I want to ask how can I remotely delete a file using sftp
I have tried using SharpSSH but it doesn't work, I got SftpException
i added this code first in the sftp.cs first
public void ...
2
votes
1answer
900 views
how to use SharpSSH for Executing linux commands which prompts for additonal input?
Ok heres what I'm trying to do
I have to setup an SSH session to a linux machine and issue a command like "ls" or cp.
heres the snippet
SshStream ssh = new SshStream ...
0
votes
1answer
271 views
Linux Command Doesn't work from .NET execution when using SharpSSH library
I'm trying to run a very simple command in Linux via .NET using the SharpSsh .NET library. The code doesn't throw any exceptions, and it's still not working. When I run the sudo php ...
1
vote
1answer
1k views
SharpSSH .NET Library: unable to connect to Linux (Debian) from .NET
I'm trying to connect to Linux using SharpSSH, but am unable to. I want to run some Linux commands from my .NET application.
Install Instructions:
SharpSsh - .NET library to connect to UNIX via SSH
...
0
votes
1answer
726 views
How to use SharpSSH SFTP library for .NET with a proxy?
i am using SharpSSH library to upload files to a SFTP server. I can do it fine through my home PC, but from my work's PC, I can not access the server. After contacting the sysadmins (located in ...
3
votes
1answer
1k views
What are the key file formats of JSch and sharpSSH?
I'm looking at setting up public key client and server authentication for SFTP using the JSch library (or actually the sharpSSH C# port of it). Unfortunately I cannot find any documentation for the ...
0
votes
1answer
609 views
can not rename remote file using sharpssh
i wrote like the following code.
but this code is not available...
when i execute, occur.
if anyone knows something, give me advice pls...
thanks in advance.
void sftp_OnTransferEnd(string src, ...
1
vote
0answers
557 views
SharpSSH Timeout on Connect
I'm using SharpSSH to connect to a Fedora web server to upload/download/delete files. I was using Ubuntu before and had no problems, but with Fedora I'm starting to get these timeouts.
It happens ...
1
vote
1answer
353 views
SharpSSH - setting connection “trust” to true
There have been plenty of articles on using the SharpSSH component but i nonetheless want to ask this as i cannot find the answer from the gazillion articles and blog posts over the net and at stacko. ...
0
votes
2answers
497 views
SharpSSH .. how to determine if a process is finished
Im using SHARPSSH SshShell, i was able to connect to my unix box .. i was able to issue my commands (although having a problem verifying the result)
I was able to issue a TAR command , my problem ...
1
vote
1answer
630 views
Using SSH private key 1.1 on Tamir .Net SSH library
I'm tasked with replacing a Unix Java application that loads files onto a SSH server with a C#.Net application using Tamir's OpenSSH library. The SSH server accepts a key that uses "SSH PRIVATE KEY ...
1
vote
1answer
4k views
Use SharpSSH to download a file from a SFTP server?
I am using SharpSSH (http://www.tamirgal.com/blog/page/SharpSSH.aspx) to upload a file to some sftp server. This works nice. Now I want to download a file and I guess the Get method can be used for ...
1
vote
0answers
278 views
SharpSSH shell thread dies on Read()
I'm attempted to use SharpSSH's SSHShell class, but the thread dies somewhere in the stream on a read when the buffer is empty. Looks like they use PipeInputStream for the stream.
I'm calling the ...


