- 設定のバックアップとリストア
- IOSのバックアップ
設定のバックアップとリストア
ルータRT1のrunning-configをtftpサーバへバックアップします。
copyコマンドで、宛先にtftpを指定します。
tftpサーバのIPアドレスとバックアップ先のファイル名を指定します。
RT1#copy running-config tftp
Address or name of remote host []? 10.10.10.100
Destination filename [RT1-confg]? RT1-backup
Writing running-config....!!
[OK - 562 bytes]
562 bytes copied in 3.012 secs (186 bytes/sec)
RT1#
running-configをルータ自身にバックアップする場合は、
RT1#copy running-config tftp
Address or name of remote host []? 10.10.10.100
Destination filename [RT1-confg]? RT1-backup
Writing running-config....!!
[OK - 562 bytes]
562 bytes copied in 3.012 secs (186 bytes/sec)
RT1#
一度ルータを初期化して、tftpサーバにバックアップした設定ファイルをリストアしてみます。
初期化後は、tftpサーバと通信が取れないため、ipアドレスだけ手動で設定しておきます。
RT1#write erase
Erasing the nvram filesystem will remove all configuration files! Continue? [confirm]
[OK]
Erase of nvram: complete
%SYS-7-NV_BLOCK_INIT: Initialized the geometry of nvram
RT1#reload
Proceed with reload? [confirm]
System Bootstrap, Version 12.3(8r)T8, RELEASE SOFTWARE (fc1)
Initializing memory for ECC
..
Router>
Router>en
Router#
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#int f0/0
Router(config-if)#ip address 10.10.10.1 255.255.255.0
Router(config-if)#no shut
Router(config-if)#
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
Router(config-if)#end
Router#
%SYS-5-CONFIG_I: Configured from console by console
Router#copy tftp running-config
Address or name of remote host []? 10.10.10.100
Source filename []? RT1-backup
Destination filename [running-config]?
Accessing tftp://10.10.10.100/RT1-backup....
Loading RT1-backup from 10.10.10.100: !
[OK - 562 bytes]
562 bytes copied in 3 secs (187 bytes/sec)
RT1#
%SYS-5-CONFIG_I: Configured from console by console
RT1#
リストア後は、ルータのホスト名がRT1に戻っています。
IOSのバックアップ
上と同じ構成で、今度はIOSのバックアップを行います。
バックアップ先は、tftpサーバとします。
まず、IOSのファイル名を確認します。
RT1#show flash
System flash directory:
File Length Name/status
4 562 backup-yymmdd
3 33591768 c1841-advipservicesk9-mz.124-15.T1.bin
2 28282 sigdef-category.xml
1 227537 sigdef-default.xml
[33848149 bytes used, 30168235 available, 64016384 total]
63488K bytes of processor board System flash (Read/Write)
RT1#
IOSのファイル名が、「c1841-advipservicesk9-mz.124-15.T1.bin」であることがわかります。
次にtftpサーバへバックアップします。
RT1#copy flash tftp
Source filename []? c1841-advipservicesk9-mz.124-15.T1.bin
Address or name of remote host []? 10.10.10.100
Destination filename [c1841-advipservicesk9-mz.124-15.T1.bin]? c1841-advipservicesk9-mz.124-15.T1-backup.bin
Writing c1841-advipservicesk9-mz.124-15.T1.bin...!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[OK - 33591768 bytes]
33591768 bytes copied in 0.43 secs (8202318 bytes/sec)
RT1#
copyコマンドで、元ファイルに「flash」、宛先に「tftp」を指定します。
元ファイル名、tftpサーバのIPアドレス、バックアップ先のファイル名を入力します。
コメント