Ubuntu 创建 Secure CRT连接

1. 安装ubuntu

2. 安装Secure CRT  //Win端

3. 安装sshd    //ubuntu端

安装

$ sudo apt-get installopenssh-server

启动

$ /etc/init.d/ssh start          或者 $ service sshd start

重启

$ /etc/init.d/ssh restart        或者 $ service sshd restart

关闭

$ /etc/init.d/ssh stop        或者 $ service sshd stop

查看状态

$ service sshd status

Ubuntu 创建 Secure CRT连接

running表示已开启。

4. 查看虚拟机ip

$ ifconfig

Ubuntu 创建 Secure CRT连接

检查在Win上是否能ping通,下图是ping通的

Ubuntu 创建 Secure CRT连接

5. 打开CRT软件连接

点击快速连接Quick Connect, 然后输入以下信息

 Ubuntu 创建 Secure CRT连接

 点击Connect, 出现下图,点击Accept & Save

Ubuntu 创建 Secure CRT连接

然后,输入密码,密码为ubuntu密码

Ubuntu 创建 Secure CRT连接

6. 连接成功

 Ubuntu 创建 Secure CRT连接

6.1 也可以用FileZilla软件连接,输入相应信息即可连接

Ubuntu 创建 Secure CRT连接

 6.2 也可以用UltraEdit连接

Ubuntu 创建 Secure CRT连接

 

Note:

SFTP 与 FTP区别

1、安全通道

FTP 不提供任何安全通道来在主机之间传输文件;而SFTP协议提供了一个安全通道,用于在网络上的主机之间传输文件。

2、使用的协议

FTP使用TCP / IP协议。而,SFTP是SSH协议的一部分,它是一种远程登录信息。

3、链接方式

FTP使用TCP端口21上的控制连接建立连接。而,SFTP是在客户端和服务器之间通过SSH协议(TCP端口22)建立的安全连接来传输文件。

 

 

 

上一篇:软件测试方案的编写


下一篇:SFTP 工具类