实验拓扑

H3C配置管理实验 - 图1

图 1-1

注:如无特别说明,描述中的 R1 或 SW1 对应拓扑中设备名称末尾数字为 1 的设备,R2 或 SW2 对应拓扑中设备名称末尾数字为 2 的设备,以此类推


实验需求

  1. 按照图示连接到真机,并配置 IP 地址(真机 IP 地址配置到 VirtualBox Host-Only Ethernet Adapter 网卡)
  2. R1 保存当前配置
  3. 在 R1 上开启 FTP 服务
  4. 使用真机访问 FTP 服务,把 R1 的配置文件拷贝到本地
  5. 在 R1 上清空配置,重启 R1,确认已配置为空配状态
  6. 再次在 R1 开启 FTP 服务,并把真机拷贝的配置文件还原到路由器
  7. 更改 R1 的启动配置文件名
  8. 再次重启 R1,确认配置已还原

实验解法

  1. 配置 IP 地址部分略

  2. R1 保存当前配置,并确认,命令如下

    1. [R1]save
    2. The current configuration will be written to the device. Are you sure? [Y/N]:y
    3. Please input the file name(*.cfg)[flash:/startup.cfg]
    4. (To leave the existing filename unchanged, press the enter key):
    5. Validating file. Please wait...
    6. Configuration is saved to device successfully.
  1. R1 上开启 FTP 服务,创建用户wangdaye,密码123
    步骤 1:开启 FTP 服务
    1. [R1]ftp server enable


步骤 2:创建用于 FTP 身份验证的用户,配置密码,并设置用户权限级别和服务类型

  1. [R1]local-user wangdaye class manage
  2. New local user added.
  3. [R1-luser-manage-wangdaye]password simple 123456
  4. [R1-luser-manage-wangdaye]authorization-attribute user-role level-15
  5. [R1-luser-manage-wangdaye]service-type ftp
  1. 使用真机访问 FTP 服务,备份 R1 的配置文件
    步骤 1:使用资源管理器访问 FTP 服务,如图 1-2 所示
    H3C配置管理实验 - 图2
    图 1-2
    步骤 2:输入用户名和密码,如图 1-3 所示
    H3C配置管理实验 - 图3
    图 1-3
    步骤 3:复制 R1 的配置文件,如图 1-4 所示
    H3C配置管理实验 - 图4
    图 1-4

  2. 在 R1 上清空配置,命令如下
    分析:此时 R1 的配置已经备份到 PC 上,现在把 R1 的配置清空,再测试还原备份的配置是否有效

    1. <R1>reset saved-configuration
    2. The saved configuration file will be erased. Are you sure? [Y/N]:y
    3. Configuration file in flash: is being cleared.
    4. Please wait ...
    5. Configuration file is cleared.
  1. 重启 R1,命令如下
    注意:重启设备时,第一次确认提示是设备检测到配置被清空,询问是否要重新保存当前配置。此次询问需要输入n来否定;第二次确认提示才是询问是否确认要重启,应该输入y
    1. <R1>reboot
    2. Start to check configuration with next startup configuration file, please wait.........DONE!
    3. Current configuration may be lost after the reboot, save current configuration? [Y/N]:n
    4. This command will reboot the device. Continue? [Y/N]:y
    5. Now rebooting, please wait...
  1. 查看 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

  1. 8.
  2. **再次把 R1 g0/0 口配置 IP 地址,并开启 FTP,命令略**
  3. 9.
  4. **把真机上的配置文件还原到路由器,过程略**
  5. 10.
  6. **更改 R1 的启动配置文件名,命令如下**
  7. ```null
  8. <H3C>startup saved-configuration startup.cfg
  9. Please wait...... Done.
  1. 重启 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 ```


http://www.dengfm.com/15217173546931.html