其他分享
首页 > 其他分享> > 交换机通过SFTP进行文件操作

交换机通过SFTP进行文件操作

作者:互联网

组网图形

 

 通过SFTP进行文件操作简介

组网需求

配置思路

操作步骤

<HUAWEI> system-view
[HUAWEI] sysname SSH_Server
[SSH_Server] dsa local-key-pair create   //生成本地DSA密钥对。
Info: The key name will be: SSH_Server_Host_DSA.                                                                                
Info: The key modulus can be any one of the following : 1024, 2048.                                                            
Info: If the key modulus is greater than 512, it may take a few minutes.                                                            
Please input the modulus [default=2048]:   //直接回车,使用缺省密钥对长度(2048位)。                                                
Info: Generating keys...                                                                                                            
Info: Succeeded in creating the DSA host keys. 
[SSH_Server] sftp server enable   //使能SFTP服务器功能。
[SSH_Server] user-interface vty 0 14   //进入VTY 0~VTY 14用户界面视图。
[SSH_Server-ui-vty0-14] authentication-mode aaa   //配置VTY 0~VTY 14的用户认证方式为AAA认证。
[SSH_Server-ui-vty0-14] protocol inbound ssh   //配置VTY 0~VTY 14的用户界面支持SSH协议。
[SSH_Server-ui-vty0-14] quit
[SSH_Server] ssh user client001 authentication-type password   //配置SSH用户的认证方式为密码认证。
[SSH_Server] ssh user client001 service-type sftp   //配置SSH用户的服务方式为SFTP。
[SSH_Server] ssh user client001 sftp-directory flash:    //配置SFTP服务授权目录为flash:。
[SSH_Server] aaa
[SSH_Server-aaa] local-user client001 password irreversible-cipher Helloworld@6789   //配置登录密码为Helloworld@6789。
[SSH_Server-aaa] local-user client001 privilege level 15   //配置用户级别为15级。
[SSH_Server-aaa] local-user client001 service-type SSH   //配置用户的服务方式为SSH。
[SSH_Server-aaa] quit

  只有在用户终端安装了OpenSSH软件后,Windows命令行提示符才能识别OpenSSH相关命令

  

 

  注意:请使用与当前终端操作系统相匹配的OpenSSH版本,否则可能会导致通过SFTP方式访问交换机失败。

标签:文件,14,配置,Server,交换机,SSH,VTY,SFTP
来源: https://www.cnblogs.com/zhangwencheng/p/13884134.html