본문 바로가기

Routing

[Config] 설정모드 및 명령어 정리

 

설정모드 구분하기

> : 사용자 모드 (user mode)

# : 관리자 모드 (privileged mode)

(config)# : 전역설정 모드 (global configuration mode)

(config-if)# : 인터페이스설정 모드 (interface configuration mode)

(config-line)# : 관리포트설정 모드 (line configuration mode)

(config-router)# : 라우팅프로토콜 설정모드 (router configuration mode)

(config-subif)# : 서브인터페이스 설정모드 (subinterface configuration mode)

 

 

콘솔설정

(config)# line console 0  : 콘솔설정모드로 진입

(config-line)# exec-timeout 0 0   : 콘솔세션시간 설정 (0 0초는 무한대 사용)

(config-line)# logging synchronous   : 로그와 명령어 분리

(config-line)# **인증설정** (뒤에 따로 표시)

 

 

가상터미널 설정

(config)# line vty 0 4   : virtual terminal 설정모드로 진입 (0 4 0번부터 4 이라는 )

(config-line)# **인증설정** (뒤에 따로 표시)

가상터미널에 인증설정을 하지 않으면 접속이 제한되므로, 반드시 해주어야 한다.

 

**인증설정**

1. password 인증

(config-line)# password <pw-word>

(config-line)# login

2. local 인증

(config)# username <id> password <pw>

(config-line)# login local

3. No 인증

(config-line)# no password

(config-line)# no login

 

인터페이스 설정

**Serial 설정**

(config)# interface serial 0/0

(config-if)# ip address <address> <subnet-mask>

(config-if)# no shutdown

(config-if)# encapsulation {ppp|hdlc}

(config-if)# bandwidth <number>

(config-if)# clock rate <clock-num>

 

**Ethernet 설정**

(config)# interface fastEthernet 0/0

(config-if)# ip address <address> <subnet-mask>

(config-if)# no shutdown

 

 

Routing 설정

**Static Routing**

(config)# ip route <network> <subnet-mask> <패킷을 내보내야 하는 인터페이스 번호>

(config)# ip route <network> <subnet-mask> <패킷을 전달하는 방향의 next-hop ip address>

 

**Default Routing**

(config)# ip route 0.0.0.0 0.0.0.0 <경로>

 

**Dynamic Routing**

-RIP-

(config)# router rip

(config-router)# network <address>

(config-router)# version <1-2>

 

-EIGRP-

(config)# router eigrp <ASN>

(config-router)# network <address> [wildcard-mask]

 

-OSPF-

(config)# router ospf <process-id>

(config-router)# network <address> <wildcard-mask> area <area-id>

 

 

'Routing' 카테고리의 다른 글

[Config] 기본 설정 명령어 상세설명  (2) 2014.06.21
[OSPF] 간략정리  (0) 2014.06.02
[EIGRP] 간략정리  (0) 2014.05.28
[RIP] 간략정리  (0) 2014.05.28
Dynamic Routing이란?  (0) 2014.05.28