RedHat Linux 9 下 TFTP 搭建[服务器安全]
本文“RedHat Linux 9 下 TFTP 搭建[服务器安全]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
TFTP是用来下载远程文件的最简单网络协议,基于UDP协议完成.
利用RedHat Linux 9中的第3张光盘.以下是root登录操作
(1)安装TFTP-server
# mount /mnt/cdrom
# cd /mnt/cdrom/RedHat/RPMS
# rpm -ivh tftp-*.i386.rpm
# cd ~
# umount /mnt/cdrom
(2)改正文件
# vi /etc/xinetd.d/tftp
service tftp
{
socket_type =dgram
protocol =udp
wait =yes
user =root
server =/usr/sbin/in.tftpd
server_args =-s /home/liuby/tftpboot -c # 改正 注:-s指定的目录,-c表示可以成立文件
disable =no # 改正
per_source =11
cps =100 2
flags =IPv4
}
(3)启动服务
成立TFTP Server 服务器
# mkdir -m 777 /home/liuby/tftpboot
# service xinetd restart
(4)在号令行下 setup 在system services中(或ntsysv)挑选tftp,号令行lokkit关闭firewall
(5)重新启动TFTP
# service xinetd restart
(6)测试
# tftp 192.168.0.2
tftp>get
tftp>put
tftp>q
(7)目标板测试(以下目标板上操作)
假定服务器/home/liuby/tftpboot下有zImage,或穿插编译的利用程序helloworld.o等
# tftp 192.168.0.2
tftp>get helloworld.o
tftp>q
# chmod +x helloworld.o
# ./helloworld.o
(8)mpc8349板下载server(59.64.155.12)的hello.o文件
# tftp -g 59.64.155.12 -r hello.o
# chmod +x hello.o
# ./hello.o
+++++++++++++++++++++++++++++++++++++++++++++++
以上是“RedHat Linux 9 下 TFTP 搭建[服务器安全]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |