excuse me

i use Rebex Total Pack for .NET (trial)

How do I make sure to use SFTP upload API to Transfer Data from client to Server is Using the SSH procotl to encrypt the File

Imports Rebex.Net
Public Class Form1
    Dim client As New Sftp
        Private Sub btnConnect_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnConnect.Click
        client.Connect("192.168.5.59")
        client.Login("Sftp", "test123")
        client.PutFile("D:\temp\1.txt", "1.txt")

        End Sub  
    End Sub

End Class

asked 01 Apr '11, 02:53

flagleaf's gravatar image

flagleaf
16
accept rate: 0%


When you use the SFTP protocol using our API, the file is always transferred over an encrypted SSH channel. It's not possible to disable the encryption - it's always on.

(Please note that before logging into an SFTP/SSH server, you should always check Sftp object's Fingerprint property to make sure you are communicating with the right server.)

link

answered 01 Apr '11, 10:12

Lukas%20Pokorny's gravatar image

Lukas Pokorny ♦♦
2.4k28
accept rate: 31%

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×144

Asked: 01 Apr '11, 02:53

Seen: 783 times

Last updated: 01 Apr '11, 10:12