您好,欢迎来到南京仲子路科技有限公司!
您好,欢迎来到南京仲子路科技有限公司!
create smarter cities via our expertise
一、不知道密码,如何恢复出厂设置
1、启动时,ctrl b进入bootrom菜单,选择恢复出厂设置。
2、用com线连接电脑,用超级终端进入,然后重启电脑,根据ctrl b查看提示进入bootrom模式,然后根据菜单提示删除flash中的cfg文件,然后重启。
二、h3c交换机常用配置命令
1、配置主机名
[h3c]systemname h3c
2、配置console口密码
#进入系统视图。
#进入aux用户界面视图。
[h3c] user-interface aux 0
#设置通过console口登录交换机的用户进行password认证。
[h3c-ui-aux0] authentication-mode password
#设置用户的认证口令为加密方式,口令为123456。
[h3c-ui-aux0] set authentication passwordcipher 123456
#设置从aux用户界面登录后可以访问的命令级别为2级。
[h3c-ui-aux0] user privilege level 2
3、配置telnet
#进入系统视图。
#进入vty0用户界面视图。
[h3c] user-interface vty 0
#设置通过vty0口登录交换机的用户进行password认证。
[h3c-ui-vty0] authentication-mode password
#设置用户的认证口令为密码方式,口令为123456。
[h3c-ui-vty0] set authentication passwordcipher 123456
#设置从vty0用户界面登录后可以访问的命令级别为2级。
[h3c-ui-vty0] user privilege level 2
#设置vty0用户界面支持telnet协议。
[h3c-ui-vty0] protocol inbound telnet
4、配置交换机vlan 1管理地址
[h3c] interface vlan-interface 1
[h3c-vlan-interface1] ip address192.168.0.129 255.255.255.0
5、配置交换机网关地址
[h3c]ip route-static 0.0.0.00.0.0.0 192.168.0.1
6、配置http服务
[h3c] local-user admin #创建http用户
[h3c-luser-admin] service-type telnet
[h3c-luser-admin] authorization-attributelevel 3
[h3c-luser-admin] password cipheradmin #设置http用户密码,并加密显示
7、配置snmp
[h3c]snmp-agent
[h3c]snmp-agent community read123456 #设置snmp团体名称,权限为只读
[h3c]snmp-agent sys-info version v1 v2c #设置snmp版本v1和v2
8、qos端口限速
[h3c] interface gigabitethernet 1/0/1
#配置限速参数,端口进/出速率限制为5120kbps。
[h3c-gigabitethernet1/0/1] qos lr inboundcir 5120
[h3c-gigabitethernet1/0/1] qos lr outboundcir 5120
9、创建vlan
[h3c] vlan 100
10、删除vlan
[h3c] undo vlan 100
11、将端口加入vlan 100
[h3c] interface gigabitethernet 1/0/24
[h3c] port access vlan 100
12、查看vlan
[h3c]display vlan all
12、查看端口状态
[h3c]display interface gigabitethernet1/0/24
14、启用端口
[h3c]interface gigabitethernet 1/0/24
[h3c]undo shutdown
15、关闭端口
[h3c]interface gigabitethernet 1/0/24
[h3c]shutdown
16、查看mac地址列表
[h3c]display mac-address
17、查看arp信息
[h3c]display arp
18、查看current配置
[h3c]display current-configuration
19、查看saved配置
[h3c]display saved-configuration
注:current配置是保存在交换机内存里面,当交换机重启时,不会生效
要交换机重启时生效,必须保存在saved-configureation配置里
20、保存交换机配置
[h3c]save
声明:本文只做技术研究讨论,请勿用于非法目的,如果恶意使用造成任何法律责任本站概不负责!