eNSP(华为模拟器)基本配置命令

eNSP(华为模拟器)基本配置命令

    • 路由器基本配置命令:
    • 交换机基本配置命令:
    • 证书

路由器基本配置命令:

路由器指的是负责在不同网络之间转发数据的设备,当到达目标的路径很复杂时,由路由器决定最佳路径,路由器也为直连网络的主机充当“网关”角色。

< Huawei > :用户视图
< Huawei >system-viem:切换系统视图
[Huawei]系统视图
[Huawei]interface Ethernet 0/0/1 进入接口
[Huawei-thernet 0/0/1] 接口视图
eNSP(华为模拟器)基本配置命令_第1张图片
ctrl + c:停止当前命令的运行
ctrl + z:回到用户模式
?:命令+?获取帮助信息

#切换语言模式(支持中英文两种语言模式Chinese/English)
< Huawei> language-mode Chinese

#查看VRP系统版本
< Huawei > display version

#修改主机名为switch
[Huawei]sysname switch

#不显示提示信息
[Huawei]undo info-center enable

修改系统时间(用户模式命令):
#设置时区
< Huawei >clock timezone local add 08:00:00
#设置时间
< Huawei >clock datetime 14:59:22 2020-07-22
#查询时间
< Huawei >display clock

配置明文console 口令(系统模式命令):
#进入console 0 唯一端口
[switch]user-interface console 0 
#启用密码
[switch-ui-console0]authentication-mode password 
#设置密码为123
[switch-ui-console0]set authentication password simple 123 
(Simple:明文、Cipher:密文)
模拟器上console口下的用户权限默认为15

#返回到上级
[switch-ui-console0]quit
#查看配置信息
< switch >display current-configuration 

取消明文console 口令:
#进入console 0 唯一端口
[switch]user-interface console 0 
#取消密码:
[Switch-ui-console0]undo set authentication password

配置交换机IP地址:
#进入接口1
[Switch]interface Vlanif 1 
#配置IP地址
[Switch-Vlanif1]IP address 192.168.1.100 24
#启动IP地址(华为交换机默认开启,不需要再次开启)
[Switch-Vlanif1]undo shutdown 

配置自动退出超时时间:
#进入console唯一端口
[Huawei]user-interface console 0 
#设置自动退出超时时间(分钟)
[Huaw:ei-ui-console0]idle-timeout 1440

配置标题信息:
#配置登陆之前的信息" "
[Huawei]header login information "unauthorined users are not allowed"
#配置登录成功的信息" "
[Huawei]header shell information "welcome"


防止弹出信息干扰命令:
#设置用户视图
< Huawei >undo terminal monitor 
#设置系统视图
[Huawei]undo info-center enable 

#保存配置信息(用户模式命令):
< switch >save

#查看当前保存配置
display saved-configuration

#恢复出厂设置:
reset saved-configuration

#重启(用户模式命令):
< switch >reboot



禁用接口与启用接口(sicso默认禁用接口):
#进入端口号0/0/2
[Huawei]interface GigabitEthernet 0/0/2 
#禁用0/0/2端口
[Huawei-GigabitEthernet0/0/2]shutdown 
#启用0/0/2端口
[Huawei-GigabitEthernet0/0/2]undo shutdown


配置路由接口ip地址:
#进入端口
[Huawei]interface GigabitEthernet 0/0/0 
#配置IP地址
[Huawei-GigabitEthernet0/0/0]ip address 192.168.1.254 255.255.255.0 
#查看路由表
display ip routing-table

#显示接口摘要信息:
display ip interface brief 


删除命令方式:
[Huawei-GigabitEthernet0/0/0]interface GigabitEthernet 0/0/0
[Huawei-GigabitEthernet0/0/0]ip address 192.168.1.1 24
[Huawei-GigabitEthernet0/0/0]undo ip address 192.168.1.1 24

配置路由器远程管理:
#定义远程管理终端数量
[Huawei]user-interface vty 0 4
#定义用户级别
[Huawei-ui-vty0-4]user privilege level 3
#启用aaa认证
[Huawei-ui-vty0-4]authentication-mode aaa
#进入aaa认证视图
[Huawei]aaa
#定义远程管理的用户名及密码
[Huawei-aaa]local-user jjj password cipher 123
#定义用Telnet协议远程管理
[Huawei-aaa]local-user jjj service- type telnet

远程管理:
#查看VLAN端口
display port vlan
#查看服务端口
display port-mapping

交换机基本配置命令:

一、单交换机VLAN划分
#进入系统视图
system-view 
#退到系统视图
[switch]quit 
#删除vlan 20
[switch]undo vlan 20 
#交换机命名
[switch]sysname 
#显示vlan
[switch]display vlan 
#创建vlan(进入vlan 20)
[switch]vlan 20 
#创建vlan20组
[switch]Port-group vlan 20 
#端口1-5放入VLAN 20 中
(在此模式下进行port link-type access,port default vlan20的命令,实现批量操作)
[switch]group-member e0/0/0 to e0/0/5 
#进入端口24
[switch]Interface e1/0/24 
#把当前端口放入vlan 20
[switch-Ethernet0/0/1]port link-type access vlan 20 
#删除当前VLAN端口10
[switch-Ethernet0/0/1]undo port e1/0/10 
#显示当前配置
[switch]display current-configuration 
二、配置交换机支持TELNET
#进入VLAN 1
[switch]interface vlan 1 
#配置IP地址
[switch-Vlanif10]ip address 192.168.3.100 255.255.255.0 
#进入虚拟终端
[switch]user-interface vty 0 4 
#设置口令模式
[switch-ui-vty0-4]authentication-mode password (aut password) 
#设置口令
[switch-ui-vty0-4]set authentication password simple 222 (set aut pass sim 222) 
#配置用户级别
[switch-ui-vty0-4]user privilege level 3(use priv lev 3) 
#查看当前配置
disp current-configuration (disp cur) 
#查看交换机VLAN IP配置
display ip interface 
#删除配置(必须退到用户模式)
reset saved-configuration(reset saved) 
#重启交换机
reboot 

证书

思科:CCNA(初级)、CCNP(中级)、CCIE(高级)
华为:HCNA(初级)、HCNP(中级)、HCIE(高级)

你可能感兴趣的:(计算机网络)