Finally I got it working with the same config as MastaG
Except for the below.
Only works with rp_filter turned off on vlan4
Note! If your firewall is turned on, accept Multicast UDP traffic:
igmpproxy.conf:
quickleave
phyint vlan4 upstream ratelimit 0 threshold 1
altnet 0.0.0.0/0
phyint br0 downstream ratelimit 0 threshold 1
Except for the below.
Only works with rp_filter turned off on vlan4
/bin/echo 0 > /proc/sys/net/ipv4/conf/vlan4/rp_filter
Note! If your firewall is turned on, accept Multicast UDP traffic:
#Accept multicast
iptables -I INPUT -p udp -d 224.0.0.0/4 -j ACCEPT
iptables -I INPUT -p igmp -d 224.0.0.0/4 -j ACCEPT
iptables -I FORWARD -p udp -d 224.0.0.0/4 -j ACCEPT
#Masquerade
iptables -t nat -I POSTROUTING -d 213.75.112.0/255.255.248.0 -o vlan4 -j MASQUERADE
iptables -t nat -I POSTROUTING -d 10.196.128.0/255.255.192.0 -o vlan4 -j MASQUERADE
iptables -I INPUT -p udp -d 224.0.0.0/4 -j ACCEPT
iptables -I INPUT -p igmp -d 224.0.0.0/4 -j ACCEPT
iptables -I FORWARD -p udp -d 224.0.0.0/4 -j ACCEPT
#Masquerade
iptables -t nat -I POSTROUTING -d 213.75.112.0/255.255.248.0 -o vlan4 -j MASQUERADE
iptables -t nat -I POSTROUTING -d 10.196.128.0/255.255.192.0 -o vlan4 -j MASQUERADE
igmpproxy.conf:
quickleave
phyint vlan4 upstream ratelimit 0 threshold 1
altnet 0.0.0.0/0
phyint br0 downstream ratelimit 0 threshold 1
Last edited: