Ciao,
ho il seguente problema in una rete costituita da:
1) una LAN Origine
2) due router A e B (in HSRP) attestati sulla LAN Origine
3) una LAN Destinazione
2) due router C e D (in HSRP) attestati sulla LAN Destinazione
3) due leased line che collegano A con C e B con D.
Host sulla LAN Origine generano multicast che deve essere ricevuto da host sulla LAN Destinazione. Il routing è dinamico (OSPF + PIM in modalità Dense).
Quello che mi aspetto e che ho riscontrato in configurazioni analoghe è che C e D si accordino in modo che uno ponga la propria interfaccia verso LAN Destinazione in forwarding, mentre l'altro ponga la propria interfaccia veso la LAN Destinazione in pruning. Dato che i percorsi di C e D verso la sorgente sono equivalenti, il forwarder dovrebbe essere quello con l'IP più alto.
Tuttavia, sia C che D hanno le rispettive interfacce in forwarding e quindi sulla LAN Destinazione mi trovo tutti i pacchetti multicast duplicati. Qualche idea sulla possibile causa (va detto che show ip pim neighbor mostra che C e D si riconoscono come vicini e C vede correttamente A com RPF e analogamente D vede B come RPF)
La configurazione di C è la seguente:
Current configuration : 1556 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname XXX
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
ip cef
!
!
!
!
ip multicast-routing
!
multilink bundle-name authenticated
!
!
!
!
username XXX privilege 15 password 0 XXX
!
!
!
!
!
!
interface FastEthernet0/0
ip address 10.5.2.194 255.255.255.224
ip pim dense-mode
ip igmp access-group 1
ip igmp query-interval 5
ip ospf dead-interval minimal hello-multiplier 3
ip ospf retransmit-interval 1
speed 100
full-duplex
no cdp enable
standby 1 ip 10.5.2.193
standby 1 timers 1 3
standby 1 priority 110
standby 1 preempt
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/0/0
bandwidth 2048
ip address 10.2.255.30 255.255.255.252
ip pim dense-mode
encapsulation ppp
ip ospf dead-interval minimal hello-multiplier 3
ip ospf retransmit-interval 1
keepalive 1
no cdp enable
!
interface Serial0/0/1
no ip address
shutdown
clock rate 2000000
!
router ospf 1
log-adjacency-changes
timers throttle spf 10 100 5000
timers throttle lsa all 10 100 5000
timers lsa arrival 80
network 10.2.255.28 0.0.0.3 area 0
network 10.5.2.192 0.0.0.31 area 0
!
!
!
ip http server
no ip http secure-server
!
logging trap debugging
logging 10.5.2.222
access-list 1 permit 224.2.11.253
!
!
!
!
control-plane
!
!
line con 0
line aux 0
line vty 0 4
privilege level 15
login local
transport input telnet ssh
!
scheduler allocate 20000 1000
end
La configurazione di D è:
Current configuration : 1556 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname XXX
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
ip cef
!
!
!
!
ip multicast-routing
!
multilink bundle-name authenticated
!
!
!
!
username XXX privilege 15 password 0 XXX
!
!
!
!
!
!
interface FastEthernet0/0
ip address 10.5.2.195 255.255.255.224
ip pim dense-mode
ip igmp access-group 1
ip igmp query-interval 5
ip ospf dead-interval minimal hello-multiplier 3
ip ospf retransmit-interval 1
speed 100
full-duplex
no cdp enable
standby 1 ip 10.5.2.193
standby 1 timers 1 3
standby 1 priority 105
standby 1 preempt
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/0/0
bandwidth 2048
ip address 10.2.255.34 255.255.255.252
ip pim dense-mode
encapsulation ppp
ip ospf dead-interval minimal hello-multiplier 3
ip ospf retransmit-interval 1
keepalive 1
no cdp enable
!
interface Serial0/0/1
no ip address
shutdown
clock rate 2000000
!
router ospf 1
log-adjacency-changes
timers throttle spf 10 100 5000
timers throttle lsa all 10 100 5000
timers lsa arrival 80
network 10.2.255.32 0.0.0.3 area 0
network 10.5.2.192 0.0.0.31 area 0
!
!
!
ip http server
no ip http secure-server
!
logging trap debugging
logging 10.5.2.222
access-list 1 permit 224.2.11.253
!
!
!
!
control-plane
!
!
line con 0
line aux 0
line vty 0 4
privilege level 15
login local
transport input telnet ssh
!
scheduler allocate 20000 1000
end
Duplicazione multicast
Moderatore: Federico.Lagni