OpenSSH : SSH ファイル転送 (Debian)2023/06/14 |
SSH を利用して、暗号化通信によるセキュアなファイル転送をすることができます。
|
|
[1] | SCP (Secure Copy) によるファイルコピーの例です。 |
# 書式 ⇒ scp [オプション] コピー元 コピー先
# ローカルホストの [test.txt] を リモートホスト [www.srv.world] 上の [debian] ユーザーのホームディレクトリ直下へコピーする debian@dlp:~$ scp ./test.txt debian@www.srv.world:~/ debian@10.0.0.30's password: # 接続ユーザーのパスワード test.txt 100% 10 0.0KB/s 00:00 # リモートホスト [www.srv.world] 上の [/home/debian/test.txt] を ローカルホストのカレントディレクトリにコピーする debian@dlp:~$ scp debian@www.srv.world:/home/debian/test.txt ./test.txt debian@10.0.0.30's password: test.txt 100% 10 0.0KB/s 00:00 |
[2] | SFTP (SSH File Transfer Protocol) によるファイル転送です。 SFTP サーバー機能は Debian ではデフォルトで有効になっていますが、もし有効になっていない場合は [/etc/ssh/sshd_config] に [Subsystem sftp /usr/lib/openssh/sftp-server] の行を追加して sshd をリロードすれば OK です。 |
# sftp [オプション] [ユーザー@ホスト名] debian@dlp:~$ sftp debian@www.srv.world debian@www.srv.world's password: # ログインユーザーのパスワード Connected to www.srv.world. sftp> # リモートホストのカレントディレクトリ表示 sftp> pwd Remote working directory: /home/debian # ローカルホストのカレントディレクトリ表示 sftp> !pwd /home/debian # リモートホストのカレントディレクトリのファイル一覧表示 sftp> ls -l drwxrwxr-x 2 debian debian 6 Jun 14 21:33 public_html -rw-rw-r-- 1 debian debian 10 Jun 13 22:53 test.txt # ローカルホストのカレントディレクトリのファイル一覧表示 sftp> !ls -l total 4 -rw-rw-r-- 1 debian debian 10 Jun 14 21:31 test.txt # ディレクトリ移動 sftp> cd public_html sftp> pwd Remote working directory: /home/debian/public_html # ローカルホストのファイルをリモートホストにリネームアップロード sftp> put test.txt debian.txt Uploading test.txt to /home/debian/debian.txt test.txt 100% 10 0.0KB/s 00:00 sftp> ls -l drwxrwxr-x 2 debian debian 6 Jun 14 21:33 public_html -rw-rw-r-- 1 debian debian 10 Jun 14 21:39 debian.txt -rw-rw-r-- 1 debian debian 10 Jun 13 22:53 test.txt # ローカルホストの複数ファイルをリモートホストに一括アップロード sftp> put *.txt Uploading test.txt to /home/debian/test.txt test.txt 100% 10 0.0KB/s 00:00 Uploading test2.txt to /home/debian/test2.txt test2.txt 100% 0 0.0KB/s 00:00 sftp> ls -l drwxrwxr-x 2 debian debian 6 Jun 14 21:33 public_html -rw-rw-r-- 1 debian debian 10 Jun 14 21:39 debian.txt -rw-rw-r-- 1 debian debian 10 Jun 14 21:45 test.txt -rw-rw-r-- 1 debian debian 10 Jun 14 21:46 test2.txt # リモートホストのファイルをローカルホストにダウンロード sftp> get test.txt Fetching /home/debian/test.txt to test.txt /home/debian/test.txt 100% 10 0.0KB/s 00:00 # リモートホストの複数ファイルをローカルホストに一括ダウンロード sftp> get *.txt Fetching /home/debian/debian.txt to debian.txt /home/debian/debian.txt 100% 10 0.0KB/s 00:00 Fetching /home/debian/test.txt to test.txt /home/debian/test.txt 100% 10 0.0KB/s 00:00 Fetching /home/debian/test2.txt to test2.txt /home/debian/test2.txt 100% 10 0.0KB/s 00:00 # リモートホストのカレントディレクトリにディレクトリ作成 sftp> mkdir testdir sftp> ls -l drwxrwxr-x 2 debian debian 6 Jun 14 21:33 public_html -rw-rw-r-- 1 debian debian 10 Jun 14 21:39 debian.txt -rw-rw-r-- 1 debian debian 10 Jun 14 21:45 test.txt -rw-rw-r-- 1 debian debian 10 Jun 14 21:46 test2.txt drwxrwxr-x 2 debian debian 6 Jun 14 21:53 testdir # リモートホストのカレントディレクトリ内のディレクトリ削除 sftp> rmdir testdir rmdir ok, `testdir' removed sftp> ls -l drwxrwxr-x 2 debian debian 6 Jun 14 21:33 public_html -rw-rw-r-- 1 debian debian 10 Jun 14 21:39 debian.txt -rw-rw-r-- 1 debian debian 10 Jun 14 21:45 test.txt -rw-rw-r-- 1 debian debian 10 Jun 14 21:46 test2.txt # リモートホストのファイル削除 sftp> rm test2.txt Removing /home/debian/test2.txt sftp> ls -l drwxrwxr-x 2 debian debian 6 Jun 14 21:33 public_html -rw-rw-r-- 1 debian debian 10 Jun 14 21:39 debian.txt -rw-rw-r-- 1 debian debian 10 Jun 14 21:45 test.txt # ![command] で任意のコマンド実行 sftp> !cat /etc/passwd root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin ..... ..... debian:x:1001:1001::/home/debian:/bin/bash # 終了 sftp> quit 221 Goodbye. |
Sponsored Link |