Chinaunix首页 | 论坛 | 博客
  • 博客访问: 15496400
  • 博文数量: 2005
  • 博客积分: 11986
  • 博客等级: 上将
  • 技术积分: 22535
  • 用 户 组: 普通用户
  • 注册时间: 2007-05-17 13:56
文章分类

全部博文(2005)

文章存档

2014年(2)

2013年(2)

2012年(16)

2011年(66)

2010年(368)

2009年(743)

2008年(491)

2007年(317)

分类: 嵌入式

2009-08-21 20:48:18

浅析busybox内置的tftpd服务程序如何配置

server服务器配置
方法1:
# mkdir /gliethttp_tftpd_dir
# cp /bin/busybox /gliethttp_tftpd_dir
# udpsvd -vE 0 69 tftpd -c /gliethttp_tftpd_dir &
// 上面的0表示对所有ip地址都进行侦听
// 如果设置为127.0.0.1那么只能开发板本地arm可以进行ftp
// 比如开发板eth0的的ip地址设为192.168.1.102,那么就不能通过该ip登录
// 所以上面指定ip等于0,那么无论来自127.0.0.1还是192.168.1.102网络地址的
// 数据都能使用tftpd服务器.
// 参数-c表示允许client客户端上传文件到/gliethttp_tftpd_dir根目录[luther.gliethttp]
方法2:
# mkdir /gliethttp_tftpd_dir
# cp /bin/busybox /gliethttp_tftpd_dir
# vi /etc/inetd.conf
69 dgram udp nowait root tftpd tftpd -c /gliethttp_tftpd_dir
# inetd                 // inetd会执行/etc/inetd.conf脚本中的命令行,这样ftpd就作为daemon运行到起来了
(注意:以上2种方式运行的tftpd都不会在ps中看到tftpd进程的运行)


在pc上执行如下测试 (注意:必须使用i386版本busybox的tftp程序才可以进行数据传输,
ubuntu 8.10上默认的tftp因为封包协议问题不能工作,将提示:Error code 0: malformed packet)

1.将pc上的gliethttp.c文件put到arm开发板tftpd的根目录下,并且重命名为gliethttp.pc.c
luther@gliethttp:~$ busybox tftp -l gliethttp.c -r gliethttp.pc.c -p 192.168.1.102
2.将arm开发板tftpd根目录下的busybox拷贝到pc上,重命名为busybox.arm
luther@gliethttp:~$ busybox tftp -l busybox.arm -r busybox -p 192.168.1.102
luther@gliethttp:~$ ll busybox.arm
-rw-r--r-- 1 ubuntu ubuntu 808K 2009-08-21 12:41 busybox.arm


# tftp
BusyBox v1.14.3 (2009-08-10 10:13:59 UTC) multi-call binary

Usage: tftp [OPTION]... HOST [PORT]

Transfer a file from/to tftp server

Options:
        -l FILE Local FILE
        -r FILE Remote FILE
        -g      Get file
        -p      Put file
        -b SIZE Transfer blocks of SIZE octets
阅读(12731) | 评论(2) | 转发(1) |
给主人留下些什么吧!~~

chinaunix网友2009-12-16 20:13:54

BusyBox v1.13.0 (2009-03-02 15:26:58 CST) multi-call binary Usage: tftpd [-cr] [-u USER] [DIR] Transfer a file on tftp client's request. tftpd should be used as an inetd service. tftpd's line for inetd.conf: 69 dgram udp nowait root tftpd tftpd /files/to/serve It also can be ran from udpsvd: udpsvd -vE 0.0.0.0 69 tftpd /files/to/serve Options: -r Prohibit upload -c Allow file creation via upload -u Access files as USER 怎么

donnie02192009-10-14 16:46:15

太感谢了,这个很需要。