N's Story

PIM-DM 실습 본문

■ Communications /↘ Cisco GNS

PIM-DM 실습

AndrewNa 2019. 3. 29. 14:30
728x90
반응형

Topology

 

 

Command(기본설정 제외)

-R2-

R2(config)#ip multicast-routing

R2(config)#int range fa 0/0 - 1

R2(config-if-range)#ip pim dense-mode

 

-R3-

R3(config)#ip multicast-routing

R3(config)#int range fa 0/0 - 1​

R3(config-if-range)#ip pim dense-mode

 

-R4-

R4(config)#ip multicast-routing

R4(config)#int range fa 0/0 - 2​

R4(config-if-range)#ip pim dense-mode

 

-R5-

R5(config)#ip multicast-routing

R5(config)#int range fa 0/0 - 1​

R5(config-if-range)#ip pim dense-mode

 

-R6-

R6(config)#ip multicast-routing

R6(config)#int range fa 0/0 - 2​

R6(config-if-range)#ip pim dense-mode

 

 

Check

각 라우터에서 show ip pim neighbor를 하면 인접한 pim neighbor를 확인할 수 있다.

R4#show ip pim neighbor

 

R1에서 Multicast로 핑을 보내면 .......뜨면서 가지 않음을 확인할 수 있다.

이는 패킷 요청이 없기 때문인데, 이때 호스트로 설정된 R7에서 가입을 하여 요청을 하게되면 핑이 간다.

 

R7(config)#int f0/0

R7(config-if)#ip igmp join-ngroup 239.1.1.1

 

R1#ping 239.1.1.1 repeat 1000000 // 멀티캐스트 방송 시작

 

멀티캐스트 패킷을 수신 후 각 라우터에서 show ip mroute를 하면 멀티캐스팅 라우팅 테이블을 확인할 수 있다.

 

R#show ip mroute

 

이 때의 패킷 경로는 아래와 같다.

 

 

 

 

 

728x90
반응형

'■ Communications > ↘ Cisco GNS' 카테고리의 다른 글

PIM-SM Auto RP 이론 및 실습  (0) 2019.03.29
PIM-SM 정적 RP 이론 및 실습  (0) 2019.03.29
GLBP 실습  (0) 2019.03.28
VRRP 이론 및 실습  (0) 2019.03.25
IP SLA 이론 및 실습  (0) 2019.03.25
Comments