문제파일 이 풀이는 타 사이트들의 풀이를 참고하여 몇부분을 추가하였다. 음.. 이문제는 두줄로 표현하자면, 추가된 R3의 eigrp를 제시한 212로 변경 → R3의 대역을 다시 업데이트 → R1에서 R3와 같은 대역이 있는지 확인...

1. EIGRP 시뮬문제


이 풀이는 타 사이트들의 풀이를 참고하여 몇부분을 추가하였다.

음.. 이문제는 두줄로 표현하자면,
추가된 R3의 eigrp를 제시한 212로 변경 → R3의 대역을 다시 업데이트 → R1에서 R3와 같은 대역이 있는지 확인 → 추가되지 않는 대역을 업데이트 → 핑테스트.

과정은 복잡해보지만 한번 해보니 쉬운 것 같다.































먼저 질문의 내용은 다음과 같다.

Your company has just added R3 router to the existing network. But currently no routing updates are being exchanged between R3 and the network. All other connectivity, including Internet access are working properly.
The task is to identify the fault(s) and correct the router configuration to provide full connectivity between the routers. All passwords on all routers are set to cisco. IP addresses are listed in the chart below.

당신의 회사에 R3라우터가 네트워크상에 추가되었다. 그러나 현재 R3와 네트워크 간 업데이트는 없다. 이외 인터넷 접속을 포함하여 다른 것들은 잘 동작되고 있다.
지금 해야 될 것: 잘못된 것을 파악하고, 라우터 간 (문제없는) 완전한 연결을 제공하기 위해 라우터 설정을 올바르게 설정하라. 라우터의 모든 패스워드는 cisco 로 설정되어있다.

0. 모든 설정 후 결과값에 이상이 있을 때 모든 설정 초기화
Router(config)#no access-list 100

1. AS 확인


그림에서 eigrp 212가 설정되어있으므로 라우터 설정 확인.
R3 만 추가되었기 때문에 R3의 AS NUMBER은 22이며, 다른 라우터는 212로 설정됨

show running-config


2. eigrp 22를 삭제 후 212로 설정

configure terminal
no router eigrp 22
router eigrp 212



3. eigrp 212로 수정됨


4. eigrp 가 변경됬으므로 대역을 다시 업데이트

R3(config)#no router eigrp 22
R3(config)#router eigrp 212 ----- eigrp 212 구성 시작
R3(config-router)#network 192.168.60.0
R3(config-router)#network 192.168.77.0
R3(config-router)#no auto-summary
R3(config-router)#end
R3#
%SYS-5-CONFIG_I: Configured from console by console


R3#copy running-config startup-config


5. 대역 추가

R1 에는 60.0만 있고 추가된 대역이 없으므로 추가.



R1(config)#router eigrp 212 ---- eigrp 212 구성 시작
R1(config-router)#network 192.168.77.0 --- 대역 추가
R1(config-router)#
%DUAL-5-NBRCHANGE: IP-EIGRP 212: Neighbor 192.168.77.34 (FastEthernet0/0) is up: new adjacency

R1(config-router)#end
R1#
%SYS-5-CONFIG_I: Configured from console by console

R1#copy running-config startup-config ----- 저장

Destination filename [startup-config]?



추가됨.



6. ping 테스트

R3 에서 R2, R4 PING 테스트


0 개의 댓글: