HCIA学习笔记(1)
程序员文章站
2024-02-14 15:09:34
...
设备基础配置
1.查看系统信息
<Huawei>display version
2.修改系统信息
<Huawei> clock timezone Local add 08:00:00
<Huawei>clock datetime 12:00:00 2016-03-11
执行display clock命令查看生效的新系统时间
3.帮助功能和命令自动补全功能
<Huawei>display ?
4.进入系统视图
<Huawei> system-view #用户视图
[Huawei] #系统视图
Ctrl+Z 或 q 可从系统视图转回用户视图
5.修改设备名称
[Huawei] sysname R1 #修改R1路由器的设备名称为R1
[R1]
6.配置console参数
[R1]user-interface console 0 #进入consel界面
[R1-ui-console0]authentication-mode password #选择认证模式为password
[R1-ui-console0]set authentication-mode password cipher [email protected] #密码设为[email protected]
[R1-ui-console0]idle-timeout 20 0 #设置空闲超时时间为20分钟,默认为10分钟
7.配置登录信息
[R1]header login information "xxxxxxxxxx"
#设置登录前信息为:xxxxxxxx
[R1] header shell information "xxxxxxxxx"
#设置登录后信息为:xxxxxxxx
8.配置接口IP地址和描述信息
R1]interface GigabitEthernet 0/0/0
[R1-GigabitEthernet0/0/0]ip address ip地址 子网掩码
[R1-GigabitEthernet0/0/0]display this #在当前接口视图下,执行display this命令查看配置结果。
执行display interface命令查看接口信息
[R1]display interface GigabitEthernet0/0/0
9.配置远程登陆参数
默认情况下,设备无法通过远程登陆设备,可以通过VTY接口实现远程登陆设备。
将VTY接口登录方式配置为密码认证方式,密码为密文形式的
[R1]user-interface vty 0 4 #进入远程界面
[R1-]authentication-mode password #选择认证模式为password
[R1-ui-vty0-4]set authentication-mode password cipher [email protected] #密码为[email protected]
[R1-ui-vty0-4] protocol inbound telnet #开启远程协议功能
[Quidway-ui-vty0-4]user privilege level 15 #设置用户权限为最高15
<R2>telnet xxx.xxx.xxx(R1 ip) #必须在用户模式下进行
10.查看当前设备上存储的文件列表
<R1>dir
11.管理设备配置文件
<R1>display saved-configuaration #查看保存的配置文件
There is no correct configuration file in FLASH
<R1>save #系统中没有已保存的配置文件。执行save命令保存当前配置文件
<R1>display saved-configuration #重输命令查看已保存的配置信息
<R1>display current-configuration #查看当前配置信息
<R1>display startup #查看下次启动时使用的配置文件。
12.重启设备
<R1>reboot
上一篇: 【HCIA】IP地址详解