ubuntu 构建tftp服务器

524阅读 0评论2010-03-08 waderwang
分类:LINUX

1安装tftp服务器。
 
 sudo apt-get install xinetd tftpd

2 修改tftp的配置文件

   sudo gvim /etc/xinetd.conf

加入:
service tftp
{
    protocol        = udp
    port            = 69
    socket_type     = dgram
    wait            = yes
    user            = nobody
    server          = /usr/sbin/in.tftpd
    server_args     = /tftpboot
    disable         = no
}
保存退出。
start the service.

sudo /etc/init.d/xinetd start



3 建立存放文件的目录。
cd /
sudo mkdir /tftpboot
sudo chmod 777 -R /tftpboot
sudo chown nobody -R /tftpboot

把需要共享的数据放到 /tftpboot中。
for example, 
echo "this is a test" > /tftpboot/a.txt


4 test.
tftp 127.0.0.1
tftp> get a.txt

tftp> put b.c
.....

5 enjoy yourself....
 


上一篇:最强大的网络抓包工具wireshark
下一篇:u-boot向内核传递参数解析