2013年5月22日水曜日

Busybox の tftp コマンドでファイルをダウンロード

■ busybox の tftp コマンドで tftp サーバからファイルをダウンロードするときのメモ。

$ tftp -r [Remote FILE] -g [HOST]

   -r : Remote FILE (サーバにあるファイル)
   -g : Get file (コマンド)

(例)
$ tftp -r hogehoge.bin -g 192.168.0.1

■ アップロードする場合

サーバ側の事前準備

$ cd /tftpboot/
$ touch remote.txt
$ chmod 777 remote.txt

クライアント側から送信

$ tftp -l local.txt -p 192.168.0.1 -r remote.txt

● busybox, tftp, ダウンロード, オプション, アップロード, download, upload, option

0 件のコメント: