Static 라우팅 프로토콜은 라우터 간의 경로를 관리자가 직접 입력해준다.
관리자가 직접 입력하는 장점과 단점을 보자면
장점
- 해당 경로를 직접 입력해주기 때문에 라우터에 큰 부하가 가지 않는다.
단점
- 입력한 경로만 사용하기 때문에 경로에 문제가 생기면 운영자가 경로를 재설정 해줘야 한다는 단점이 있다.
- 규모가 커지면 디폴트 라우팅 테이블에 비해 테이블 크기가 너무 커질 수 있다.
Router(config)# ip route [도착지 네트워크 주소] [도착지 네트워크 서브넷마스크] [가야하는 방향 다음 홉]
Router7> enable
Router7# configure terminal
Router7(config)# interface serial 2/0
Router7(config-if)# ip address 192.168.20.2 255.255.255.0
Router7(config-if)# no shutdown
Router7(config)# interface serial 3/0
Router7(config-if)# ip address 192.168.30.1 255.255.255.0
Router7(config-if)# no shutdown
Router7(config)# interface fastEthernet 0/0
Router7(config-if)# ip address 192.168.50.1 255.255.255.0
Router7(config-if)# no shutdown
Router7(config)# ip route 192.168.10.0 255.255.255.0 192.168.20.1
Router7(config)# ip route 192.168.40.0 255.255.255.0 192.168.30.2
위와 같은 방법으로 Router6 과 Router8도 설정해주면 된다.
'네트워크 > 라우팅,스위칭 관리' 카테고리의 다른 글
Sisco Router Routing Protocol 설정 - 다이나믹 Dynamic (0) | 2021.04.28 |
---|---|
Sisco Router Routing Protocol 설정 - Default (0) | 2021.04.28 |
시스코 IOS Software (0) | 2021.04.26 |
멀티플렉싱 & 디멀티플렉싱 (0) | 2021.04.22 |
IPv4 데이터그램 단편화 (0) | 2021.04.22 |