Имеется cisco 3725, Cisco IOS Software C3725-ADVENTERPRISEK9_SNA-M Version 12.4(23)
Настроен NAT на трех провайдеров.
Попытался настроить iptv... Работает только от первого провадера.
Адреса каналов вещания у двух провайдеров:
второй 239.xxx.0.0
первый 239.0.x.0 и 239.0.xx.0
Подскажите как получить iptv от обоих провайдеров одновременно?!
interface FastEthernet0/0
description home net
ip address 192.168.1.1 255.255.255.0
ip pim sparse-mode
ip nat inside
ip virtual-reassembly
ip igmp helper-address 10.1.1.1 - тут вообще пришлось вписать левый ip...
duplex auto
speed auto
no cdp enable
no mop enabled
!
interface FastEthernet0/1
description firstWAN
mac-address 00xx.xxxx.xxxx
ip address dhcp client-id FastEthernet0/1
ip pim sparse-mode
ip nat outside
ip virtual-reassembly
duplex auto
speed auto
no cdp enable
!
interface FastEthernet1/0
description secondWAN
ip address 10.100.xxx.xxx 255.255.255.0
ip pim sparse-mode
ip nat outside
ip virtual-reassembly
duplex auto
speed auto
no cdp enable
!
interface FastEthernet1/1
description thirdWAN
ip address dhcp
ip nat outside
ip virtual-reassembly
duplex auto
speed auto
no cdp enable
!
!
ip forward-protocol nd
ip route 0.0.0.0 0.0.0.0 ip-gateway-firstWAN
!тут маршруты для локалок провайдеров 2 и 3
ip route 10.16.0.0 255.240.0.0 ip-gateway-thirdWAN
ip route 10.32.0.0 255.240.0.0 ip-gateway-thirdWAN
ip route 10.64.0.0 255.240.0.0 ip-gateway-thirdWAN
ip route 10.96.0.0 255.224.0.0 ip-gateway-secondWAN
ip route 10.115.202.0 255.255.255.0 ip-gateway-secondWAN
ip route 10.128.0.0 255.192.0.0 ip-gateway-secondWAN
ip route 10.255.0.0 255.255.0.0 ip-gateway-thirdWAN
!
!
ip pim rp-address xxx.xxx.xxx.xxx first-iptv override
ip pim rp-address yyy.yyy.yyy.yyy second-iptv override
ip nat inside source route-map second interface FastEthernet1/0 overload
ip nat inside source route-map first interface FastEthernet0/1 overload
ip nat inside source route-map third interface FastEthernet1/1 overload
!
ip access-list standard second-iptv
permit 239.xxx.0.0 0.0.0.255
ip access-list standard first-iptv
permit 239.0.x.0 0.0.0.255
permit 239.0.xx.0 0.0.0.255
!
access-list 10 permit 192.168.1.0 0.0.0.255
snmp-server community public RO
no cdp run
!
route-map second permit 20
match ip address 10
match interface FastEthernet1/0
!
route-map first permit 10
match ip address 10
match interface FastEthernet0/1
!
route-map third permit 30
match ip address 10
match interface FastEthernet1/1
!