정적 라우팅 설정 실습하기
다음 그림에서 192.168.0.101 PC와 192.168.10.101 PC간에 서로 트래픽을 주고 받을 수 있도록 라우터를 설정하세요.
그림. 네트워크 구성
<<해설>>
라우터 A 설정하기
Router> enable
Router# configure terminal
Router(config)# hostname RouterA
RouterA(config)# interface fastethernet 0/0
RouterA(config-if)# ip address 192.168.0.1 255.255.255.0
RouterA(config-if)# no shutdown
RouterA(config)# interface fastethernet 0/1
RouterA(config-if)# ip address 192.168.5.1 255.255.255.0
RouterA(config-if)# no shutdown
RouterA(config-if)# exit
RouterA(config)# ip route 192.168.10.0 255.255.255.0 192.168.5.2
RouterA(config)# end
RouterA# show ip route
라우터 B 설정하기
Router> enable
Router# configure terminal
Router(config)# hostname RouterB
RouterB(config)# interface fastethernet 0/1
RouterB(config-if)# ip address 192.168.10.1 255.255.255.0
RouterB(config-if)# no shutdown
RouterB(config)# interface fastethernet 0/1
RouterB(config-if)# ip address 192.168.5.2 255.255.255.0
RouterB(config-if)# no shutdown
RouterB(config-if)# exit
RouterB(config)# ip route 192.168.0.0 255.255.255.0 192.168.5.1
RouterB(config)# end
RouterB# show ip route
hostname 라우터 이름을 변경한다.
ip route 정정 라우팅 설정을 한다. 목적지 네트워크 주소와 서브넷마스크를 입력하고 인접한 라우터의 인터페이스 주소를 지정한다.
ip route A.B.C.D(목적지 네트워크 주소) A.B.C.D(서브넷마스크) A.B.C.D(다음 홉 인터페이스 주소)