Chinaunix首页 | 论坛 | 博客
  • 博客访问: 349585
  • 博文数量: 102
  • 博客积分: 3140
  • 博客等级: 中校
  • 技术积分: 680
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-28 11:44
个人简介

开阔未来

文章分类

全部博文(102)

文章存档

2015年(10)

2014年(1)

2013年(1)

2012年(4)

2011年(8)

2010年(24)

2009年(51)

2008年(3)

我的朋友

分类: LINUX

2009-02-03 17:15:31

Ubuntu下tftp的安装

[日期:2007-08-26]

来源:Linux公社  作者:Linuxidc

1. sudo apt-get install tftp-hpa tftpd-hpa

   sudo apt-get install xinetd

   sudo apt-get install  netkit-inetd

2. cd /

      sudo mkdir /tftpboot

       sudo chmod 777 /tftpboot

3. sudo in.tftpd -l /tftpboot

    这样tftp服务器就启动了,下面可以做一个测试

4. cd /tftpboot

    touch test

    建立一个文件

5. cd /home/usrname

    登录另一个目录

6. tftp 192.168.0.59

    换成自己的ip

   > get /tftpboot/test

打开目录 /etc/xinetd.d/

新建文件tftp

tftp内容:

service tftp

{

    disable = no

    socket_type     = dgram

    protocol            = udp

    wait                    = yes

    user             = root

    server          = /usr/sbin/in.tftpd

    server_args     = -s /tftpboot -c

    per_source      = 11

    cps         = 100 2

}

重新启动服务:

sudo /etc/init.d/xinetd restart

sudo in.tftpd -l /tftpboot

安装过程中出现的问题及原因

现象一:

tftp> get test.log

Transfer timed out.

原因:

tftpd服务没有启动

现象二:

tftp> get test.log

Error code 2: Only absolute filenames allowed

原因:

在/etc/xinetd.d/tftpd中设置的server_args为/etc/default/tftpd-hpa

cat /etc/default/tftpd-hpa

#Defaults for tftpd-hpa

RUN_DAEMON="no"

OPTIONS="-s /home/tftpd -c -p -U 077 -u tftpd"

设置的时候只要将server_args=改为你自己设定的服务器文件夹就行了

现象三:

tftp> put ex070416.log

Error code 1: File not found

原因:

指定的文件不存在;或tftpd启动参数中没有指定-c选项,允许上传文件

 

阅读(1216) | 评论(2) | 转发(0) |
给主人留下些什么吧!~~

raul.liu2012-01-05 09:17:57

没有这么复杂, 只是安装完tftpd-hpa后,

修改/etc/default/tftpd-hpa:

TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/tftpboot"
TFTP_ADDRESS="0.0.0.0:69"
#TFTP_OPTIONS="--secure"
TFTP_OPTIONS="-l -c -s"

然后, sudo /etc/init.d/tftpd-hpa restart

就可以, 如果遇到 permission denied, 请检查你发tftp命令的路径是不是可写

chinaunix网友2010-10-24 12:20:12

ubuntu 10, this configuration will error: "Error code 1: File not fount", need to change: /etc/default/tftpd-hpa TFTP_DIRECTORY="/var/lib/tftpboot" change to your directory