On April 1, 2021, we are moving all of our QuotaGuard Support Documentation to
https://quotaguard.github.io/qg-docs/
Please Update Your Support Bookmarks
Documentation for this article will be maintained at
https://quotaguard.github.io/qg-docs/dotnet-sftp.html
Please click on the above link to ensure you are reading
the most recent and updated documentation.
Secure FTP allows you to transfer data securely between servers.
You can use the Renci SFTP library to route SFTP transfers via QuotaGuard Static from your .NET app, allowing you to lock down access to our Static IP addresses.
string host = "sftp.acme.com";
string username = "sftpuser";
string password = "sftppass";
var proxy_host = "us-east-1-static-brooks.quotaguard.com";
var proxy_username = "quotaguardXXX";
var proxy_password = "abcdefghijk";
int port = 22;
ConnectionInfo infoConnection = newConnectionInfo(host,
port,
username,
ProxyTypes.Socks5,
proxy_host,
1080,
proxy_username,
proxy_password,
newPasswordAuthenticationMethod(username, password));
try {
SftpClient client = newSftpClient(infoConnection);
client.Connect();
string upload_file = FileUpload.FileName;
client.UploadFile(FileUpload.PostedFile.InputStream, upload_file, true);
} catch (Exception ex) {
ex.ToString();
}
This allows you to access an SFTP server that requires a known IP address from cloud platforms, like Microsoft Azure.