blob: d5b10bf8a15b3a758e264eb0b0d4e9c885b20a5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
log commands
!
interface r1-eth0
ip address 192.168.1.1/24
ip pim
!
interface r1-eth1
ip address 192.168.100.1/24
ip igmp
ip pim passive
!
interface lo
ip address 10.254.254.1/32
ip pim
ip pim use-source 10.254.254.1
!
router bgp 65100
no bgp ebgp-requires-policy
no bgp network import-check
neighbor 192.168.1.2 remote-as 65200
!
address-family ipv4 unicast
redistribute connected
exit-address-family
!
router pim
msdp originator-id 10.254.254.1
msdp log sa-events
msdp peer 192.168.1.2 source 192.168.1.1
rp 192.168.1.1
!
|