TFTPサーバのatftpdをインストールする手順を記載します。
Table of Contents
1 atftpdをインストールする
atftpdパッケージをインストールします。
$ sudo apt install -y atftpd
デフォルトではatftpdはinetdを使用し、/srv/tftpがTFTPサーバのディレクトリになっています。
$ cat /etc/inetd.conf tftp dgram udp wait nobody /usr/sbin/tcpd /usr/sbin/in.tftpd --tftpd-timeout 300 --retry-timeout 5 --mcast-port 1758 --mcast-addr 239.239.239.0-255 --mcast-ttl 1 --maxthread 100 --verbose=5 /srv/tftp
2 atftpでファイルをGETする
atftpパッケージをインストールします。
$ sudo apt install -y atftp
TFTPサーバにファイルを置きます。
$ echo "hello" | sudo tee /srv/tftp/hello.txt
TFTPクライアントのatftpでTFTPサーバからファイルをGETします。
$ echo "get hello.txt" | atftp 127.0.0.1 tftp> get hello.txt tftp> $ cat hello.txt hello