tftp服务

来源:互联网 发布:如何打开445端口 编辑:程序博客网 时间:2024/06/06 09:47
*用于局域网内的共享

[安装及配置]

[root@Server ~]# yum install tftp-server.x86_64 -y[root@Client ~]# yum install tftp.x86_64 -y

[配置文件]

[root@Server ~]# vim /etc/xinetd.d/tftp 13         server_args             = -s /var/lib/tftpboot  -c#-s指定共享目录|-c开启tftp服务上传功能[root@Server tftpboot]# systemctl restart tftp.service[root@Server ~]# cd /var/lib/tftpboot/[root@Server tftpboot]# ls[root@Server tftpboot]# touch file232 linux938[root@Server tftpboot]# lsfile232  linux938[root@Server tftpboot]# chmod 777 /var/lib/tftpboot/  -R[root@Server tftpboot]# 

客户端

*不能上传目录|不能指定下载路径[root@Client mnt]# lstftpput[root@Client mnt]# tftp 172.25.66.100tftp> ls?Invalid commandtftp> get file232Transfer timed out.tftp> put tftpputTransfer timed out.tftp> quit[root@Client mnt]# lsfile232  tftpput[root@Client mnt]# 

——END——

原创粉丝点击