네트워크/라우팅,스위칭 관리

Sisco Router Routing Protocol 설정 - Default

Jaden Park 2021. 4. 28. 18:14

디폴트 라우팅 프로토콜은 특수한 유형은 정적(static) 경로

송신지에서 수진시를 알지 못하는 모든 패킷을 라우팅하는 경로

모든 경로에 관한 정보를 저장하기에는 라우팅 테이블의 공간이 충분하지 않을 때 사용

 

 

 

Router(config)# ip route 0.0.0.0 0.0.0.0 [다음홉주소]

Router16> enable

Router16# conf t

Router16(config)# interface serial 2/0

Router16(config-if)# ip address 192.168.2.1 255.255.255.0

Router16(config-if)# no shutdown

Router16(config)# interface fastEthernet 0/0

Router16(config-if)# ip address 192.168.1.2 255.255.255.0

Router16(config-if)# no shutdown

Router16(config)# ip route 0.0.0.0 0.0.0.0 192.168.2.2

위와 같은 방법으로 Router17 도 설정해주면 된다.