blob: aeed9da19c8a7837256324e9691b8c43fdf3c6d0 [file] [log] [blame]
Everton Marques871dbcf2009-08-11 15:43:05 -03001# $QuaggaId: $Format:%an, %ai, %h$ $
2
3DEBUG HINTS
4
5 - Check the source is issuing multicast packets with TTL high enough
6 to reach the recipients.
7
8 - Check the multicast packets are not being dropped due to
9 fragmentation problems.
10
11 - The following command generates a 100-kbps multicast stream for
12 channel 1.1.1.1,239.1.1.1 with TTL 10 and 1000-byte payload per UDP
13 packet (to avoid fragmentation):
14
15 nepim -b 1.1.1.1 -c 239.1.1.1 -T 10 -W 1000 -r 100k -a 1d
16
17 - Remotely you can receive that stream by running:
18
19 nepim -j 1.1.1.1+239.1.1.1@eth0
20 (Remember of enabling both "ip pim ssm" and "ip igmp" under eth0.)
21
22
23SAMPLE DEBUG COMMANDS
24
25 conf t
26 int eth0
27 ip pim ssm
28
29 test pim receive hello eth0 192.168.0.2 600 10 111 1000 3000 0
30 test pim receive join eth0 600 192.168.0.1 192.168.0.2 239.1.1.1 1.1.1.1
31
32 show ip pim join
33
34
35INTEROPERABILITY WITH CISCO
36
37 ! Cisco IP Multicast command reference:
38 ! ftp://ftpeng.cisco.com/ipmulticast/Multicast-Commands
39 !
40 ip pim ssm default ! enable SSM mode for groups 232.0.0.0/8
41 ip multicast-routing
42 ip pim state-refresh disable
43 no ip pim dm-fallback
44 !
45 interface FastEthernet0
46 ip pim sparse-mode
47 ip igmp version 3
48
49-x-