Пытаюсь реализовать предложенную Русланом схему. Транслирую с помощью vlc видео-файл через udp на 237.7.7.7:1234 с ttl=99. Принимаю с помощью vlc. Еффекта нет. Прошивки: оба DGS - r250b35, DES - r600b11. Схема такова:
[IPTV Server 192.168.1.0/24]--(1[DGS-3627]23]--[24(DGS-3627G]23)--(26[DES-3526]1-24)--[IPTV Client 192.168.0.0/24]
DGS-3627:
Код:
# VLAN
config vlan default delete 1-12,25-27
config vlan default add tagged 23
config vlan default add untagged 13-22,24
create vlan iptv tag 101
config vlan iptv add untagged 1
create vlan tv tag 206
config vlan tv add tagged 23
# IP
config ipif System ipaddress 10.90.90.5/16 vlan default
create ipif tv 192.168.206.1/30 tv state enable
create ipif iptv 192.168.1.1/24 iptv state enable
# MCFILTER
config multicast filtering_mode default forward_unregistered_groups
config multicast filtering_mode iptv forward_unregistered_groups
config multicast filtering_mode tv forward_unregistered_groups
# SNOOP
enable igmp_snooping
config igmp_snooping vlan iptv state enable
config igmp_snooping vlan tv state enable
config igmp_snooping querier all version 2
# ROUTE
create iproute 192.168.0.0/255.255.255.0 192.168.206.2 1 primary
# IGMP
config igmp ipif tv version 2 state enable
config igmp ipif iptv version 2 state enable
# PIMSM
enable pim
config pim ipif tv state enable mode sm
config pim ipif iptv state enable mode sm
create pim static_rp group 237.7.7.0/24 rp 192.168.1.1
DGS-3627G:
Код:
# VLAN
config vlan default delete 1-21,25-27
config vlan default add tagged 23-24
create vlan tv tag 206
config vlan tv add tagged 23-24
create vlan users tag 1313
config vlan users add tagged 23
config vlan users add untagged 21
# IP
config ipif System ipaddress 10.90.90.240/16 vlan default
create ipif tv 192.168.206.2/30 tv state enable
create ipif users 192.168.0.1/24 users state enable
# MCFILTER
config multicast filtering_mode default forward_unregistered_groups
config multicast filtering_mode tv forward_unregistered_groups
config multicast filtering_mode users forward_unregistered_groups
# SNOOP
enable igmp_snooping
config igmp_snooping vlan tv state enable
config igmp_snooping vlan users state enable
config igmp_snooping querier all version 2
# ROUTE
create iproute 192.168.1.0/255.255.255.0 192.168.206.1 1 primary
# IGMP
config igmp ipif tv version 2 state enable
config igmp ipif users version 2 state enable
# PIMSM
enable pim
config pim ipif tv state enable mode sm
config pim ipif users state enable mode sm
create pim static_rp group 237.7.7.0/24 rp 192.168.1.1
DES-3526:
Код:
# VLAN
config vlan default delete 1-24
config vlan default add untagged 25
config vlan default add tagged 26
create vlan users tag 1313
config vlan users add tagged 26
config vlan users add untagged 1-8
# FDB
config multicast port_filtering_mode 1-24 filter_unregistered_groups
# SNOOP
enable igmp_snooping
config igmp_snooping users state enable
create multicast_range iptv from 237.7.7.0 to 237.7.7.255
create multicast_range system from 224.0.0.1 to 224.0.0.2
create multicast_range pim from 224.0.0.13 to 224.0.0.14
config limited_multicast_addr ports 1-24 add multicast_range iptv
config limited_multicast_addr ports 1-24 add multicast_range system
config limited_multicast_addr ports 1-24 add multicast_range pim
config limited_multicast_addr ports 1-24 access permit state enable
# IP
config ipif System vlan default ipaddress 10.90.91.211/16 state enabled
Вывод комманд на DGS-3627:
Код:
DGS-3627:5#show igmp_snooping group
Command: show igmp_snooping group
Source/Group : NULL / 235.5.5.5
VLAN Name/VID : iptv/101
Port Member : 1
Mode : EXCLUDE
Source/Group : NULL / 239.255.255.250
VLAN Name/VID : iptv/101
Port Member : 1
Mode : EXCLUDE
Total Entries : 2
DGS-3627:5#show igmp_snooping forwarding
Command: show igmp_snooping forwarding
VLAN Name : iptv
Source IP : 192.168.1.2
Multicast Group : 237.7.7.7
Port Member : 23
Total Entries : 1
Вывод комманд на DGS-3627G:
Код:
DGS-3627G:5#show igmp_snooping group
Command: show igmp_snooping group
Source/Group : NULL / 237.7.7.7
VLAN Name/VID : users/1313
Port Member : 23
Mode : EXCLUDE
Source/Group : NULL / 239.255.255.250
VLAN Name/VID : users/1313
Port Member : 23
Mode : EXCLUDE
Total Entries : 2
DGS-3627G:5#show igmp_snooping forwarding
Command: show igmp_snooping forwarding
Total Entries : 0
Вывод комманд на DES-3526:
Код:
DES-3526:admin#show igmp_snooping group
Command: show igmp_snooping group
VLAN Name : users
Multicast group : 237.7.7.7
MAC address : 01-00-5E-07-07-07
Reports : 21
Port Member : 1
VLAN Name : users
Multicast group : 239.255.255.250
MAC address : 01-00-5E-7F-FF-FA
Reports : 19
Port Member : 1
Total Entries : 2
DES-3526:admin#show igmp_snooping forwarding
Command: show igmp_snooping forwarding
VLAN Name : users
Multicast group : 237.7.7.7
MAC address : 01-00-5E-07-07-07
Port Member : 1,26
VLAN Name : users
Multicast group : 239.255.255.250
MAC address : 01-00-5E-7F-FF-FA
Port Member : 1,26
Total Entries : 2
Подскажите, что я делаю не так.