ensp-配置telnet和ssh

telnet远程登陆实验

实验拓扑:
ensp-配置telnet和ssh_第1张图片AR1:

[AR1]telnet server enable 
[AR1]user-interface vty 0 4  #配置最多5个终端连接

方式一:直接登陆

此种方式,亲测不能实现,没有这种方式,只有两种模式,分别是password、aaa

方式二:password方式,需要提供密码

[AR1]telnet server enable
[AR1]user-interface vty 0 4  #最多提供5个终端连接
[AR1-ui-vty0-4]authentication-mode password 
Please configure the login password (maximum length 16):huawei123
[AR1-ui-vty0-4]user privilege level 3

ensp-配置telnet和ssh_第2张图片

方式三:aaa方式,需要提供账号和密码

[AR1]user-interface vty 0 4
[AR1-ui-vty0-4]authentication-mode aaa
[AR1-ui-vty0-4]qu
[AR1]aaa
[AR1-aaa]local-user huawei password cipher huawei123
Info: Add a new user.

ensp-配置telnet和ssh_第3张图片

ssh远程登陆

实验拓扑:
ensp-配置telnet和ssh_第4张图片

先配置服务器R2

1.配置接口IP

2.配置ssh远程管理:

[R2]stelnet server enable 开启SSH协议
[R2]rsa local-key-pair create 创建加密报文的密钥对
Input the bits in the modulus[default = 512]:1024

[R2]
[R2]aaa
[R2-aaa]local-user user-ssh password cipher huawei123
[R2-aaa]local-user user-ssh privilege level 2
[R2-aaa]local-user user-ssh service-type ssh 创建ssh用户
[R2-aaa]quit
[R2]user-interface vty 0 4
[R2-ui-vty0-4]authentication-mode aaa
[R2-ui-vty0-4]protocol inbound ssh 开启vty线路的ssh访问功能
[R2-ui-vty0-4]quit
[R2]ssh user user-ssh authentication-type all 定义ssh用户的认证模式

再配置客户端R1

1.配置接口IP

2.通过ssh登录R2:

[R1]ssh client first-time enable
[R1]stelnet 12.1.1.254
Please input the username:user-ssh

Continue to access it? (y/n)[n]:y

Save the server’s public key? (y/n)[n]:y

Enter password:

<R2>
(ssh远程登录成功)

(telnet远程管理实现)

参考文章:
https://blog.csdn.net/ccnuacmhdu/article/details/80920110
https://www.crdre.cn/326.html/

你可能感兴趣的:(网络工程)