Relaying UDP broadcasts
Relaying UDP broadcasts https://ift.tt/3neEsyr iptables -t mangle -A INPUT -i eth0 -d 255.255.255.255 -j TEE –gateway 10.1.1.255 The above iptables rule copies broadcast traffic received on the eth0 network interface to another network interface (the one whose broadcast address is 10.1.1.255). Note that this is one-way only. We can’t add a second rule for the […]