做动态网站的流程图什么是百度权重
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_filter=0
sudo sysctl -w net.ipv4.conf.all.rp_filter=0
永久取消
修改/etc/sysctl.conf 文件中的 net.ipv4.conf.all.rp_filter 设置成0
sudo vi /etc/sysctl.conf
改为:
net.ipv4.conf.default.rp_filter=0
net.ipv4.conf.all.rp_filter=0
4、添加组播地址路由:
route add -net 239.1.1.1 netmask 255.255.255.255 dev ens33