码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu上安装tftp服务

时间:2020-02-12 11:00:00      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:cal   bsp   ubuntu   ftp服务   tftp服务   ftpd   root   配置   add   

1. 安装

sudo apt install tftpd-hpa

 

2.设置工作目录

mkdir ~/tftpdroot

chmod 777 tftpdroot

 

3.修改配置文件

sudo vi /etc/default/tftpd-hpa

 

# /etc/default/tftpd-hpa

TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/home/shine/tftpdroot" 
TFTP_ADDRESS="0.0.0.0:69"
TFTP_OPTIONS="-l -c -s" 

4. 重启服务

sudo service tftpd-hpa restart

5. Windows中使用tftp

使用tfptd64.请从以下地址下载

http://tftpd32.jounin.net/tftpd32.html

5.客户端busybox中使用tftp

tftp [option] ... host [port]
-g  (get)
-p  (put)
-l  (local file)
-r  (remote file)
tftp -g -r test.txt 192.168.1.12
tftp -p -l test.wav 192.168.1.12

  

Ubuntu上安装tftp服务

标签:cal   bsp   ubuntu   ftp服务   tftp服务   ftpd   root   配置   add   

原文地址:https://www.cnblogs.com/shinedream/p/12298010.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!