华为设备ssh协议配置要点儿

server/2024/12/17 17:30:54/

*红宝书------华为SSH协议的配置的要点*

ssh_4">路由器使用ssh协议来进行配置

1,需要在服务器上创建ssh账户并开启ssh协议

2,手工配置密钥(推荐768以上

3,VTY用户接口下允许开启SSH登录方式
在这里插入图片描述

外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传

R1配置

<Huawei>sys
Enter system view, return user view with Ctrl+Z.
[Huawei]sysn	
[Huawei]sysname r1
[r1]interface g0/0/0
[r1-GigabitEthernet0/0/0]ip address 202.100.1.1 255.255.255.252
Dec 11 2024 18:56:14-08:00 r1 %%01IFNET/4/LINK_STATE(l)[0]:The line protocol IP 
on the interface GigabitEthernet0/0/0 has entered the UP state. 
[r1-GigabitEthernet0/0/0]q
[r1]ping 202.100.1.2PING 202.100.1.2: 56  data bytes, press CTRL_C to breakReply from 202.100.1.2: bytes=56 Sequence=1 ttl=255 time=80 msReply from 202.100.1.2: bytes=56 Sequence=2 ttl=255 time=20 msReply from 202.100.1.2: bytes=56 Sequence=3 ttl=255 time=30 msReply from 202.100.1.2: bytes=56 Sequence=4 ttl=255 time=20 msReply from 202.100.1.2: bytes=56 Sequence=5 ttl=255 time=20 ms--- 202.100.1.2 ping statistics ---5 packet(s) transmitted5 packet(s) received0.00% packet lossround-trip min/avg/max = 20/34/80 ms[r1]aaa
//进入aaa认证
[r1-aaa]local-user ender password cipher qytang
Info: Add a new user.
//创建本地用户ender 密码为qytang
[r1-aaa]local-user ender privilege level 15
//用户的级别为最高的15级
[r1-aaa]local-user ender service-type ssh
//该用户用于ssh登录
[r1-aaa]q	
[r1]ssh user ender authentication-type password//ssh用户ender通过密码进行认证Authentication type setted, and will be in effect next time
[r1]stelnet server enable
//开启ssh
Info: Succeeded in starting the STELNET server.	
[r1]rsa local-key-pair create 
//创建rsa的key
The key name will be: Host
% RSA keys defined for Host already exist.
Confirm to replace them? (y/n)[n]:y
The range of public key size is (512 ~ 2048).
NOTES: If the key modulus is greater than 512,It will take a few minutes.
Input the bits in the modulus[default = 512]:768
Generating keys...
....++++++++
.............++++++++
....................+++++++++
.....................................................................+++++++++[r1]user-interface vty 0 4
//进入VTY通道
[r1-ui-vty0-4]au	
[r1-ui-vty0-4]authentication-mode aaa
//选择AAA认证
[r1-ui-vty0-4]p	
[r1-ui-vty0-4]pro	
[r1-ui-vty0-4]protocol inb	
[r1-ui-vty0-4]protocol inbound ssh
//vty允许SSh登录
[r1-ui-vty0-4]
Dec 11 2024 19:02:14-08:00 r1 %%01SSH/4/SSH_FAIL(l)[1]:Failed to log in through 
SSH. (Ip=202.100.1.2, UserName=ender, Times=16777216).[r1-ui-vty0-4]q
[r1]save^
Error: Unrecognized command found at '^' position.
[r1]q
<r1>save

r2

<Huawei>sys
Enter system view, return user view with Ctrl+Z.
[Huawei]sysn	
[Huawei]sysname r2
[r2]in	
[r2]inte	
[r2]interface g0/0/0
[r2-GigabitEthernet0/0/0]ip address 202.100.1.2 255.255.255.252
[r2]stelnet 202.100.1.1
Please input the username:ender
Trying 202.100.1.1 ...
Press CTRL+K to abort
Connected to 202.100.1.1 ...
Error: Failed to verify the server's public key.
Please run the command "ssh client first-time enable"to enable the first-time ac
cess function and try again.
[r2]
[r2]ssh client first-time enable
//启用SSH客户端首次登录时的提示
[r2]stelnet 202.100.1.1
Please input the username:ender
Trying 202.100.1.1 ...
Press CTRL+K to abort
Connected to 202.100.1.1 ...
The server is not authenticated. Continue to access it? (y/n)[n]:y
Dec 11 2024 19:01:54-08:00 r2 %%01SSH/4/CONTINUE_KEYEXCHANGE(l)[1]:The server ha
d not been authenticated in the process of exchanging keys. When deciding whethe
r to continue, the user chose Y. 
[r2]
Save the server's public key? (y/n)[n]:y
The server's public key will be saved with the name 202.100.1.1. Please wait...Dec 11 2024 19:02:10-08:00 r2 %%01SSH/4/SAVE_PUBLICKEY(l)[2]:When deciding wheth
er to save the server's public key 202.100.1.1, the user chose Y. 
[r2]
Enter password:
Enter password:
<r1>display user^
Error:Ambiguous command found at '^' position.
<r1>
<r1>display use	
<r1>display usersUser-Intf    Delay    Type   Network Address     AuthenStatus    AuthorcmdFlag0   CON 0   00:02:06                                   pass                   Username : Unspecified+ 130 VTY 1   00:00:00  SSH    202.100.1.2               pass                   Username : ender               

Username : Unspecified

  • 130 VTY 1 00:00:00 SSH 202.100.1.2 pass
    Username : ender


http://www.ppmy.cn/server/150958.html

相关文章

C# 方法的参数主要有四种类型:值参数、引用参数ref 、输出参数out、可变参数params

在 C# 中&#xff0c;方法的参数主要有四种类型&#xff1a;值参数、引用参数ref 、输出参数out、可变参数&#xff08;使用 params 修饰符声明&#xff09;。下面是每种参数类型的详细说明、使用注意事项。 1. 值参数 值参数是最常见的参数传递方式。当值参数被传递给方法时…

【深度学习项目】目标检测之YOLO系列-V4(二)

快速通道&#xff1a;https://blog.csdn.net/u014608435/article/details/144497816 介绍 YOLOv4&#xff08;You Only Look Once v4&#xff09;是YOLO系列目标检测算法的又一个重要版本&#xff0c;它在2020年由Alexey Bochkovskiy、Chien-Yao Wang和Hong-Yuan Mark Liao提出…

高级java每日一道面试题-2024年12月16日-数据库篇-分布式数据库中SQL的执行过程和传统数据库有什么不一样的地方?

如果有遗漏,评论区告诉我进行补充 面试官: 分布式数据库中SQL的执行过程和传统数据库有什么不一样的地方&#xff1f; 我回答: 在 Java 高级面试中&#xff0c;分布式数据库与传统单机数据库&#xff08;如 MySQL、PostgreSQL 等&#xff09;之间 SQL 执行过程的差异是一个非…

在Scala中对Map函数的使用

package pp28{object cscc {def main(args: Array[String]): Unit {val m1 Map("马云 — 阿里巴巴" -> 1964,"马化腾 — 腾讯" -> 1971,"李彦宏 - 百度" -> 1968,"雷军 - 小米" -> 1969,"丁磊 - 网易" -> …

计算机网络-传输层 UDP协议

学习一个网络协议&#xff0c;主要就是学习“数据格式/报文格式” UDP的特点 UDP传输的过程类似于寄信. ⽆连接: 知道对端的IP和端⼝号就直接进⾏传输, 不需要建⽴连接; 不可靠: 没有确认机制, 没有重传机制; 如果因为⽹络故障该段⽆法发到对⽅, UDP协议层也不会给应 ⽤层返回任…

什么是IP地址?什么是IP属地?它们如何改变IP

一&#xff0c;IP地址和IP属地的定义和关系 1&#xff1a;IP地址定义 互联网协议地址&#xff0c;每一台设备都拥有一个独一无二的身份证明——IP地址&#xff0c;无论是电脑、手机还是服务器&#xff0c;在连接到互联网的瞬间&#xff0c;就被赋予了一个IP地址&#xff0c;它…

28. Three.js案例-创建圆角矩形并进行拉伸

28. Three.js案例-创建圆角矩形并进行拉伸 实现效果 知识点 WebGLRenderer (WebGL渲染器) WebGLRenderer 是 Three.js 中用于渲染 3D 场景的主要渲染器。 构造器 WebGLRenderer( parameters : Object ) 参数类型描述parametersObject渲染器的配置参数&#xff0c;可选。 …

计算机网络知识点全梳理(一.TCP/IP网络模型)

目录 TCP/IP网络模型概述 应用层 什么是应用层 应用层功能 应用层协议 传输层 什么是传输层 传输层功能 传输层协议 网络层 什么是网络层 网络层功能 网络层协议 数据链路层 什么是数据链路层 数据链路层功能 物理层 物理层的概念和功能 写在前面 本系列文…