PingingLab传世经典系列《CCNA完全配置宝典》-1.5 配置管理

1.5 配置管理

实验目的:

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

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

3、掌握配置查看。

实验拓扑:



实验步骤:

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

方法一:

R1#copy running-config startup-config[PL1]

Destination filename [startup-config]?

Building configuration...

[OK]

方法二:

R1#write[PL2]

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[PL3]

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[PL4]

R2(config)#ftp-server topdir flash:[PL5]

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)

可以看到,R1FTP上加载了配置。

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

……

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

==========================================

PingingLab ・高品质IT教育提供商

CCIE 实验室・IT项目实战・高端人才定制

深圳拼客信息科技有限公司・广州大学城外环西路站

新浪微博:@拼客科技PingingLab  @PingingLab-陈鑫杰

PingingLab微信公众号:pinginglab

PingingLab技术交流群:240920680


你可能感兴趣的:(Cisco,CCNA,ccnp,CCIE,思科认证)