实验目的:

1、掌握配置保存、删除。

2、掌握配置备份、恢复。

3、掌握配置查看。

实验拓扑:

实验步骤:

1、当设备配置好后,需要保存配置在本地,防止重启后配置丢失,如下:

①方法一:

R1#copy running-config startup-config 

Destination filename [startup-config]?

Building configuration...

[OK]

②方法二:

R1#write  

Building configuration...

[OK]

此时查看NVRAM中是否保存启动配置,如下:

R1#dir nvram:

Directory of nvram:/


  124  -rw-        1007                    <no date>  startup-config

  125  ----          24                    <no date>  private-config

    1  -rw-           0                    <no date>  ifIndex-table


129016 bytes total (126909 bytes free)

可以看到,配置已经被保存。

2、当配置出现错误时,需要删除配置,如下:

R1(config)#int f0/0

R1(config-if)#no ip address 12.1.1.1 255.255.255.0

R1(config-if)#exit

R1(config)#hostname R1

R1(config)#no hostname R1

Router(config)#

Cisco IOS删除命令或配置直接在配置之前加上“no”即可,若不想一条一条删除配置,则可以直接删除初始化配置并重启即可清空配置,如下:

R1#write erase  

Erasing the nvram filesystem will remove all configuration files! Continue? [confirm]

[OK]

Erase of nvram: complete

R1#reload

3、为了防止设备故障而导致的配置丢失,一般情况下,除了将配置保存在设备本地之外,还需要通过FTP或者TFTP备份配置到服务器或者PC上,如下:

①R2开启FTP服务

R2(config)#ftp-server enable 

R2(config)#ftp-server topdir flash:

②将R1配置备份到FTP服务器

R1#copy startup-config ftp:

Address or name of remote host []? 12.1.1.2

Destination filename [r1-confg]?

Writing r1-confg !

509 bytes copied in 2.312 secs (220 bytes/sec)

③在R2上查看FLASH

R2#show flash:


System flash directory:

File  Length   Name/status

  1   509      r1-confg 

[576 bytes used, 8388028 available, 8388604 total]

8192K bytes of processor board System flash (Read/Write)

可以看到,此时FTP服务器上已经备份了R1的配置。

4、当设备的配置丢失时,或者设备故障后换成新设备时,需要将配置重新加载进入,此时需要从其他已经备份的FTP或者TFTP上恢复配置,如下:

R1#copy ftp: startup-config

Address or name of remote host []? 12.1.1.2

Source filename []? r1-confg      

Destination filename [startup-config]?

Accessing ftp://12.1.1.2/r1-confg...

Loading r1-confg

[OK - 509/4096 bytes]

[OK]

509 bytes copied in 9.672 secs (53 bytes/sec)

可以看到,R1从FTP上加载了配置。

5、查看设备配置,如下:

①查看系统初始化配置

R1#show startup-config

Using 509 out of 129016 bytes

!

version 12.4

service timestamps debug datetime msec

service timestamps log datetime msec

no service password-encryption

!

hostname R1

……

②查看正在运行的配置

R1#show running-config

Building configuration...


Current configuration : 509 bytes

!

version 12.4

service timestamps debug datetime msec

service timestamps log datetime msec

no service password-encryption

!

hostname R1

……

设备的配置管理是管理员最常见的运维任务,保存和备份配置对于后续的网络运维可以起到很大作用。此实验完成。