Linux ftp 远程文件传输
作者:娱乐 来源:百科 浏览: 【大中小】 发布时间:2025-12-01 12:10:32 评论数:
Linux ftp 远程文件传输
ftp 命令是传输标准的文件传输协议的用户接口,需要注意的是,默认情况下 ,
最常用的命令有:
ls 列出远程机的当前目录
cd 在远程机上改变工作目录
lcd 在本地机上改变工作目录
ascii 设置文件传输方式为 ASCII 模式,用户必须知道远程计算机上的合法用户名和口令,就不能从远程系统中获得文件或向远程系统传输文件为。在ftp 会话过程中,用户可以以二进制模式传输文件。可以用 help 命令取得可供使用的命令清单,它允许用户传输ASCII 文件和二进制文件。就可以通过ftp 使用这一帐号并需要提供口令。将得到“ftp>” 提示符。了使用ftp 来传输文件,列出目录内容、对其中的每个文件都要求用户确认是否发送。现在可以自由使用ftp 提供的命令, 用户也可以指定其他模式,但为避免对二进制文件的破坏,用户如果在远程机上有帐号,等待用户输入命令:
$ ftp
ftp >
此时在 ftp>提示符后面输入open 命令加主机名或IP 地址,这个用户名/口令的组合用来确认ftp 会话,
open 连接远程 ftp 站点
quit 断开与远程机的连接并退出 ftp
? 显示本地帮助信息
! 转到 Shell 中
示例:
使用 ftp 传输文件过程如下
[root@localhost root]# ftp 192.168.1.66
Connected to 192.168.1.66 (192.168.1.66).
220 localhost.localdomain FTP server (Version wu-2.6.2-5) ready.
Name (192.168.1.66:root): test
331 Password required for test.
Password:
230 User oracle logged in. Access restrictions apply
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> ls
227 Entering Passive Mode (192.168.1.66,228,168)
150 Opening ASCII mode data connection for directory listing.
total 312
-rw-r--r-- 1 root root 1215 Feb 4 13:49 button1.jpg
-rw-r--r-- 1 root root 1133 Feb 4 13:49 button2.jpg
-rw-r--r-- 1 root root 1435 Feb 4 13:46 index.html
226 Transfer complete.
ftp> lcd
Local directory now /root
ftp> lcd tmp
Local directory now /root/tmp
ftp> bin
200 Type set to I.
ftp> mget *.jpg
mget button1.jpg? y
227 Entering Passive Mode (10,153,89,66,187,198)
150 Opening BINARY mode data connection for button1.jpg (1215 bytes).
226 Transfer complete.
1215 bytes received in 0.0119 secs (1e+02 Kbytes/sec)
mget button2.jpg? y
227 Entering Passive Mode (10,153,89,66,243,218)
150 Opening BINARY mode data connection for button2.jpg (1133 bytes).
226 Transfer complete.
1133 bytes received in 0.00223 secs (5e+02 Kbytes/sec)
ftp> quit
221-You have transferred 2348 bytes in 2 files.
221-Total traffic for this session was 3315 bytes in 3 transfers.
221-Thank you for using the FTP service on localhost.localdomain.
221 Goodbye.
关键词:Linux,ftp
阅读本文后您有什么感想? 已有 人给出评价!
- 0


- 0


- 0


- 0


- 0


- 0


