728x90

Cisco IOS 구조

Cisco IOS(Internetworking OS) 모드

User Exec Mode 최소한의 기능을 가진 모드로 Router, Switch의 초기 모드  [Privileged Mode로 진입]
 Router> enable
 Router#
Privileged Mode(관리자 모드) 네트워크 장비의 상태를 확인하거나 설정 내용을 확인할 수 있는 모드  [Global Configuration Mode로 진입]
 Router# configure terminal
 Router(config)# 
Global Configuration Mode



네트워크 장비의 전역적인 설정을 하는 모드



Interface Mode : 네트워크 장비의 인터페이스를 설정하는 모드
Line Interface Mode : Console, VTY  등을 설정할 수 있는 모드
Router Mode : Routing Protocol을 설정하는 모드
VLAN : VLAN 설정 모드

 

명령어

 

네트워크 장비 설정

running-config
현재 동작 중인 설정
startup-config  영구 설정
show running-config
현재 동작중인 설정 확인
show startup-config
영구 설정 확인
erase startup-config 영구 설정 삭제(장비 초기화)

 

Routing

show ip route 라우팅 테이블 확인
show ip interface brief 라우팅 테이블 확인
Global Configuration 모드에서 설정 Static Routing 설정
 ip route IP_주소 서브넷마스크 NEXT_HOP_IP
Static Routing 구성 명령어
ip route 0.0.0.0 0.0.0.0 NEXT_HOP_IP
Static Default Route 설정

 

Router 설정 단계

1. 인터페이스 설정

Router> enable

Router# configure terminal

Router(config)# interface FastEthernet 0/0

Router(config-if)# ip address IP_주소 서브넷마스크

Router(config-if)# no shutdown

Router(config-if)# exit

 

2. Static Routing 설정

Router# show ip route

Router# configure terminal

Router(config)# ip route IP_주소 서브넷마스크 NEXT_HOP_IP주소

Router(config)# exit

Router# show ip route

 

3. 설정 영구 저장

Router# copy running-config startup-config

 

 

728x90

+ Recent posts