实验拓扑
图 1-1
注:如无特别说明,描述中的 R1 或 SW1 对应拓扑中设备名称末尾数字为 1 的设备,R2 或 SW2 对应拓扑中设备名称末尾数字为 2 的设备,以此类推
实验需求
- 按照图示连接到真机,并配置 IP 地址(真机 IP 地址配置到 VirtualBox Host-Only Ethernet Adapter 网卡)
- R1 保存当前配置
- 在 R1 上开启 FTP 服务
- 使用真机访问 FTP 服务,把 R1 的配置文件拷贝到本地
- 在 R1 上清空配置,重启 R1,确认已配置为空配状态
- 再次在 R1 开启 FTP 服务,并把真机拷贝的配置文件还原到路由器
- 更改 R1 的启动配置文件名
- 再次重启 R1,确认配置已还原
实验解法
配置 IP 地址部分略
R1 保存当前配置,并确认,命令如下
[R1]save
The current configuration will be written to the device. Are you sure? [Y/N]:y
Please input the file name(*.cfg)[flash:/startup.cfg]
(To leave the existing filename unchanged, press the enter key):
Validating file. Please wait...
Configuration is saved to device successfully.
- R1 上开启 FTP 服务,创建用户
wangdaye
,密码123
步骤 1:开启 FTP 服务[R1]ftp server enable
步骤 2:创建用于 FTP 身份验证的用户,配置密码,并设置用户权限级别和服务类型
[R1]local-user wangdaye class manage
New local user added.
[R1-luser-manage-wangdaye]password simple 123456
[R1-luser-manage-wangdaye]authorization-attribute user-role level-15
[R1-luser-manage-wangdaye]service-type ftp
使用真机访问 FTP 服务,备份 R1 的配置文件
步骤 1:使用资源管理器访问 FTP 服务,如图 1-2 所示
图 1-2
步骤 2:输入用户名和密码,如图 1-3 所示
图 1-3
步骤 3:复制 R1 的配置文件,如图 1-4 所示
图 1-4在 R1 上清空配置,命令如下
分析:此时 R1 的配置已经备份到 PC 上,现在把 R1 的配置清空,再测试还原备份的配置是否有效<R1>reset saved-configuration
The saved configuration file will be erased. Are you sure? [Y/N]:y
Configuration file in flash: is being cleared.
Please wait ...
Configuration file is cleared.
- 重启 R1,命令如下
注意:重启设备时,第一次确认提示是设备检测到配置被清空,询问是否要重新保存当前配置。此次询问需要输入n
来否定;第二次确认提示才是询问是否确认要重启,应该输入y
<R1>reboot
Start to check configuration with next startup configuration file, please wait.........DONE!
Current configuration may be lost after the reboot, save current configuration? [Y/N]:n
This command will reboot the device. Continue? [Y/N]:y
Now rebooting, please wait...
查看 R1 配置,发现 R1 的配置已经变成空配状态 ```null
display current-configuration version 7.1.075, Alpha 7571
sysname H3C
system-working-mode standard xbar load-single password-recovery enable lpu-type f-series
vlan 1
8.
**再次把 R1 的 g0/0 口配置 IP 地址,并开启 FTP,命令略**
9.
**把真机上的配置文件还原到路由器,过程略**
10.
**更改 R1 的启动配置文件名,命令如下**
```null
<H3C>startup saved-configuration startup.cfg
Please wait...... Done.
重启 R1,确认配置已经还原到清空前的状态 ```null
display cu display current-configuration version 7.1.075, Alpha 7571
sysname R1
system-working-mode standard xbar load-single password-recovery enable lpu-type f-series
vlan 1 ```