SecureCRT下文件传输
合集下载
相关主题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
Fra Baidu bibliotek
SecureCRT 下文件传输的三种方法应该都算比较简单吧! 附录: SecureCRT 中 sftp 命令介绍 命令 open [user@]host[:port] exit quit help version ascii binary type [transfer-mode] get [-a | -b] remote-path put [-a | -b] local-path view remote-path cd path lcd path pwd lpwd detail remote-path ldetail local-path ls [options] [path] lls [options] [path]
作用 维护命令 连接远程服务器 退出 sftp 退出 sftp 帮助 显示 sftp 协议版本 文件传输 以 ASCII 方式传输文件 以 binary 方式传输文件 显示或设置文件传输模式 下载文件,ascii (-a) 或 binary (-b)模式 上传文件,ascii (-a) 或 binary (-b)模式 下载并且打开文件 文件/目录管理 转到远程服务器的 path 目录下 转到本地的 path 目录下 显示远程服务器的工作目录 显示本地的工作目录 显示远程服务器上的文件或目录信息 显示本地的文件或目录信息 显示远程服务器中的目录信息 显示本地的目录信息
SecureCRT 下文件传输
1. Scp 方法 scp [-1246BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file] [-l limit] [-o ssh_option] [-P port] [-S program] [[user@]host1:]file1 [...] [[user@]host2:]file2 例子如下: � Copy 单个文件 [root@hikvision ~]# scp test.txt root@172.4.4.50:/home/yfx/ � Copy 目录,一定要加上-r 选项 [root@hikvision ~]# scp -r test root@172.4.4.50:/home/yfx/ PS:scp 方法好像只能在 linux 服务端之间进行文件传输。 下面的两种方法可以在客户端(Windows)与服务端(linux)之间互相传输。 2. Zmodem 传输文件 你只要设置一下上传和下载的默认目录就行: 【选项】-->【会话选项】-->【X/Y/Zmodem】下设置上传和下载的目录。 � 发送文件到客户端(Windows): sz filename � 从客户端(windows)上传文件到 linux 服务端: rz 例子如下: � 下载文件到客户端(Windows): [root@hikvision ~]# sz install.log rz zmodem Ctrl+C 100% 48 KB 48 KB/s 00:00:01 文件传输到上面设置的下载目录下。 上传文件到 linux 服务端: [root@hikvision ~]# rz rz waiting to receive. zmodem Ctrl+C 然后弹出如下图所示的对话框: 0 Errors
Made by yfx
3
ln [-s] existingpath linkpath rm path lrm path rmdir path lrmdir path mkdir path lmkdir path mv oldpath newpath chgrp group path chmod mode path chown owner path
�
Made by yfx
1
选中上传的文件,点【添加】按钮,然后点【确定】按钮即可。 3. sftp 传输文件 你只要设置一下本地和远程的默认目录就行: 【选项】-->【会话选项】-->【SSH2】-->【】下设置本地和远程的目录。 打开 sftp 标签页的方法: 【文件】-->【连接 sftp 标签页】 ,或者 Alt+P 也行。 � 发送文件到客户端(Windows): get [-a | -b] remote-path � 从客户端(windows)上传文件到 linux 服务端: put [-a | -b] local-path 例子如下: � 下载文件到客户端(Windows): sftp> get install.log Downloading install.log from /root/install.log 100% 48KB 48KB/s 00:00:00 /root/install.log: 49923 bytes transferred in 0 seconds (48 KB/s) � 下载文件夹到客户端(Windows): sftp> get -r /home/Servers/VRM //传输文件夹加上-r 选项。 � 上传文件到 linux 服务端: sftp> put D:/test.txt Uploading test.txt to /root/test.txt
硬/符号链接远程文件 删除远程文件 删除本地文件 删除远程目录 删除本地目录 创建远程目录 创建本地目录 移动远程文件 改变文件的所属群组 改变文件的可写、可读、可执行等属性 改变文件的所有者
Made by yfx
4
2
Made by yfx
�
100% 15 bytes 15 bytes/s 00:00:00 D:/test.txt: 15 bytes transferred in 0 seconds (15 bytes/s) 如果文件路径中有空格,则使用"": sftp> put "d:/My Documents/test.txt" Uploading test.txt to /root/test.txt 100% 20 bytes 20 bytes/s 00:00:00 d:/My Documents/test.txt: 20 bytes transferred in 0 seconds (20 bytes/s) 上传文件夹到 linux 服务端: sftp> put -r Ogre //传输文件夹加上-r 选项 Uploading ogre.cfg to /root/Ogre/Cthugha/ogre.cfg 100% 535 bytes 535 bytes/s 00:00:00 Cthugha/ogre.cfg: 535 bytes transferred in 0 seconds (535 bytes/s) Uploading ogre.log to /root/Ogre/Cthugha/ogre.log 100% 79KB 79KB/s 00:00:00 Cthugha/ogre.log: 81241 bytes transferred in 0 seconds (79 KB/s)
SecureCRT 下文件传输的三种方法应该都算比较简单吧! 附录: SecureCRT 中 sftp 命令介绍 命令 open [user@]host[:port] exit quit help version ascii binary type [transfer-mode] get [-a | -b] remote-path put [-a | -b] local-path view remote-path cd path lcd path pwd lpwd detail remote-path ldetail local-path ls [options] [path] lls [options] [path]
作用 维护命令 连接远程服务器 退出 sftp 退出 sftp 帮助 显示 sftp 协议版本 文件传输 以 ASCII 方式传输文件 以 binary 方式传输文件 显示或设置文件传输模式 下载文件,ascii (-a) 或 binary (-b)模式 上传文件,ascii (-a) 或 binary (-b)模式 下载并且打开文件 文件/目录管理 转到远程服务器的 path 目录下 转到本地的 path 目录下 显示远程服务器的工作目录 显示本地的工作目录 显示远程服务器上的文件或目录信息 显示本地的文件或目录信息 显示远程服务器中的目录信息 显示本地的目录信息
SecureCRT 下文件传输
1. Scp 方法 scp [-1246BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file] [-l limit] [-o ssh_option] [-P port] [-S program] [[user@]host1:]file1 [...] [[user@]host2:]file2 例子如下: � Copy 单个文件 [root@hikvision ~]# scp test.txt root@172.4.4.50:/home/yfx/ � Copy 目录,一定要加上-r 选项 [root@hikvision ~]# scp -r test root@172.4.4.50:/home/yfx/ PS:scp 方法好像只能在 linux 服务端之间进行文件传输。 下面的两种方法可以在客户端(Windows)与服务端(linux)之间互相传输。 2. Zmodem 传输文件 你只要设置一下上传和下载的默认目录就行: 【选项】-->【会话选项】-->【X/Y/Zmodem】下设置上传和下载的目录。 � 发送文件到客户端(Windows): sz filename � 从客户端(windows)上传文件到 linux 服务端: rz 例子如下: � 下载文件到客户端(Windows): [root@hikvision ~]# sz install.log rz zmodem Ctrl+C 100% 48 KB 48 KB/s 00:00:01 文件传输到上面设置的下载目录下。 上传文件到 linux 服务端: [root@hikvision ~]# rz rz waiting to receive. zmodem Ctrl+C 然后弹出如下图所示的对话框: 0 Errors
Made by yfx
3
ln [-s] existingpath linkpath rm path lrm path rmdir path lrmdir path mkdir path lmkdir path mv oldpath newpath chgrp group path chmod mode path chown owner path
�
Made by yfx
1
选中上传的文件,点【添加】按钮,然后点【确定】按钮即可。 3. sftp 传输文件 你只要设置一下本地和远程的默认目录就行: 【选项】-->【会话选项】-->【SSH2】-->【】下设置本地和远程的目录。 打开 sftp 标签页的方法: 【文件】-->【连接 sftp 标签页】 ,或者 Alt+P 也行。 � 发送文件到客户端(Windows): get [-a | -b] remote-path � 从客户端(windows)上传文件到 linux 服务端: put [-a | -b] local-path 例子如下: � 下载文件到客户端(Windows): sftp> get install.log Downloading install.log from /root/install.log 100% 48KB 48KB/s 00:00:00 /root/install.log: 49923 bytes transferred in 0 seconds (48 KB/s) � 下载文件夹到客户端(Windows): sftp> get -r /home/Servers/VRM //传输文件夹加上-r 选项。 � 上传文件到 linux 服务端: sftp> put D:/test.txt Uploading test.txt to /root/test.txt
硬/符号链接远程文件 删除远程文件 删除本地文件 删除远程目录 删除本地目录 创建远程目录 创建本地目录 移动远程文件 改变文件的所属群组 改变文件的可写、可读、可执行等属性 改变文件的所有者
Made by yfx
4
2
Made by yfx
�
100% 15 bytes 15 bytes/s 00:00:00 D:/test.txt: 15 bytes transferred in 0 seconds (15 bytes/s) 如果文件路径中有空格,则使用"": sftp> put "d:/My Documents/test.txt" Uploading test.txt to /root/test.txt 100% 20 bytes 20 bytes/s 00:00:00 d:/My Documents/test.txt: 20 bytes transferred in 0 seconds (20 bytes/s) 上传文件夹到 linux 服务端: sftp> put -r Ogre //传输文件夹加上-r 选项 Uploading ogre.cfg to /root/Ogre/Cthugha/ogre.cfg 100% 535 bytes 535 bytes/s 00:00:00 Cthugha/ogre.cfg: 535 bytes transferred in 0 seconds (535 bytes/s) Uploading ogre.log to /root/Ogre/Cthugha/ogre.log 100% 79KB 79KB/s 00:00:00 Cthugha/ogre.log: 81241 bytes transferred in 0 seconds (79 KB/s)