系统相关
首页 > 系统相关> > 02_ubuntu安装tftp service

02_ubuntu安装tftp service

作者:互联网

ubuntu tftp service 安装配置

  1. 安装tftp-server
sudo apt-get install tftpd-hpa (tftp service ) #服务端
sudo apt-get install tftp(tftp client)#客户端
  1. 配置TFTP服务器
sudo vim /etc/default/tftpd-hpa
#将原来的内容改为:
TFTP_USERNAME="tftp"
TFTP_ADDRESS="0.0.0.0:69"
TFTP_DIRECTORY="tftp根目录" #服务器目录,需要设置权限为777,chomd 777
TFTP_OPTIONS="-l -c -s"
  1. 重新启动TFTP服务
sudo service tftpd-hpa restart
  1. 测试
tftp 127.0.0.1 #
>get 1.c
>put 2.c

标签:02,service,get,sudo,tftp,tftpd,TFTP
来源: https://www.cnblogs.com/liujiang0623/p/13934603.html