C# - 개인 키 보안의 SFTP를 이용한 파일 업로드
예전에 FTP 파일 업로드에 대한 간단한 예제를 다뤘는데요.
FtpWebRequest 타입을 이용해 FTP 파일 업로드
; https://www.sysnet.pe.kr/2/0/2873
그럼 SFTP는 어떻게 할까요? NuGet으로부터 Renci.SshNet 패키지를 다운로드하면 ^^ 쉽게 해결할 수 있습니다. 게다가 다음과 같이 사용법을 설명한 글들도 많이 있고. ^^
Upload File to SFTP Site with C# in Visual Studio .NET
; https://www.codeproject.com/Tips/1111060/Upload-File-to-SFTP-Site-with-Csharp-in-Visual-Stu
Uploading a file using SFTP in C#
; http://blog.deltacode.be/2012/01/05/uploading-a-file-using-sftp-in-c-sharp/
자, 그럼 간단하게 NuGet으로부터 SSH.NET을 받아 볼까요!
Install-Package SSH.NET -Version 2016.0.0
// SSH.NET is a Secure Shell (SSH) library for .NET, optimized for parallelism.
그런 다음, 이렇게 코딩을 작성하면 됩니다.
private void SecureFtpConnect()
{
var connectionInfo = new Renci.SshNet.ConnectionInfo(...ServerAddress...,
...UserId...,
new PrivateKeyAuthenticationMethod(...UserId..., new PrivateKeyFile(...KeyFilePath..., ...Passphrase...)));
using (var client = new SftpClient(connectionInfo))
{
client.Connect();
string serverPath = string.Format("{0}/{1}", ...ServerDirectory..., ...FileName...);
Stream stream = new MemoryStream(File.ReadAllBytes(...LocalFilePath...));
client.UploadFile(stream, serverPath);
client.Disconnect();
}
}
간단하죠. ^^
첨부 파일은 이전 예제(
FtpWebRequest 타입을 이용해 FTP 파일 업로드) 프로젝트에 위의 SecureFtpConnect를 함께 추가한 것입니다.
따라서 사용법은 다음과 같은 2가지로 나뉩니다.
// 일반 FTP 업로드
FtpUpload.exe [ftpserver] [userid] [userpass] [serverpath] [filename]
// SFTP의 개인키 파일을 이용한 업로드
FtpUpload.exe -secure [ftpserver] [userid] [keyfilepath] [passphrase] [serverpath] [filename]
[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]