패킷트레이서를 이용한 디폴트 정적 라우팅 설정 방법


 출입 경로가 하나 뿐인 스터브 네트워크는 디폴트 정적 경로 설정이 가능하다.


 기본 명령어의 형식은


Router(config)#ip route 0.0.0.0 0.0.0.0 {ip-address | exit-interface}


 정적 경로 설정과 비슷하다. 달라진 부분은 네트워크 주소와 서브넷 마스크가 0.0.0.0 (쿼드 제로, Quad-Zero)인 것이다.

Router2와 같이 두 개의 서로 다른 경로가 존재하므로 디폴트 정적 경로를 설정할 수 없다.


 아래는 Router0의 디폴트 정적 경로 설정 예시이다.

반드시 기존의 정적 경로은 삭제해야 한다.



Router#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
       i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
       * - candidate default, U - per-user static route, o - ODR
       P - periodic downloaded static route

Gateway of last resort is not set

C    192.168.10.0/24 is directly connected, FastEthernet0/0
C    192.168.20.0/24 is directly connected, Serial0/1/0
S    192.168.30.0/24 [1/0] via 192.168.20.2
S    192.168.40.0/24 [1/0] via 192.168.20.2
S    192.168.50.0/24 [1/0] via 192.168.20.2
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#ip route 0.0.0.0 0.0.0.0 192.168.20.2
Router(config)#exit
Router#
%SYS-5-CONFIG_I: Configured from console by console

Router#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
       i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
       * - candidate default, U - per-user static route, o - ODR
       P - periodic downloaded static route

Gateway of last resort is 192.168.20.2 to network 0.0.0.0

C    192.168.10.0/24 is directly connected, FastEthernet0/0
C    192.168.20.0/24 is directly connected, Serial0/1/0
S    192.168.30.0/24 [1/0] via 192.168.20.2
S    192.168.40.0/24 [1/0] via 192.168.20.2
S    192.168.50.0/24 [1/0] via 192.168.20.2
S*   0.0.0.0/0 [1/0] via 192.168.20.2
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#no ip route 192.168.30.0 255.255.255.0 192.168.20.2
Router(config)#no ip route 192.168.40.0 255.255.255.0 192.168.20.2
Router(config)#no ip route 192.168.50.0 255.255.255.0 192.168.20.2

Router(config)#exit
Router#
%SYS-5-CONFIG_I: Configured from console by console
show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
       i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
       * - candidate default, U - per-user static route, o - ODR
       P - periodic downloaded static route

Gateway of last resort is 192.168.20.2 to network 0.0.0.0

C    192.168.10.0/24 is directly connected, FastEthernet0/0
C    192.168.20.0/24 is directly connected, Serial0/1/0
S*   0.0.0.0/0 [1/0] via 192.168.20.2
Router#


 라우팅 테이블을 보면 디폴트 정적 경로 설정은 S*로 표기되는 것을 확인할 수 있다. 빨간색으로 표시한 기존의 정적 경로는 삭제해야 한다는 것을 다시 한 번 강조한다. 미삭제시 패킷이 전송되지 않는다.


 이 방법으로 라우팅 프로토콜 설정을 단순하게 해줄 수 있고 라우팅 테이블을 간결하게 할 수 있다.

'네트워크 > 패킷 트레이서' 카테고리의 다른 글

RIPv1 설정  (0) 2013.02.14
CDP (Cisco Discovery Protocol)  (0) 2013.02.02
경로 요약 (Route Summarization)  (1) 2013.01.29
정적 라우팅 (Static Routing) 설정  (0) 2013.01.24

+ Recent posts