Linux:ftp文件传输实验 实验实现 # 安装对应软件 [root@server120 ~]# dnf install vsftpd -y [root@server120 ~]# dnf install lftp -y# 关闭防火墙以及开启服务 [root@server120 ~]# systemctl disable --now firewalld [root@server120 ~]# systemctl enable --now vsftpd# 编辑主配置文件 [root@server120 ~]# vim /etc/vsftpd/vsftpd.conf # 主要修改这两行 anonymous_enable=yes # 允许匿名用户登录anon_upload_enable=YES # 允许匿名用户上传文件[root@server120 ~]# chmod 777 /var/ftp/pub/[root@server120 ~]# touch /mnt/file[root@server120 ~]# ls -l /var/ftp/total 0 -rw-r--r-- 1 root root 0 May 13 18:53 file drwxrwxrwx 2 root root 20 May 13 18:54 pub[root@server120 ~]# lftp 172.25.254.120 lftp 172.25.254.120:~> ls -rw-r--r-- 1 0 0 0 May 13 10:53 file drwxrwxrwx 2 0 0 20 May 13 10:54 pub lftp 172.25.254.120:/pub> put /etc/passwd lftp 172.25.254.120:/> cd pub/ lftp 172.25.254.120:/pub> ls -rw------- 1 14 50 2086 May 13 10:54 passwd