我在设备上运行 openwrt 并有一个 python 脚本,可以监听和打印以筛选 239.2.1.1 上的多播流量。

但是,屏幕上没有打印任何内容,我认为这是防火墙问题。
如何确保在运行 openwrt 的 LAN 接口(interface)上允许多播流量?

最佳答案

我知道现在有点晚了,但我想它会帮助仍在寻找答案的人。

安装 IGMPProxy

install igmpproxy
make menuconfig
 -> Network
  -> Routing and Redirection

在 bin 文件夹中查找这里的包AR9331 hardware:- bin/ar71xx/packages/base/igmpproxy_0.1-9_ar71xx.ipk
copy the ipk to openwrt router.
opkg install igmpproxy
/etc/init.d/igmpproxy start

确保您在 /etc/config/firewall 中有此部分
config rule
        option name             Allow-IGMP
        option src              wan
        option proto            igmp
        option family           ipv4
        option target           ACCEPT

确保您在/etc/config/igmpproxy 中有此部分
config igmpproxy
        option quickleave 1

config phyint
        option network wan
        option direction upstream
        list altnet 0.0.0.0/0

config phyint
        option network lan
        option direction downstream

确保网络配置中的以下内容
In /etc/config/igmpproxy
config interface lan
        option igmp_snooping 1

在 br-lan 中也启用
echo "0" > /sys/devices/virtual/net/br-lan/bridge/multicast_snooping

关于linux - Openwrt 允许多播流量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34756589/

10-11 09:06