Router 0 설정
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#int fa 0/0
Router(config-if)#ip add 10.1.1.1 255.255.255.0
Router(config-if)#no sh
%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
%SYS-5-CONFIG_I: Configured from console by console
Router#write memory
- 현재 설정을 NVRAM 에 저장한다.
- copy running-config startup-config 명령어와 같다.
- running-config : current system configuration
- startup-config : startup configuration
Building configuration...
[OK]
Router#ping 10.1.1.2 - 서버와의 연결을 확인
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.1.1.2, timeout is 2 seconds:
.!!!!
Success rate is 80 percent (4/5), round-trip min/avg/max = 62/62/63 ms
Router#show version - 라우터의 버전 정보 확인
ROM: System Bootstrap, Version 12.1(3r)T2, RELEASE SOFTWARE (fc1)
Copyright (c) 2000 by cisco Systems, Inc.
System returned to ROM by power-on
System image file is "c2800nm-advipservicesk9-mz.124-15.T1.bin"
Router#copy ?
running-config Copy from current system configuration
startup-config Copy from startup configuration
tftp: Copy from tftp: file system
Router#show startup-config
- 라우터에 설정이 저장되어 있는지 확인한다.
- 이것이 없다면 write memory or copy running-config stratup-config 를 실행한다.
Using 426 bytes
!
version 12.4
no service password-encryption
!
hostname Router
!
!
!
!
!
ip ssh version 1
no ip domain-lookup
!
!
interface FastEthernet0/0
ip address 10.1.1.1 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface Vlan1
no ip address
shutdown
!
ip classless
!
!
!
!
!
line con 0
exec-timeout 0 0
logging synchronous
line vty 0 4
login
!
!
end
------------------------------------------------------------------------------------------------------------------
서버에 백업
- 서버에 현재 라우터의 설정을 백업한다. -
Router#copy startup-config ?
running-config Update (merge with) current system configuration
tftp: Update (merge with) current system configuration
Router#copy startup-config tftp:
Address or name of remote host []? 10.1.1.2 - 서버의 IP 주소를 입력한다.
Destination filename [Router-confg]? c2821_backup_config_20081203 - 백업파일명을 입력한다.
!!
[OK - 426 bytes]
426 bytes copied in 0.125 secs (3000 bytes/sec)
Router#show flash: - 플래시 메모리의 내용을 확인한다.
System flash directory:
File Length Name/status
1 50938004 c2800nm-advipservicesk9-mz.124-15.T1.bin - 기본 설정이 들어가 있는 플래시 메모리 파일
[50938004 bytes used, 13078380 available, 64016384 total]
63488K bytes of processor board System flash (Read/Write)
------------------------------------------------------------------------------------------------------------------
서버로 부터 복원(리로딩)
- 서버에 백업된 파일을 리로드 한다. (복구 등으로 활용가능) -
Router#copy tftp: ?
flash: Copy to flash: file system
running-config Copy configuration from system
startup-config Copy startup configuration from system
Router#copy tftp: flash:
Address or name of remote host []? 10.1.1.2 - 복원할 파일의 위치가 있는 서버의 IP 주소를 입력한다.
Source filename []? c2821_backup_config_20081203 - 복원할 원본 파일명을 입력한다.
Destination filename [c2821_backup_config_20081203]? c2821_backup_config_20081203.bak
- 복원할 파일명을 입력한다.
- 파일명이 실제 플래시 메모리와 같다면 이전 파일은 삭제하고 복원할 파일로 오버라이트 된다.
- 여기서는 시뮬레이션 상 .bak 를 붙인다.
Loading c2821_backup_config_20081203 from 10.1.1.2: !
[OK - 426 bytes]
426 bytes copied in 0.062 secs (6870 bytes/sec)
Router#dir flash: - 리로딩한 파일을 확인한다.
Directory of flash:/
1 -rw- 50938004 <no date> c2800nm-advipservicesk9-mz.124-15.T1.bin - 기본 플래시 메모리 파일
2 -rw- 426 <no date> c2821_backup_config_20081203.bak - 복원한 플래시 메모리 파일
64016384 bytes total (13077954 bytes free)
Router#show flash:
System flash directory:
File Length Name/status
1 50938004 c2800nm-advipservicesk9-mz.124-15.T1.bin
2 426 c2821_backup_config_20081203.bak
[50938430 bytes used, 13077954 available, 64016384 total]
63488K bytes of processor board System flash (Read/Write)
------------------------------------------------------------------------------------------------------------------
플래시 메모리 파일 삭제
- 파일을 삭제할 대는 반드시 신중하게 주의를 하면서 삭제를 하고 잘못 삭제한 경우에는 절대 재부팅 하지 말고 파일을 다시 복원한다.
Router#show flash:
System flash directory:
File Length Name/status
1 50938004 c2800nm-advipservicesk9-mz.124-15.T1.bin
2 426 c2821_backup_config_20081203.bak
[50938430 bytes used, 13077954 available, 64016384 total]
63488K bytes of processor board System flash (Read/Write)
Router#delete flash:c2821_backup_config_20081203.bak - 삭제할 파일을 입력한다.
Delete filename [c2821_backup_config_20081203.bak]?
Delete flash:/c2821_backup_config_20081203.bak? [confirm]
Router#show flash:
System flash directory:
File Length Name/status
1 50938004 c2800nm-advipservicesk9-mz.124-15.T1.bin
[50938004 bytes used, 13078380 available, 64016384 total]
63488K bytes of processor board System flash (Read/Write)
'CCNA 기초' 카테고리의 다른 글
WAN (Wide Area Network) - PPP & HDLC (0) | 2008.12.04 |
---|---|
Wireless LAN (0) | 2008.12.04 |
CDP (Cisco Discovery Protocol) (0) | 2008.12.04 |
IP Routing - OSPF (0) | 2008.12.03 |
IP Routing - EIGRP (0) | 2008.12.03 |
IP Routing - Distance Vector RIP Version (0) | 2008.12.02 |