海口专业网站制作策划,工厂网站建设费用,网页制作与设计在哪搜题,网站开发说明文档1、检查Linux系统是否接收到组播数据 使用tcpdump工具#xff0c;检查源或者目的地址#xff08;例如#xff0c;239.1.1.1:9001#xff09;的数据包 tcpdump -i ens33 host 239.1.1.1 port 9001 2、关闭防火墙
临时关闭#xff1a; systemctl stop firewalld service ip…1、检查Linux系统是否接收到组播数据 使用tcpdump工具检查源或者目的地址例如239.1.1.1:9001的数据包 tcpdump -i ens33 host 239.1.1.1 port 9001 2、关闭防火墙
临时关闭 systemctl stop firewalld service iptables stop 永久关闭 systemctl disable firewalld chkconfig iptables off 3、修改取消过滤
临时取消 sudo sysctl -w net.ipv4.conf.en4.rp_filter0 sudo sysctl -w net.ipv4.conf.all.rp_filter0 永久取消
修改/etc/sysctl.conf 文件中的 net.ipv4.conf.all.rp_filter 设置成0 sudo vi /etc/sysctl.conf 改为 net.ipv4.conf.default.rp_filter0 net.ipv4.conf.all.rp_filter0 4、添加组播地址路由 route add -net 239.1.1.1 netmask 255.255.255.255 dev ens33