tftp服务器的内容,不知道大家现在掌握的如何。那么对于它的一些基本的概念和原理,我们这里都不在进行讲解,这次,主要针对ubuntu tftp服务器安装的内容,进行一下具体的阐述。
ubuntu tftp服务器安装1. 安装tftpd(tftp服务器)、tftp(tftp客户端)以及xinetd(超级服务器)
- #sudo apt-get install tftpd tftp xinetd
ubuntu tftp服务器安装2. 创建/etc/xinetd.d/tftp文件,并在文件中添加如下内容
- service tftp
- {
- protocol = udp
- port = 69
- socket_type = dgram
- wait = yes
- user = nobody
- server = /usr/sbin/in.tftpd
- server_args = /tftpboot
- disable = no
- }
ubuntu tftp服务器安装3. 创建tftp服务器的根目录
- # sudo mkdir /tftpboot
- # sudo chmod -R 777 /tftpboot
- # sudo chown -R nobody /tftpboot
ubuntu tftp服务器安装4. 通过xinetd超级服务器启动tftpd
- # sudo /etc/init.d/xinetd start
ubuntu tftp服务器安装5. 测试
- # tftp 127.0.0.1 > get <filename in the /tftpboot>