华为ENSP模拟器

顾名思义 配网关 接口 组网 交换机等等 用来做一些实验 。

交换机的基本配置

配置主机名

<Huawei> 
<Huawei>system-view       #进入系统视图 可以用sys代替system-view
[Huawei]sysname SW1       #更改设备的名字 
[SW1] 

#显示VRP的版本信息
<Huawei>display version 

查看交换机的所有配置

<Huawei> 
<Huawei>display current-configuration 
<Huawei>system-view   #进入系统视图 
[Huawei]display current-configuration 

使用账户和密码登录终端

<Huawei> 
<Huawei>system-view   #进入系统视图 
[Huawei] 
[Huawei]aaa     #进入aaa模式,此模式下才可以设置用户名和登录密码 
[Huawei-aaa]local-user test01 password simple 123 #设置用户名和密码,明文的 
[Huawei-aaa]display current-configuration 
[Huawei-aaa]local-user test02 password cipher 123 #设置用户名和密码,密文的,安全性更高 

[Huawei-aaa]quit              #退回到系统视图 
[Huawei]    
#此时用户名密码并没有生效,需要进入console 0(用户的接口控制台)来通过aaa认证 
<Huawei>system-view 
[Huawei]user-interface console 0       #进入console 0 接口 
[Huawei-ui-console0]authentication-mode aaa        #通过aaa认证 
quit回退到登录界面,测试 
Username:test01

#默认情况下配置都是临时的 重启以后就没有了
#保存交换机的配置
[Huawei]save

恢复设备出厂默认值

<Huawei>reset saved-configuration  #恢复出厂默认值 
Warning: The action will delete the saved configuration in the device. 
The configuration will be erased to reconfigure. Continue? [Y/N]: y  #询问你是否确认操作,y是
同意的意思 
<Huawei>reboot  #重启设备 
Info: The system is now comparing the configuration, please wait. 
Warning: All the configuration will be saved to the configuration file for the n 
ext startup:, Continue?[Y/N]:y   
#第一次的提示,警告所有的配置会被保存到配置文件,下次重启会再次加载以前的配置文
件,是否保存配置  
 
flash:/vrpcfg.zip exists, overwrite?[Y/N]:y     #是否覆盖 
 
Now saving the current configuration to the slot 0. 
Jun  4 2020 16:05:13-08:00 Huawei %%01CFM/4/OVERWRITE_FILE(l)[56]:When deciding  
whether to overwrite the configuration file flash:/vrpcfg.zip, the user chose Y. 
 
Save the configuration successfully. 
Info: If want to reboot with saving diagnostic information, input 'N' and then e 
xecute 'reboot save diagnostic-information'. 
System will reboot! Continue?[Y/N]:y 系统将被重启,是否继续,选择 y 同意,设备将进入
重启状态 

避免自动退出配置界面

#空闲一段时间后(默认控制台会话时间为10分钟) 
#配置控制台会话时间(避免老是进入自动待机状态) 
<Huawei>  
<Huawei>system-view    
[Huawei]user-interface console 0  
[Huawei-ui-console0]idle-timeout 1 
#进入系统视图 
#进入console 0 接口 
#设置控制台会话时间(1分钟) 

数据链路层

以太网MAC地址:用来识别一个以太网上的某个单独的设备或一组设备

以太网帧格式:数据链路层的协议数据单元

什么是交换机:交换机是用来连接局域网的主要设备,交换机能够根据以太网帧中目标地址智能的转发数据,因此交换机工作在数据链路层

查看MAC地址表

<Huawei>            
<Huawei>display mac-address  #用户视图下使用 

路由原理及配置

给pc1和pc2配置IP地址

<Huawei>system-view  
[Huawei]int  g0/0/0 
[Huawei-GigabitEthernet0/0/0]ip address  192.168.1.254 255.255.255.0 
[Huawei-GigabitEthernet0/0/0]display current-configuration  #查看结果 
[Huawei-GigabitEthernet0/0/0]display ip interface brief  #查看ip接口的摘要信息



[Huawei-GigabitEthernet0/0/0]in g0/0/1 
[Huawei-GigabitEthernet0/0/1]ip address 192.168.2.1 255.255.255.0 
[Huawei-GigabitEthernet0/0/1]display ip routing-table #查看路由表。还可以筛选
display   ip routing-table  | include  /24 

#测试1.1ping2.2,不通 
#需要配置网关,1.1主机配置网关为1.254,这个时候数据可以出去,但是回不来,还需要给2.1主机配置网关为2.2,再次测试可以ping通 
最后修改:2023 年 10 月 26 日
如果觉得我的文章对你有用,请随意赞赏