markdown vLans的多播代理

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown vLans的多播代理相关的知识,希望对你有一定的参考价值。

```
yum update -y
yum install net-tools nano git -y
yum install epel-release -y
yum install python-pip -y
pip install --upgrade pip
pip install netifaces
git clone https://github.com/alsmith/multicast-relay.git
systemctl disable firewalld
systemctl stop firewalld
```
Check that its working by running it in the foreground
```
/usr/bin/python /root/multicast-relay/multicast-relay.py --interfaces eth0 eth1 eth2 --verbose --foreground
```
If you don't see traffic being relayed something is wrong. If its working lets make it run at boot.
```
crontab -e
```
Add and save the following, change the interfaces if neccesary
```
@reboot    /usr/bin/python /root/multicast-relay/multicast-relay.py --interfaces eth0 eth1 eth2 --wait
```

Reboot and check that its running after you reboot
```
ps aux | grep python
```

以上是关于markdown vLans的多播代理的主要内容,如果未能解决你的问题,请参考以下文章

swift 带有哈希表的多播代理

如何进行推送通知的多播?

iOS 14 上的多播网络授权

Aeron - 跨交换机的多播问题

如果启用了环回,为啥发送方收不到它的多播 UDP 数据包?

Spring Boot 中的多播 Websocket