Chinaunix首页 | 论坛 | 博客
  • 博客访问: 495745
  • 博文数量: 102
  • 博客积分: 4001
  • 博客等级: 上校
  • 技术积分: 756
  • 用 户 组: 普通用户
  • 注册时间: 2008-08-21 16:01
文章分类

全部博文(102)

文章存档

2011年(1)

2010年(1)

2009年(56)

2008年(44)

我的朋友

分类: LINUX

2008-08-22 16:29:32

Install tftpd-hpa and the client tftp-hpa

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



uncomment the configuration in /etc/inetd.conf

tftp           dgram   udp     wait    root  /usr/sbin/in.tftpd /usr/sbin/in.tftpd -s /var/lib/tftp    boot


to

#tftp           dgram   udp     wait    root  /usr/sbin/in.tftpd /usr/sbin/in.tftpd -s /var/lib/tftp    boot



and then configure it via /etc/default/tftpd-hpa as a daemon and set the default tftpboot directory as /tftpboot

#Defaults for tftpd-hpa
RUN_DAEMON="yes"
OPTIONS="-l -s /tftpboot"



you'd better stop or restart inetd here

$ inetd stop



restart tftpd-hpa as a daemon

$ /etc/init.d/tftpd-hpa restart



now, you can put something in /tftpboot and use tftp to get it

$ mkdir /tftpboot
$ cd /tftpboot
$ touch README
$ cd /tmp
$ tftp
tftp> get README
tftp> quit



if you can get README, cong~, you are successful :-)

that's all.
阅读(1956) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~