【ecos学习4】[转]ubuntu 11.04 tftp 设置

安装 TFTP 服务

sudo apt-get install xinetd
sudo apt-get install tftp-hpa
sudo apt-get install tftpd-hpa

修改 TFTP 设置参数

sudo gedit /etc/default/tftpd-hpa

# 修改内容如下
TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/opt/tftpdroot"
TFTP_ADDRESS="0.0.0.0:69"
TFTP_OPTIONS="--secure -c"

TFTP_DIRECTORY:

  TFTP 服务目录,可自由指定,需要注意的是此目录的权限,最好设置为 rwx

TFTP_OPTIONS:

  "-c" 选项为在 TFTP 目录下可写入,若不设置此项,在 put 命令时将提示错误

注意: 两个参数之间必须加空格,否则会造成如下错误

           Error code 2: Only absolute filenames allowed

TFTP 服务操作指令

# 启动 TFTP 服务
sudo /etc/init.d/tftpd-hpa start
# 停止 TFTP 服务
sudo /etc/init.d/tftpd-hpa stop
# 重新启动 TFTP 服务
sudo /etc/init.d/tftpd-hpa restart

测试

在 TFTPROOT 目录创建 test0 文件, 在当前目录创建 test1 文件

# 连接 TFTP 服务器 (本机)
tftp localhost
# 从 TFTP 服务目录中获取 test0 文件到当前目录
tftp>get test0
# 将当前目录中的 test1 文件发送至 TFTP 服务目录
tftp>put test1
# 退出
tftp>q

测试成功后可在当前目录及 TFTP 指定目录中找到 test0, test1 两个文件 

 

安装过程中出现的问题及原因:
# /etc/default/tftpd-hpa

TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/srv/tftp/tftproot"
TFTP_ADDRESS="0.0.0.0:69"
TFTP_OPTIONS="--secure -c"

现象一:
tftp> get test.log
Transfer timed out.
原因:
tftpd服务没有启动

现象二
tftp> put test2
Error code 0: Permission denied
原因:
TFTP_DIRECTORY="/srv/tftp/tftproot" 路径中 tftproot 没有权限.

现象三:
tftp> put ex070416.log
Error code 1: File not found
原因:
指定的文件不存在;或tftpd启动参数中没有指定-c选项,允许上传文件 (TFTP_OPTIONS="--secure -c")

现象四:
tftp> get test.log
Error code 2: Only absolute filenames allowed
原因:
TFTP_OPTIONS="--secure -c" 两参数之间要有2空格--secure -c

 

转:

http://www.cnblogs.com/ouuy/archive/2011/09/26/2192362.html

转载于:https://www.cnblogs.com/galoishelley/p/3441803.html

你可能感兴趣的:(【ecos学习4】[转]ubuntu 11.04 tftp 设置)