Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
63 views
14 pages
Lec-6 Multicast RPF (Reverse Path Forwarding)
Uploaded by
Abhishek garg
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as PDF or read online on Scribd
Download
Save
Save lec-6 Multicast RPF (Reverse Path Forwarding) For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
0 ratings
0% found this document useful (0 votes)
63 views
14 pages
Lec-6 Multicast RPF (Reverse Path Forwarding)
Uploaded by
Abhishek garg
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as PDF or read online on Scribd
Carousel Previous
Carousel Next
Download
Save
Save lec-6 Multicast RPF (Reverse Path Forwarding) For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
Download
Save lec-6 Multicast RPF (Reverse Path Forwarding) For Later
You are on page 1
/ 14
Search
Fullscreen
osiosi2023, 22:42 Multicast RPF (Reverse Path Forwarding) Search Q © Multicast RPF (Reverse Path Forwarding) One of the key differences between unicast and multicast is that for unicast routing, we only care about where the destination is located and how to get there, For multicast routing, we care about where the source is located. PIM (Protocol independent Multicast) uses the unicast routing table to check what interface will be used to reach the source. PIM will only accept multicast packets on an interface we use to reach the source. If we receive multicast, packets on an interface we don't use to reach the source, we will drop the multicast packets! This is called an RPF failure, and its the #1 issue why multicast isn’t working for many networking students. Let me demonstrate this using a very simple topology: N 1 = = o 8 a & gl wo 7 3 Rn F.2 a 192.168.23.0 /24 4 » Fa0/1- Fao/t 2 L w © 380 2s ; Ne . +s 192.168.32.0 /24 © cere Above, you see three routers. R1 will be the source for our multicast traffic. Between R2 and R3, we have ‘two links... slow serial link and a Fastéthernet link. R3 has a loopback interface we will use as the receiver hllps:inetworklessons.com/mullicastmullicastrpt-reverse-path-forwarding on(091052023, 22:42 Muleast RPF (Reverse Path Forwarding) a R1(config)#router ospf 1 R1(config-router)#network 0.0.0.0 255.255.255.255 area ® R2(config)#router ospf 1 R2(config-router)#network 0.0.0.0 255.255.255.255 area 0 R3(config)#router ospf 1 R3(config-router)#network @.0.0.0 255.255.255.255 area @ | will enable OSPF on all interfaces quickly using the network command above. OSPF will prefer to use the FastEthernet link and won't use the serial link: R2#tshow ip route ospf 3.0.0.0/32 is subnetted, 1 subnets 0 3.3.3.3 [110/11] via 192.168.23.3, 00:00:02, FastEtherneto/1 ‘As you can see we don't use the serial link because the Fastéthernet link has a lower cost. Now I'm going to configure multicast on all routers, but | will only activate it on the serial link between R2 and R3: Ri(config)#ip multicast-routing R1(config)#interface fastEthernet 0/2 R1(config-if)#ip pim dense-mode R2(config)#ip multicast-routing R2(config)#interface fastEthernet 0/8 R2(config-if)#ip pim dense-mode R2(config)#interface serial 0/0 R2(config-if)#ip pim dense-mode @ R3(config)#ip multicast-routing R3(config)#interface serial 0/0 hitpstnetworklessons.com/mulicastmulicastrp-raverse-path-forwarding ana(091052023, 22:42 Muleast RPF (Reverse Path Forwarding) a R3(config)#interface loopback @ R3(config-if)#ip pim dense-mode | activated PIM dense mode, so we don't have to worry about an RP (Rendezvous Point). This is what we have right now: * We use the FastEthernet link between R2 and R3 for ut ast traffic. * We use the serial link between R2 and R3 for multicast traffic. Let's send some multicast traffic from R1 and receive it on R3: R3(config)#interface loopback @ R3(config-if)#ip pim dense-mode R3(config-if)#ip igmp join-group 239.1.1.1 Ri#ping 239.1.1.1 repeat 9999 Type escape sequence to abort. Sending 9999, 100-byte ICMP Echos to 239.1.1.1, timeout is 2 seconds: 3 will join the 239.1.1.1 multicast group address, and R1 will send some pings...as you can see, they are failing. Why? Let's find out: R2itshow ip mroute 239.1.1.1 IP Multicast Routing Table Flags: D L t x u z y Outgoing Timers: ~ Dense, $ - Sparse, B - Bidir Group, s - SSM Group, C - Connected, = Local, P = Pruned, R= RP-bit set, F - Register flag, ~ SPT-bit set, ) - Join SPT, M - MSDP created entry, ~ Proxy Join Timer Running, A - Candidate for MSOP Advertisement, ~ URD, I - Received Source Specific Host Report, @ - Multicast Tunnel, z - MOT-data group sender, - Joined MDT-data group, y - Sending to "OT-data group interface flags: H - Hardware switched, A - Assert winner Uptime/Expires hitpstnetworklessons.com/mulicastmulicastrp-raverse-path-forwarding ana(091052023, 22:42 Muleast RPF (Reverse Path Forwarding) a (*, 239.1.1.1), 08:00:03/stopped, RP 0.0.0.0, flags: D Incoming interface: Null, RPF nbr 0.0.0.0 outgoing interface list: FastEthernet@/@, Forward/Dense, 00:00:03/00:00:00 Serial@/@, Forward/Dense, @0:00:03/00:00:00 (192.168.12.1, 239.1.1.1), 00:00:03/00:02:56, flags: T Incoming interface: FastEthernet@/®, RPF nbr 192.168.12.1 outgoing interface list: Serial@/@, Forward/Dense, 8:00:03/00:00:00 ‘Above, you can see that R2 is forwarding the multicast traffic toward R3. Let's enable multicast debugging on R3 to find out why it is not accepting this traffic: R3(config)#interface serial 0/0 R3(config-if)#no ip mroute-cache Ifyou want to debug multicast traffic, you have to disable multicast route caching, The ip mroute cache command is deprecated since 10S 15. The no ip mfib cef input andno Bip mfib cef output commands in combination with debug ip m#ib ps should work in 10S 15 and later versions. | will do this on the serial interface. Let’s enable that debug: R3idebug ip mpacket IP multicast packets debugging is on IP(@): s=192.168.12.1 (Serial@/@) d=239.1.1.1 id-84, tt1=253, prot=1, len=104(100), not RPF interface Here is the magic answer..."not RPF interface”, Here's what is going on: 8 R3itshow ip route ospf hitpstnetworklessons.com/mulicastmulicastrp-raverse-path-forwarding ana(091052023, 22:42 Muleast RPF (Reverse Path Forwarding) a R3vshow ip mroute 239.1.1.1 IP Multicast Routing Table Flags: D - Dense, S - Sparse, B - Bidir Group, s - SSM Group, C - Connected, L = Local, P + Pruned, R = RP-bit set, F = Register flag, - SPT-bit set, J - Join SPT, M - MSDP created entry, - Proxy Join Timer Running, A - Candidate for MSDP Advertisement, - URD, I - Received Source Specific Host Report, = Multicast Tunnel, z = MDT-data group sender, - Joined MDT-data group, y - Sending to MDT-data group R
You might also like
The Subtle Art of Not Giving a F*ck: A Counterintuitive Approach to Living a Good Life
From Everand
The Subtle Art of Not Giving a F*ck: A Counterintuitive Approach to Living a Good Life
Mark Manson
4/5 (6458)
Principles: Life and Work
From Everand
Principles: Life and Work
Ray Dalio
4/5 (648)
The Gifts of Imperfection: Let Go of Who You Think You're Supposed to Be and Embrace Who You Are
From Everand
The Gifts of Imperfection: Let Go of Who You Think You're Supposed to Be and Embrace Who You Are
Brené Brown
4/5 (1175)
Never Split the Difference: Negotiating As If Your Life Depended On It
From Everand
Never Split the Difference: Negotiating As If Your Life Depended On It
Chris Voss
4.5/5 (1005)
The Glass Castle: A Memoir
From Everand
The Glass Castle: A Memoir
Jeannette Walls
4.5/5 (1856)
Grit: The Power of Passion and Perseverance
From Everand
Grit: The Power of Passion and Perseverance
Angela Duckworth
4/5 (650)
Sing, Unburied, Sing: A Novel
From Everand
Sing, Unburied, Sing: A Novel
Jesmyn Ward
4/5 (1267)
The Perks of Being a Wallflower
From Everand
The Perks of Being a Wallflower
Stephen Chbosky
4.5/5 (4103)
Her Body and Other Parties: Stories
From Everand
Her Body and Other Parties: Stories
Carmen Maria Machado
4/5 (903)
Shoe Dog: A Memoir by the Creator of Nike
From Everand
Shoe Dog: A Memoir by the Creator of Nike
Phil Knight
4.5/5 (629)
Hidden Figures: The American Dream and the Untold Story of the Black Women Mathematicians Who Helped Win the Space Race
From Everand
Hidden Figures: The American Dream and the Untold Story of the Black Women Mathematicians Who Helped Win the Space Race
Margot Lee Shetterly
4/5 (1022)
The Hard Thing About Hard Things: Building a Business When There Are No Easy Answers
From Everand
The Hard Thing About Hard Things: Building a Business When There Are No Easy Answers
Ben Horowitz
4.5/5 (361)
Steve Jobs
From Everand
Steve Jobs
Walter Isaacson
4.5/5 (1139)
Elon Musk: Tesla, SpaceX, and the Quest for a Fantastic Future
From Everand
Elon Musk: Tesla, SpaceX, and the Quest for a Fantastic Future
Ashlee Vance
4.5/5 (582)
The Emperor of All Maladies: A Biography of Cancer
From Everand
The Emperor of All Maladies: A Biography of Cancer
Siddhartha Mukherjee
4.5/5 (298)
A Man Called Ove: A Novel
From Everand
A Man Called Ove: A Novel
Fredrik Backman
4.5/5 (5181)
The Yellow House: A Memoir (2019 National Book Award Winner)
From Everand
The Yellow House: A Memoir (2019 National Book Award Winner)
Sarah M. Broom
4/5 (100)
Angela's Ashes: A Memoir
From Everand
Angela's Ashes: A Memoir
Frank McCourt
4.5/5 (943)
Brooklyn: A Novel
From Everand
Brooklyn: A Novel
Colm Toibín
3.5/5 (2141)
The Little Book of Hygge: Danish Secrets to Happy Living
From Everand
The Little Book of Hygge: Danish Secrets to Happy Living
Meik Wiking
3.5/5 (464)
The World Is Flat 3.0: A Brief History of the Twenty-first Century
From Everand
The World Is Flat 3.0: A Brief History of the Twenty-first Century
Thomas L. Friedman
3.5/5 (2289)
Devil in the Grove: Thurgood Marshall, the Groveland Boys, and the Dawn of a New America
From Everand
Devil in the Grove: Thurgood Marshall, the Groveland Boys, and the Dawn of a New America
Gilbert King
4.5/5 (280)
Yes Please
From Everand
Yes Please
Amy Poehler
4/5 (2016)
Bad Feminist: Essays
From Everand
Bad Feminist: Essays
Roxane Gay
4/5 (1090)
The Art of Racing in the Rain: A Novel
From Everand
The Art of Racing in the Rain: A Novel
Garth Stein
4/5 (4372)
A Tree Grows in Brooklyn
From Everand
A Tree Grows in Brooklyn
Betty Smith
4.5/5 (2033)
The Woman in Cabin 10
From Everand
The Woman in Cabin 10
Ruth Ware
3.5/5 (2814)
The Outsider: A Novel
From Everand
The Outsider: A Novel
Stephen King
4/5 (2886)
A Heartbreaking Work Of Staggering Genius: A Memoir Based on a True Story
From Everand
A Heartbreaking Work Of Staggering Genius: A Memoir Based on a True Story
Dave Eggers
3.5/5 (233)
The Sympathizer: A Novel (Pulitzer Prize for Fiction)
From Everand
The Sympathizer: A Novel (Pulitzer Prize for Fiction)
Viet Thanh Nguyen
4.5/5 (141)
Team of Rivals: The Political Genius of Abraham Lincoln
From Everand
Team of Rivals: The Political Genius of Abraham Lincoln
Doris Kearns Goodwin
4.5/5 (244)
Wolf Hall: A Novel
From Everand
Wolf Hall: A Novel
Hilary Mantel
4/5 (4135)
On Fire: The (Burning) Case for a Green New Deal
From Everand
On Fire: The (Burning) Case for a Green New Deal
Naomi Klein
4/5 (78)
Rise of ISIS: A Threat We Can't Ignore
From Everand
Rise of ISIS: A Threat We Can't Ignore
Jay Sekulow
3.5/5 (144)
Manhattan Beach: A Novel
From Everand
Manhattan Beach: A Novel
Jennifer Egan
3.5/5 (919)
Fear: Trump in the White House
From Everand
Fear: Trump in the White House
Bob Woodward
3.5/5 (836)
John Adams
From Everand
John Adams
David McCullough
4.5/5 (2546)
72-Application Control
PDF
No ratings yet
72-Application Control
2 pages
68-Web Filter Lab
PDF
No ratings yet
68-Web Filter Lab
12 pages
08 Installing+EVE NG
PDF
No ratings yet
08 Installing+EVE NG
10 pages
71-DNS Filter
PDF
No ratings yet
71-DNS Filter
8 pages
IS-IS Metric
PDF
No ratings yet
IS-IS Metric
9 pages
11-Upload Other Images in EVE
PDF
No ratings yet
11-Upload Other Images in EVE
6 pages
62-Introduction AAA
PDF
No ratings yet
62-Introduction AAA
4 pages
IS-IS Summarization
PDF
No ratings yet
IS-IS Summarization
12 pages
IS-IS Filtering
PDF
No ratings yet
IS-IS Filtering
12 pages
MA5600T (N63E-22) Quick Installation Guide 07
PDF
No ratings yet
MA5600T (N63E-22) Quick Installation Guide 07
31 pages
14-Cisco ISE Lab
PDF
No ratings yet
14-Cisco ISE Lab
4 pages
Lec-11 Multicast PIM Prune Override
PDF
No ratings yet
Lec-11 Multicast PIM Prune Override
16 pages
Lec-12 Multicast PIM Register Message
PDF
No ratings yet
Lec-12 Multicast PIM Register Message
8 pages
IS-IS Redistribution
PDF
No ratings yet
IS-IS Redistribution
12 pages
IS-IS Route Leaking
PDF
No ratings yet
IS-IS Route Leaking
20 pages
S6700 Series Switches Hardware Description
PDF
No ratings yet
S6700 Series Switches Hardware Description
579 pages
Stateless Autoconfiguration For IPv6
PDF
No ratings yet
Stateless Autoconfiguration For IPv6
5 pages
Cisco Press - IS-IS Network Design Solutions
PDF
No ratings yet
Cisco Press - IS-IS Network Design Solutions
352 pages
Rest Api
PDF
No ratings yet
Rest Api
13 pages
Cisco NetFlow
PDF
No ratings yet
Cisco NetFlow
10 pages
Lec-8 Multicast PIM Designated Router
PDF
No ratings yet
Lec-8 Multicast PIM Designated Router
10 pages
IPv6 Solicited Node Multicast Address
PDF
No ratings yet
IPv6 Solicited Node Multicast Address
5 pages
SNMP
PDF
No ratings yet
SNMP
12 pages
Rack Mounted Equipment
PDF
No ratings yet
Rack Mounted Equipment
64 pages
IPv6 Redistribution Between RIPNG and OSPFv3
PDF
No ratings yet
IPv6 Redistribution Between RIPNG and OSPFv3
7 pages
Shortening of Ipv6
PDF
No ratings yet
Shortening of Ipv6
4 pages
PSTN
PDF
No ratings yet
PSTN
134 pages
IPv6 Address Types
PDF
No ratings yet
IPv6 Address Types
6 pages
Sonetsdh
PDF
No ratings yet
Sonetsdh
66 pages
Ipv6 Summarization Example
PDF
No ratings yet
Ipv6 Summarization Example
4 pages
The Unwinding: An Inner History of the New America
From Everand
The Unwinding: An Inner History of the New America
George Packer
4/5 (45)
The Light Between Oceans: A Novel
From Everand
The Light Between Oceans: A Novel
M.L. Stedman
4.5/5 (815)
Little Women
From Everand
Little Women
Louisa May Alcott
4.5/5 (2369)
The Constant Gardener: A Novel
From Everand
The Constant Gardener: A Novel
John le Carré
4/5 (278)